mindspore.mint.nn.ReLU
======================

.. image:: https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/master/resource/_static/logo_source.svg
    :target: https://gitee.com/mindspore/mindspore/blob/master/docs/api/api_python/mint/mindspore.mint.nn.ReLU.rst
    :alt: 查看源文件


.. py:class:: mindspore.mint.nn.ReLU

    逐元素计算ReLU(Rectified Linear Unit activation function)修正线性单元激活函数。

    .. math::

        \text{ReLU}(input) = (input)^+ = \max(0, input),

    逐元素求 :math:`\max(0, input)` 。
    
    .. note::
        负数输出值会被修改为0,正数输出不受影响。

    ReLU激活函数图:

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

    输入:
        - **input** (Tensor) - 用于计算ReLU的任意维度的Tensor。

    输出:
        Tensor,数据类型和shape与 `input` 相同。

    异常:
        - **TypeError** - `input` 的数据类型不支持。