mindspore.ops.mish ================== .. 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/ops/mindspore.ops.func_mish.rst :alt: 查看源文件 .. 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 `_ 。 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。