2.5K Star 8.4K Fork 4.7K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.ops.func_mish.rst 891 Bytes
一键复制 编辑 原始数据 按行查看 历史
宦晓玲 提交于 2023-12-05 10:50 . add image links in files 2.3

mindspore.ops.mish

.. py:function:: mindspore.ops.mish(x)

    逐元素计算输入Tensor的MISH(Self Regularized Non-Monotonic Neural Activation Function 自正则化非单调神经激活函数)。

    公式如下:

    .. math::
        \text{output} = x * \tanh(\log(1 + \exp(\text{x})))

    更多详细信息请参见 `A Self Regularized Non-Monotonic Neural Activation Function <https://arxiv.org/abs/1908.08681>`_ 。

    Mish函数图:

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

    参数:
        - **x** (Tensor) - 输入Tensor。
          支持数据类型:

          - GPU/CPU:float16、float32、float64。
          - Ascend:float16、float32。

    返回:
        Tensor,与 `x` 的shape和数据类型相同。

    异常:
        - **TypeError** - `x` 的数据类型不是float16、float32或float64。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
r2.3.q1

搜索帮助