2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.nn.HShrink.rst 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
luojianing 提交于 2023-07-07 10:56 . add activation function images

mindspore.nn.HShrink

.. py:class:: mindspore.nn.HShrink(lambd=0.5)

    Hard Shrink激活函数。按输入元素计算输出。公式定义如下:

    .. math::
        \text{HardShrink}(x) =
        \begin{cases}
        x, & \text{ if } x > \lambda \\
        x, & \text{ if } x < -\lambda \\
        0, & \text{ otherwise }
        \end{cases}

    HShrink函数图:

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

    参数:
        - **lambd** (float) - Hard Shrink公式定义的阈值 :math:`\lambda` 。默认值: ``0.5`` 。

    输入:
        - **input_x** (Tensor) - Hard Shrink的输入,数据类型为float16或float32。

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

    异常:
        - **TypeError** - `lambd` 不是float。
        - **TypeError** - `input_x` 的dtype既不是float16也不是float32。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
r2.2

搜索帮助