mindspore.ops.Argmax

class mindspore.ops.Argmax(axis=- 1, output_type=mstype.int32)[源代码]

返回输入Tensor在指定轴上的最大值索引。

详情请查看 mindspore.ops.argmax()

支持平台:

Ascend GPU CPU

样例:

>>> input_x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
>>> output = ops.Argmax(output_type=mindspore.int32)(input_x)
>>> print(output)
[1 0 0]