2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.ops.func_relu.rst 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
李林杰 提交于 2024-01-23 15:07 . fix relu doc

mindspore.ops.relu

.. py:function:: mindspore.ops.relu(input)

    对输入Tensor逐元素计算线性修正单元激活函数(Rectified Linear Unit)值。

    返回 :math:`\max(input,\  0)` 的值。负值神经元将被设置为0,正值神经元将保持不变。

    .. math::
        ReLU(input) = (input)^+ = \max(0, input)

    ReLU激活函数图:

    .. image:: ../images/ReLU.png
        :align: center

    参数:
        - **input** (Tensor) - 输入Tensor。

    返回:
        Tensor,其shape和数据类型与输入一致。

    异常:
        - **TypeError** - `input` 的数据类型不是数值型。
        - **TypeError** - `input` 不是Tensor。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
master

搜索帮助