mindspore.ops.IsNan

class mindspore.ops.IsNan[源代码]

判断输入数据每个位置上的值是否是NaN。

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

输入:
  • x (Tensor) - IsNan的输入,shape: \((N, *)\) ,其中 \(*\) 表示任意数量的附加维度。

输出:

Tensor,shape与相同的输入,数据的类型为bool。

支持平台:

Ascend GPU CPU

样例:

>>> is_nan = ops.IsNan()
>>> x = Tensor(np.array([np.log(-1), 1, np.log(0)]), mindspore.float32)
>>> output = is_nan(x)
>>> print(output)
[ True False False]