mindspore.ops.IsNan

class mindspore.ops.IsNan[源代码]

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

\[\begin{split}out_i = \begin{cases} & \text{ if } x_{i} = \text{Nan},\ \ True \\ & \text{ if } x_{i} \ne \text{Nan},\ \ False \end{cases}\end{split}\]

其中 \(Nan\) 表示的不是number。

输入:

  • x (Tensor) - IsNan的输入,任意维度的Tensor。

输出:

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

异常:

  • TypeError - x 不是Tensor。

支持平台:

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]