mindspore.ops.randn
- mindspore.ops.randn(*size, dtype=None, seed=None)[源代码]
返回一个Tensor,shape和dtype由输入决定,其元素为服从标准正态分布的数字。
- 参数:
size (Union[int, tuple(int), list(int)]) - 输出的Tensor的shape,例如,\((2, 3)\) or \(2\)。
- 关键字参数:
dtype (
mindspore.dtype
,可选) - 需求的输出Tensor的dtype,必须是float类型。如果是None, mindspore.float32 会被使用。默认值:None
。seed (int,可选) - 随机种子,必须大于或等于0。默认值:
None
,值将取0
。
- 返回:
Tensor,shape和dtype由输入决定其元素为服从标准正态分布的数字。
- 异常:
TypeError - 如果 seed 不是非负整数。
ValueError - 如果 dtype 不是一个 mstype.float_type 类型。
ValueError - 如果 size 包含不合理的数字。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore.ops as ops >>> print(ops.randn((2, 2))) [[ 0.30639967 -0.42438635] [-0.4287376 1.3054721 ]]