mindspore.Tensor.new_ones
- mindspore.Tensor.new_ones(size, dtype=None)[源代码]
返回一个大小为 size 的Tensor,填充值为1。
警告
参数 size 在后续版本中将不再支持Tensor类型的输入。
- 参数:
size (Union[int, tuple, list, Tensor]) - 定义输出的shape。
dtype (mindspore.dtype, 可选) - 输出的数据类型。默认值:
None
,返回的Tensor使用和 self 相同的数据类型。
- 返回:
Tensor,shape和dtype由输入定义,填充值为1。
- 异常:
TypeError - 如果 size 不是一个int,或元素为int的元组/列表/Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import numpy as np >>> import mindspore >>> from mindspore import Tensor >>> x = Tensor(np.array([1, 2, 3]), mindspore.float32) >>> output = x.new_ones((2, 2)) >>> print(output) [[1. 1.] [1. 1.]]