Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
e9f8af3a
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
7
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看板
提交
e9f8af3a
编写于
10月 22, 2018
作者:
N
nhzlx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add activation doc
上级
70cf729f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
33 addition
and
0 deletion
+33
-0
doc/fluid/api_guides/index_cn.rst
doc/fluid/api_guides/index_cn.rst
+1
-0
doc/fluid/api_guides/low_level/index_cn.rst
doc/fluid/api_guides/low_level/index_cn.rst
+9
-0
doc/fluid/api_guides/low_level/layers/activations.rst
doc/fluid/api_guides/low_level/layers/activations.rst
+23
-0
未找到文件。
doc/fluid/api_guides/index_cn.rst
浏览文件 @
e9f8af3a
...
...
@@ -7,3 +7,4 @@ API Guide
:maxdepth: 1
high_low_level_api.md
low_level/index_cn.rst
doc/fluid/api_guides/low_level/index_cn.rst
0 → 100644
浏览文件 @
e9f8af3a
API Guide
=========
.. toctree::
:maxdepth: 1
layers/activations.rst
doc/fluid/api_guides/low_level/layers/activations.rst
0 → 100644
浏览文件 @
e9f8af3a
# Activation Function
Activation Function 是激活函数,它将非线性的特性引入到神经网络当中。
PaddlePaddle Fluid 对大部分的激活函数进行了支持,其中有:
`relu`, `tanh`, `sigmoid`, `elu`, `relu6`, `pow`, `stanh`, `hard_sigmoid`, `swish`, `prelu`, `brelu`, `leaky_relu`, `soft_relu`, `thresholded_relu`, `maxout`, `logsigmoid`, `hard_shrink`, `softsign`, `softplus`, `tanh_shrink`, `softshrink`, `exp` 等。
## Fluid提供了两种激活函数的使用方式:
1. 如果一个层的接口提供了`act`变量(默认值为`None`),我们可以通过该变量指定该层的激活函数类型。该方式支持常见的激活函数,如`relu`, `tanh`, `sigmoid`。
```
conv2d = fluid.layers.conv2d(input=data, num_filters=2, filter_size=3, act="relu")
```
2. Fluid为每个Activation提供了接口,我们可以显式的对它们进行调用。
```
conv2d = fluid.layers.conv2d(input=data, num_filters=2, filter_size=3)
relu1 = fluid.layer.relu(conv2d)
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录