mindspore.Tensor.new_ones
- mindspore.Tensor.new_ones(size, *, dtype=None)[源代码]
返回一个大小为 size 的Tensor,填充值为1。
- 参数:
size (Union[int, tuple, list]) - 定义输出的shape。
- 关键字参数:
dtype (mindspore.dtype, 可选) - 输出的数据类型。默认值:
None
,返回的Tensor使用和 self 相同的数据类型。
- 返回:
Tensor,shape和dtype由输入定义,填充值为1。
- 异常:
TypeError - 如果 size 不是一个int,或int的列表/元组。
- 支持平台:
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.]]