torch_mode {torch} | R Documentation |
Mode
Description
Mode
Usage
torch_mode(self, dim = -1L, keepdim = FALSE)
Arguments
self |
(Tensor) the input tensor. |
dim |
(int) the dimension to reduce. |
keepdim |
(bool) whether the output tensor has |
mode(input, dim=-1, keepdim=False, out=NULL) -> (Tensor, LongTensor)
Returns a namedtuple (values, indices)
where values
is the mode
value of each row of the input
tensor in the given dimension
dim
, i.e. a value which appears most often
in that row, and indices
is the index location of each mode value found.
By default, dim
is the last dimension of the input
tensor.
If keepdim
is TRUE
, the output tensors are of the same size as
input
except in the dimension dim
where they are of size 1.
Otherwise, dim
is squeezed (see torch_squeeze
), resulting
in the output tensors having 1 fewer dimension than input
.
Note
This function is not defined for torch_cuda.Tensor
yet.
Examples
if (torch_is_installed()) {
a = torch_randint(0, 50, size = list(5))
a
torch_mode(a, 1)
}
[Package torch version 0.13.0 Index]