Cummax
torch_cummax(self, dim)
self
dim
Returns a namedtuple (values, indices) where values is the cumulative maximum of elements of input in the dimension dim. And indices is the index location of each maximum value found in the dimension dim.
(values, indices)
values
input
indices
if (torch_is_installed()) { a = torch_randn(c(10)) a torch_cummax(a, dim=1) }
Useful links