mindspore.ops.csr_isnan

mindspore.ops.csr_isnan(x: CSRTensor)[源代码]

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

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

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

参数:
  • x (CSRTensor) - IsNan的输入,任意维度的CSRTensor。

返回:

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

异常:
  • TypeError - x 不是CSRTensor。

支持平台:

Ascend GPU CPU

样例:

>>> indptr = Tensor([0, 1, 2, 2], dtype=mstype.int32)
>>> indices = Tensor([3, 0], dtype=mstype.int32)
>>> values = Tensor([-1, 2], dtype=mstype.float32)
>>> shape = (3, 4)
>>> x = CSRTensor(indptr, indices, values, shape)
>>> output = ops.csr_isnan(x)
>>> print(output.values)
[False False]