2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.mint.nn.Hardsigmoid.rst 772 Bytes
一键复制 编辑 原始数据 按行查看 历史
shilishan 提交于 2024-07-26 14:40 . br_base update hsigmoid and hswish doc

mindspore.mint.nn.Hardsigmoid

.. py:class:: mindspore.mint.nn.Hardsigmoid

    逐元素计算Hard Sigmoid激活函数。

    Hard Sigmoid定义为:

    .. math::
        \text{Hardsigmoid}(input) =
        \begin{cases}
        0, & \text{ if } input \leq -3, \\
        1, & \text{ if } input \geq +3, \\
        input/6 + 1/2, & \text{ otherwise }
        \end{cases}

    HSigmoid函数图:

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

    输入:
        - **input** (Tensor) - Hard Sigmoid的输入。

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

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

搜索帮助