Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
a6c16691
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看板
提交
a6c16691
编写于
3月 24, 2018
作者:
W
wanglun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix typo of LSTM formula
上级
e6ef0740
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
16 addition
and
16 deletion
+16
-16
06.understand_sentiment/README.cn.md
06.understand_sentiment/README.cn.md
+4
-4
06.understand_sentiment/README.md
06.understand_sentiment/README.md
+4
-4
06.understand_sentiment/index.cn.html
06.understand_sentiment/index.cn.html
+4
-4
06.understand_sentiment/index.html
06.understand_sentiment/index.html
+4
-4
未找到文件。
06.understand_sentiment/README.cn.md
浏览文件 @
a6c16691
...
...
@@ -59,10 +59,10 @@ $$ h_t=F(x_t,h_{t-1})$$
$F$由下列公式组合而成
\[
[
7
](
#参考文献
)
\]
:
\b
egin{align}
i_t & =
\s
igma(W_{xi}x_t+W_{hi}h_{
h
-1}+W_{ci}c_{t-1}+b_i)
\\\\
f_t & =
\s
igma(W_{xf}x_t+W_{hf}h_{
h
-1}+W_{cf}c_{t-1}+b_f)
\\\\
c_t & = f_t
\o
dot c_{t-1}+i_t
\o
dot tanh(W_{xc}x_t+W_{hc}h_{
h
-1}+b_c)
\\\\
o_t & =
\s
igma(W_{xo}x_t+W_{ho}h_{
h
-1}+W_{co}c_{t}+b_o)
\\\\
i_t & =
\s
igma(W_{xi}x_t+W_{hi}h_{
t
-1}+W_{ci}c_{t-1}+b_i)
\\\\
f_t & =
\s
igma(W_{xf}x_t+W_{hf}h_{
t
-1}+W_{cf}c_{t-1}+b_f)
\\\\
c_t & = f_t
\o
dot c_{t-1}+i_t
\o
dot tanh(W_{xc}x_t+W_{hc}h_{
t
-1}+b_c)
\\\\
o_t & =
\s
igma(W_{xo}x_t+W_{ho}h_{
t
-1}+W_{co}c_{t}+b_o)
\\\\
h_t & = o_t
\o
dot tanh(c_t)
\\\\
\e
nd{align}
其中,$i_t, f_t, c_t, o_t$分别表示输入门,遗忘门,记忆单元及输出门的向量值,带角标的$W$及$b$为模型参数,$tanh$为双曲正切函数,$
\o
dot$表示逐元素(elementwise)的乘法操作。输入门控制着新输入进入记忆单元$c$的强度,遗忘门控制着记忆单元维持上一时刻值的强度,输出门控制着输出记忆单元的强度。三种门的计算方式类似,但有着完全不同的参数,它们各自以不同的方式控制着记忆单元$c$,如图2所示:
...
...
06.understand_sentiment/README.md
浏览文件 @
a6c16691
...
...
@@ -61,10 +61,10 @@ $$ h_t=F(x_t,h_{t-1})$$
$F$ contains following formulations
\[
[
7
](
#references
)
\]
:
\b
egin{align}
i_t & =
\s
igma(W_{xi}x_t+W_{hi}h_{
h
-1}+W_{ci}c_{t-1}+b_i)
\\\\
f_t & =
\s
igma(W_{xf}x_t+W_{hf}h_{
h
-1}+W_{cf}c_{t-1}+b_f)
\\\\
c_t & = f_t
\o
dot c_{t-1}+i_t
\o
dot
\t
anh(W_{xc}x_t+W_{hc}h_{
h
-1}+b_c)
\\\\
o_t & =
\s
igma(W_{xo}x_t+W_{ho}h_{
h
-1}+W_{co}c_{t}+b_o)
\\\\
i_t & =
\s
igma(W_{xi}x_t+W_{hi}h_{
t
-1}+W_{ci}c_{t-1}+b_i)
\\\\
f_t & =
\s
igma(W_{xf}x_t+W_{hf}h_{
t
-1}+W_{cf}c_{t-1}+b_f)
\\\\
c_t & = f_t
\o
dot c_{t-1}+i_t
\o
dot
\t
anh(W_{xc}x_t+W_{hc}h_{
t
-1}+b_c)
\\\\
o_t & =
\s
igma(W_{xo}x_t+W_{ho}h_{
t
-1}+W_{co}c_{t}+b_o)
\\\\
h_t & = o_t
\o
dot
\t
anh(c_t)
\\\\
\e
nd{align}
...
...
06.understand_sentiment/index.cn.html
浏览文件 @
a6c16691
...
...
@@ -101,10 +101,10 @@ $$ h_t=F(x_t,h_{t-1})$$
$F$由下列公式组合而成\[[7](#参考文献)\]:
\begin{align}
i_t
&
= \sigma(W_{xi}x_t+W_{hi}h_{
h
-1}+W_{ci}c_{t-1}+b_i)\\\\
f_t
&
= \sigma(W_{xf}x_t+W_{hf}h_{
h
-1}+W_{cf}c_{t-1}+b_f)\\\\
c_t
&
= f_t\odot c_{t-1}+i_t\odot tanh(W_{xc}x_t+W_{hc}h_{
h
-1}+b_c)\\\\
o_t
&
= \sigma(W_{xo}x_t+W_{ho}h_{
h
-1}+W_{co}c_{t}+b_o)\\\\
i_t
&
= \sigma(W_{xi}x_t+W_{hi}h_{
t
-1}+W_{ci}c_{t-1}+b_i)\\\\
f_t
&
= \sigma(W_{xf}x_t+W_{hf}h_{
t
-1}+W_{cf}c_{t-1}+b_f)\\\\
c_t
&
= f_t\odot c_{t-1}+i_t\odot tanh(W_{xc}x_t+W_{hc}h_{
t
-1}+b_c)\\\\
o_t
&
= \sigma(W_{xo}x_t+W_{ho}h_{
t
-1}+W_{co}c_{t}+b_o)\\\\
h_t
&
= o_t\odot tanh(c_t)\\\\
\end{align}
其中,$i_t, f_t, c_t, o_t$分别表示输入门,遗忘门,记忆单元及输出门的向量值,带角标的$W$及$b$为模型参数,$tanh$为双曲正切函数,$\odot$表示逐元素(elementwise)的乘法操作。输入门控制着新输入进入记忆单元$c$的强度,遗忘门控制着记忆单元维持上一时刻值的强度,输出门控制着输出记忆单元的强度。三种门的计算方式类似,但有着完全不同的参数,它们各自以不同的方式控制着记忆单元$c$,如图2所示:
...
...
06.understand_sentiment/index.html
浏览文件 @
a6c16691
...
...
@@ -103,10 +103,10 @@ $$ h_t=F(x_t,h_{t-1})$$
$F$ contains following formulations\[[7](#references)\]:
\begin{align}
i_t
&
= \sigma(W_{xi}x_t+W_{hi}h_{
h
-1}+W_{ci}c_{t-1}+b_i)\\\\
f_t
&
= \sigma(W_{xf}x_t+W_{hf}h_{
h
-1}+W_{cf}c_{t-1}+b_f)\\\\
c_t
&
= f_t\odot c_{t-1}+i_t\odot \tanh(W_{xc}x_t+W_{hc}h_{
h
-1}+b_c)\\\\
o_t
&
= \sigma(W_{xo}x_t+W_{ho}h_{
h
-1}+W_{co}c_{t}+b_o)\\\\
i_t
&
= \sigma(W_{xi}x_t+W_{hi}h_{
t
-1}+W_{ci}c_{t-1}+b_i)\\\\
f_t
&
= \sigma(W_{xf}x_t+W_{hf}h_{
t
-1}+W_{cf}c_{t-1}+b_f)\\\\
c_t
&
= f_t\odot c_{t-1}+i_t\odot \tanh(W_{xc}x_t+W_{hc}h_{
t
-1}+b_c)\\\\
o_t
&
= \sigma(W_{xo}x_t+W_{ho}h_{
t
-1}+W_{co}c_{t}+b_o)\\\\
h_t
&
= o_t\odot \tanh(c_t)\\\\
\end{align}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录