mindspore.mint.argmax
- mindspore.mint.argmax(input) Tensor [source]
Return the indices of the maximum values of a tensor.
- Parameters
input (Tensor) – Input tensor.
- Returns
Tensor.
- Supported Platforms:
Ascend
Examples
>>> import numpy as np >>> from mindspore import Tensor >>> from mindspore import mint >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32)) >>> output = mint.argmax(x) >>> print(output) 6
Return the indices of the maximum values of a tensor across a dimension.
- Parameters
- Returns
Tensor, indices of the maximum values across a dimension.
- Raises
TypeError – If keepdim is not bool.
ValueError – If dim is out of range.
- Supported Platforms:
Ascend
Examples
>>> import numpy as np >>> from mindspore import Tensor >>> from mindspore import mint >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32)) >>> output = mint.argmax(x, dim=-1) >>> print(output) [1 0 0]