mindspore.Tensor.greater

查看源文件
mindspore.Tensor.greater(other)

按元素比较输入参数 \(self > other\) 的值,输出结果为bool值。

更多参考详见 mindspore.ops.gt()

参数:
  • other (Union[Tensor, Number]) - 是一个Number或数据类型为 numberbool_ 的Tensor。

返回:

Tensor,shape与广播后的shape相同,数据类型为bool。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor, ops
>>> input = Tensor(np.array([1, 2, 3]), mindspore.int32)
>>> other = Tensor(np.array([1, 1, 4]), mindspore.int32)
>>> output = input.greater(other)
>>> print(output)
[False True False]