mindspore.ops.Eye

class mindspore.ops.Eye[源代码]

创建一个主对角线上元素为1,其余元素为0的Tensor。

Note

结合ReverseV2算子可以得到一个反对角线为1的Tensor,但是目前ReverseV2算子只支持Ascend和GPU平台。

输入:

  • n (int) - 指定返回Tensor的行数。仅支持常量值。

  • m (int) - 指定返回Tensor的列数。仅支持常量值。

  • t (mindspore.dtype) - 指定返回Tensor的数据类型。数据类型必须是 bool_number

输出:

Tensor,主对角线上为1,其余的元素为0。它的shape由 nm 指定。数据类型由 t 指定。

异常:

  • TypeError - mn 不是int。

  • ValueError - mn 小于1。

支持平台:

Ascend GPU CPU

样例:

>>> eye = ops.Eye()
>>> output = eye(2, 2, mindspore.int32)
>>> print(output)
[[1 0]
 [0 1]]
>>> print(output.dtype)
Int32
>>> output = eye(1, 2, mindspore.float64)
>>> print(output)
[[1. 0.]]
>>> print(output.dtype)
Float64