forked from mindspore-Ecosystem/mindspore
fix randn_like docs bug
This commit is contained in:
parent
079db4dd2e
commit
b37a18c8f1
|
@ -3,7 +3,7 @@ mindspore.ops.randn_like
|
|||
|
||||
.. py:function:: mindspore.ops.randn_like(x, seed=None, *, dtype=None)
|
||||
|
||||
返回一个Tensor,shape和dtype由输入决定,其元素为服从标准正态分布的 :math:`[0, 1)` 区间的数字。
|
||||
返回一个Tensor,shape和dtype由输入决定,其元素为服从标准正态分布的数字。
|
||||
|
||||
参数:
|
||||
- **x** (Tensor) - 输入的Tensor,用来决定输出Tensor的shape和默认的dtype。
|
||||
|
@ -13,7 +13,7 @@ mindspore.ops.randn_like
|
|||
- **dtype** (:class:`mindspore.dtype`,可选) - 需求的输出Tensor的dtype,必须是float类型。如果是None,`x` 的dtype会被使用。默认值:None。
|
||||
|
||||
返回:
|
||||
Tensor,shape和dtype由输入决定其元素为服从标准正态分布的 :math:`[0, 1)` 区间的数字。
|
||||
Tensor,shape和dtype由输入决定其元素为服从标准正态分布的数字。
|
||||
|
||||
异常:
|
||||
- **TypeError** - 如果 `seed` 不是非负整数。
|
||||
|
|
Loading…
Reference in New Issue