Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
7105cc76
B
book
项目概览
PaddlePaddle
/
book
通知
16
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
40
列表
看板
标记
里程碑
合并请求
37
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
B
book
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
40
Issue
40
列表
看板
标记
里程碑
合并请求
37
合并请求
37
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
7105cc76
编写于
5月 27, 2019
作者:
J
JesseyXujin
提交者:
GitHub
5月 27, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update README.cn.md
上级
f9f77c16
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
3 addition
and
3 deletion
+3
-3
06.understand_sentiment/README.cn.md
06.understand_sentiment/README.cn.md
+3
-3
未找到文件。
06.understand_sentiment/README.cn.md
浏览文件 @
7105cc76
...
...
@@ -67,14 +67,14 @@
相比于简单的循环神经网络,LSTM增加了记忆单元$c$、输入门$i$、遗忘门$f$及输出门$o$。这些门及记忆单元组合起来大大提升了循环神经网络处理长序列数据的能力。若将基于LSTM的循环神经网络表示的函数记为$F$,则其公式为:
<p
align=
"center"
>
<img
src=
"https://github.com/JesseyXujin/book/blob/doc_1/06.understand_sentiment/image/formula_lstm
_1
.png?raw=true"
width =
"30%"
align=
"center"
/><br/>
<img
src=
"https://github.com/JesseyXujin/book/blob/doc_1/06.understand_sentiment/image/formula_lstm.png?raw=true"
width =
"30%"
align=
"center"
/><br/>
</p>
$F$由下列公式组合而成
\[
[
7
](
#参考文献
)
\]
:
<p
align=
"center"
>
<img
src=
"https://github.com/JesseyXujin/book/blob/doc_1/06.understand_sentiment/image/formula_lstm_
2
.png?raw=true"
width =
"65%"
align=
"center"
/><br/>
<img
src=
"https://github.com/JesseyXujin/book/blob/doc_1/06.understand_sentiment/image/formula_lstm_
more
.png?raw=true"
width =
"65%"
align=
"center"
/><br/>
</p>
其中,$i_t, f_t, c_t, o_t$分别表示输入门,遗忘门,记忆单元及输出门的向量值,带角标的$W$及$b$为模型参数,$tanh$为双曲正切函数,$
\o
dot$表示逐元素(elementwise)的乘法操作。输入门控制着新输入进入记忆单元$c$的强度,遗忘门控制着记忆单元维持上一时刻值的强度,输出门控制着输出记忆单元的强度。三种门的计算方式类似,但有着完全不同的参数,它们各自以不同的方式控制着记忆单元$c$,如图3所示:
...
...
@@ -87,7 +87,7 @@ $F$由下列公式组合而成\[[7](#参考文献)\]:
LSTM通过给简单的循环神经网络增加记忆及控制门的方式,增强了其处理远距离依赖问题的能力。类似原理的改进还有Gated Recurrent Unit (GRU)
\[
[
8
](
#参考文献
)
\]
,其设计更为简洁一些。
**这些改进虽然各有不同,但是它们的宏观描述却与简单的循环神经网络一样(如图2所示),即隐状态依据当前输入及前一时刻的隐状态来改变,不断地循环这一过程直至输入处理完毕:**
<p
align=
"center"
>
<img
src=
"https://github.com/JesseyXujin/book/blob/doc_1/06.understand_sentiment/image/formula_r
nn_2
.png?raw=true"
width =
"50%"
align=
"center"
/><br/>
<img
src=
"https://github.com/JesseyXujin/book/blob/doc_1/06.understand_sentiment/image/formula_r
ecrurent
.png?raw=true"
width =
"50%"
align=
"center"
/><br/>
</p>
其中,$Recrurent$可以表示简单的循环神经网络、GRU或LSTM。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录