Logsumexp
Source:R/gen-namespace-docs.R
, R/gen-namespace-examples.R
, R/gen-namespace.R
torch_logsumexp.Rd
Logsumexp
logsumexp(input, dim, keepdim=False, out=NULL)
Returns the log of summed exponentials of each row of the input
tensor in the given dimension dim
. The computation is numerically
stabilized.
For summation index dim
and other indices
If keepdim
is TRUE
, the output tensor is of the same size
as input
except in the dimension(s) dim
where it is of size 1.
Otherwise, dim
is squeezed (see torch_squeeze
), resulting in the
output tensor having 1 (or len(dim)
) fewer dimension(s).
Examples
if (torch_is_installed()) {
a = torch_randn(c(3, 3))
torch_logsumexp(a, 1)
}
#> torch_tensor
#> 1.1235
#> 2.1983
#> 2.1424
#> [ CPUFloatType{3} ]