fix randn_like docs bug

This commit is contained in:
shaojunsong 2023-02-24 15:36:02 +08:00
parent 079db4dd2e
commit b37a18c8f1
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ mindspore.ops.randn_like
.. py:function:: mindspore.ops.randn_like(x, seed=None, *, dtype=None)
返回一个Tensorshape和dtype由输入决定其元素为服从标准正态分布的 :math:`[0, 1)` 区间的数字。
返回一个Tensorshape和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。
返回:
Tensorshape和dtype由输入决定其元素为服从标准正态分布的 :math:`[0, 1)` 区间的数字。
Tensorshape和dtype由输入决定其元素为服从标准正态分布的数字。
异常:
- **TypeError** - 如果 `seed` 不是非负整数。