Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
602ce437
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
602ce437
编写于
5月 19, 2020
作者:
D
dengkaipeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add mish doc. test=develop
上级
b1e72d33
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
56 addition
and
0 deletion
+56
-0
doc/fluid/api_cn/layers_cn/mish_cn.rst
doc/fluid/api_cn/layers_cn/mish_cn.rst
+56
-0
未找到文件。
doc/fluid/api_cn/layers_cn/mish_cn.rst
0 → 100644
浏览文件 @
602ce437
.. _cn_api_fluid_layers_mish:
mish
-------------------------------
.. py:function:: paddle.fluid.layers.mish(x, threshold=20, name=None)
Mish激活函数。
更多详情请参考 : `Mish: A Self Regularized Non-Monotonic Neural Activation Function <https://arxiv.org/abs/1908.08681>`_
当 ``threshold`` 为 ``None`` 或负值时:
.. math::
out = x * \tanh(\ln(1 + e^{x}))
The formula is as follows if :attr:`threshold` is set:
当 ``threshold`` 设置为正值时:
.. math::
out = \begin{cases}
x \ast \tanh(x), \text{if } x > \text{threshold} \\
x \ast \tanh(e^{x}), \text{if } x < -\text{threshold} \\
x \ast \tanh(\ln(1 + e^{x})), \text{otherwise}
\end{cases}
参数:
- **x** (Variable)- 多维Tensor,数据类型为float32或float64。
- **threshold** (float|None)- softplus计算中的阈值,当输入值绝对值大于该阈值时,将使用近似值代替softplus计算结果, ``threshold`` 为 ``None`` 或负值时不生效,默认值为20。
- **name** (str) – 该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` ,默认值为None。
返回:表示绝对值结果的Tensor,数据类型与x相同。
返回类型:Variable
**代码示例**:
.. code-block:: python
import paddle.fluid as fluid
import numpy as np
DATATYPE='float32'
x_data = np.array([i for i in range(1,5)]).reshape([1,1,4]).astype(DATATYPE)
x = fluid.data(name="x", shape=[None,1,4], dtype=DATATYPE)
y = fluid.layers.mish(x)
place = fluid.CPUPlace()
# place = fluid.CUDAPlace(0)
exe = fluid.Executor(place)
out, = exe.run(feed={'x':x_data}, fetch_list=[y.name])
print(out) # [[0.66666667, 1.66666667, 3., 4.]]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录