mindspore.ops.isfinite
- mindspore.ops.isfinite(x)[源代码]
判断输入数据每个位置上的值是否是有限数。
\[\begin{split}out_i = \begin{cases} & \text{ if } x_{i} = \text{Finite},\ \ True \\ & \text{ if } x_{i} \ne \text{Finite},\ \ False \end{cases}\end{split}\]- 参数:
x (Tensor) - IsFinite的输入。
- 返回:
Tensor,输出的shape与输入相同,数据类型为bool。
- 异常:
TypeError - x 不是Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([np.log(-1), 1, np.log(0)]), mindspore.float32) >>> output = ops.isfinite(x) >>> print(output) [False True False]