2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
mindspore.mint.func_rand.rst 969 Bytes
Copy Edit Raw Blame History
shenhaojing authored 2024-07-08 10:53 . fix doc

mindspore.mint.rand

.. py:function:: mindspore.mint.rand(*size, generator=None, dtype=None)

    返回一个Tensor,shape和dtype由输入决定,其元素为服从均匀分布的 :math:`[0, 1)` 区间的数字。

    参数:
        - **size** (Union[int, tuple(int), list(int)]) - 输出的Tensor的shape,例如,:math:`(2, 3)` or :math:`2`。

    关键字参数:
        - **generator** (:class:`mindspore.Generator`, 可选) - 伪随机数生成器。默认值: ``None`` ,使用默认伪随机数生成器。
        - **dtype** (:class:`mindspore.dtype`,可选) - 指定的输出Tensor的dtype,必须是float类型。如果是None,`mindspore.float32` 会被使用。默认值: ``None`` 。

    返回:
        Tensor,shape和dtype由输入决定其元素为服从均匀分布的 :math:`[0, 1)` 区间的数字。

    异常:
        - **ValueError** - 如果 `dtype` 不是一个 `mstype.float_type` 类型。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
r2.3.1

Search