mindspore.ops.Ones
- class mindspore.ops.Ones[source]
Creates a tensor filled with value ones.
Creates a tensor with shape described by the first argument and fills it with value ones in type of the second argument.
Refer to
mindspore.ops.ones()
for more detail.- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> ones = ops.Ones() >>> output = ones((2, 2), mindspore.float32) >>> print(output) [[1. 1.] [1. 1.]] >>> output = ones((3, 3), mindspore.float32) >>> print(output) [[1. 1. 1.] [1. 1. 1.] [1. 1. 1.]]