mindspore.Tensor.new_ones

查看源文件
mindspore.Tensor.new_ones(size, dtype=None)

返回一个大小为 size 的Tensor,填充值为1。

参数:
  • size (Union[int, tuple(int), list(int)]) - 定义输出的shape。

  • dtype (mindspore.dtype, 可选) - 输出的数据类型。默认值: None ,返回的Tensor使用和 self 相同的数据类型。

返回:

Tensor,shape和dtype由输入定义,填充值为1。

异常:
  • TypeError - 如果 size 不是一个int,或元素为int的元组/列表。

  • TypeError - 如果 dtype 不是一个MindSpore的数据类型。

  • ValueError - 如果 size 包含负数。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> from mindspore import Tensor
>>> x = Tensor((), mindspore.int32)
>>> x.new_ones((2, 3))
Tensor(shape=[2, 3], dtype=Int32, value=
[[1, 1, 1],
 [1, 1, 1]])