Rate this Page
★★★★★
torch.cummax#
- torch.cummax(input,dim,*,out=None)#
Returns a namedtuple
(values,indices)wherevaluesis the cumulative maximum ofelements ofinputin the dimensiondim. Andindicesis the indexlocation of each maximum value found in the dimensiondim.- Parameters
- Keyword Arguments
out (tuple,optional) – the result tuple of two output tensors (values, indices)
Example:
>>>a=torch.randn(10)>>>atensor([-0.3449, -1.5447, 0.0685, -1.5104, -1.1706, 0.2259, 1.4696, -1.3284, 1.9946, -0.8209])>>>torch.cummax(a,dim=0)torch.return_types.cummax( values=tensor([-0.3449, -0.3449, 0.0685, 0.0685, 0.0685, 0.2259, 1.4696, 1.4696, 1.9946, 1.9946]), indices=tensor([0, 0, 2, 2, 2, 5, 6, 6, 8, 8]))
On this page