Cummin
Source:R/gen-namespace-docs.R, R/gen-namespace-examples.R, R/gen-namespace.R
torch_cummin.RdCummin
cummin(input, dim) -> (Tensor, LongTensor)
Returns a namedtuple (values, indices) where values is the cumulative minimum of
elements of input in the dimension dim. And indices is the index
location of each maximum value found in the dimension dim.
Examples
if (torch_is_installed()) {
a = torch_randn(c(10))
a
torch_cummin(a, dim=1)
}
#> [[1]]
#> torch_tensor
#> -0.6960
#> -0.6960
#> -0.6960
#> -0.6960
#> -1.6731
#> -1.6731
#> -1.6731
#> -1.6731
#> -1.6731
#> -1.6731
#> [ CPUFloatType{10} ]
#>
#> [[2]]
#> torch_tensor
#> 0
#> 0
#> 0
#> 0
#> 4
#> 4
#> 4
#> 4
#> 4
#> 4
#> [ CPULongType{10} ]
#>