Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mtbookv2
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
NiuTrans
mtbookv2
Commits
2ba9e0ab
Commit
2ba9e0ab
authored
Oct 09, 2020
by
曹润柘
Browse files
Options
Browse Files
Download
Plain Diff
合并分支 'caorunzhe' 到 'master'
Caorunzhe 查看合并请求
!306
parents
23b6a342
1801ec0d
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
11 行增加
和
33 行删除
+11
-33
Chapter10/chapter10.tex
+0
-0
Chapter12/Figures/figure-point-product-attention-model.tex
+5
-5
Chapter12/chapter12.tex
+3
-3
Chapter2/chapter2.tex
+3
-3
bibliography.bib
+0
-22
没有找到文件。
Chapter10/chapter10.tex
查看文件 @
2ba9e0ab
差异被折叠。
点击展开。
Chapter12/Figures/figure-point-product-attention-model.tex
查看文件 @
2ba9e0ab
...
...
@@ -27,13 +27,13 @@
{
\node
[anchor=east] (line1) at ([xshift=-4em,yshift=1em]MatMul.west)
{
\scriptsize
{
自注意力机制的Query
}}
;
\node
[anchor=north west] (line2) at ([yshift=0.3em]line1.south west)
{
\scriptsize
{
Key和Value均来自同一句
子
}}
;
\node
[anchor=north west] (line3) at ([yshift=0.3em]line2.south west)
{
\scriptsize
{
编码-解码注意力机制
}}
;
\node
[anchor=north west] (line2) at ([yshift=0.3em]line1.south west)
{
\scriptsize
{
Key和Value均来自同一句
}}
;
\node
[anchor=north west] (line3) at ([yshift=0.3em]line2.south west)
{
\scriptsize
{
子
编码-解码注意力机制
}}
;
\node
[anchor=north west] (line4) at ([yshift=0.3em]line3.south west)
{
\scriptsize
{
与前面讲的一样
}}
;
}
{
\node
[anchor=west] (line11) at ([xshift=3em,yshift=0em]MatMul.east)
{
\scriptsize
{
Query和Key的转置
}}
;
\node
[anchor=north west] (line12) at ([yshift=0.3em]line11.south west)
{
\scriptsize
{
进
行点积,得到句子内部
}}
;
\node
[anchor=west] (line11) at ([xshift=3em,yshift=0em]MatMul.east)
{
\scriptsize
{
Query和Key的转置
进
}}
;
\node
[anchor=north west] (line12) at ([yshift=0.3em]line11.south west)
{
\scriptsize
{
行点积,得到句子内部
}}
;
\node
[anchor=north west] (line13) at ([yshift=0.3em]line12.south west)
{
\scriptsize
{
各个位置的相关性
}}
;
}
...
...
@@ -57,7 +57,7 @@
\begin{pgfonlayer}
{
background
}
{
\node
[rectangle,inner sep=0.2em,rounded corners=1pt,fill=green!10,drop shadow,draw=ugreen] [fit = (line1) (line2) (line3) (line4)] (box1)
{}
;
\node
[rectangle,inner sep=0.2em,rounded corners=1pt,fill=green!10,drop shadow,draw=ugreen
,minimum width=10em
] [fit = (line1) (line2) (line3) (line4)] (box1)
{}
;
\node
[rectangle,inner sep=0.1em,rounded corners=1pt,very thick,dotted,draw=ugreen] [fit = (Q1) (K1) (V1)] (box0)
{}
;
\draw
[->,dotted,very thick,ugreen] ([yshift=-1.5em,xshift=1.2em]box1.east) -- ([yshift=-1.5em,xshift=0.1em]box1.east);
}
...
...
Chapter12/chapter12.tex
查看文件 @
2ba9e0ab
...
...
@@ -163,7 +163,7 @@
\vspace
{
0.5em
}
\item
{
\small\sffamily\bfseries
{
残差连接
}}
\index
{
残差连接
}
(Residual Connection,标记为“Add”)
\index
{
Residual Connection
}
:对于自注意力子层和前馈神经网络子层,都有一个从输入直接到输出的额外连接,也就是一个跨子层的直连。残差连接可以使深层网络的信息传递更为有效;
\vspace
{
0.5em
}
\item
{
\small\sffamily\bfseries
{
层正则化
}}
\index
{
层正则化
}
(Layer Normalization)
\index
{
Layer Normalization
}
:自注意力子层和前馈神经网络子层进行最终输出之前,会对输出的向量进行层正则化,规范结果向量取值范围,这样易于后面进一步的处理。
\item
{
\small\sffamily\bfseries
{
层正则化
}}
\index
{
层正则化
}
(Layer Normalization):自注意力子层和前馈神经网络子层进行最终输出之前,会对输出的向量进行层正则化,规范结果向量取值范围,这样易于后面进一步的处理。
\vspace
{
0.5em
}
\end{itemize}
...
...
@@ -356,7 +356,7 @@
\subsection
{
掩码操作
}
\parinterval
在公式
\ref
{
eq:12-47
}
中提到了掩码(Mask),它的目的是对向量中某些值进行掩盖,避免无关位置的数值对运算造成影响。Transformer中的掩码主要应用在注意力机制中的相关性系数计算,具体方式是在相关性系数矩阵上累加一个掩码矩阵。该矩阵在需要掩码的位置的值为负无穷
$
-
$
inf(具体实现时是一个非常小的数,比如
$
-
$
1e-9),其余位置为0,这样在进行了Softmax归一化操作之后,被掩码掉的位置计算得到的权重便近似为0,也就是说对无用信息分配的权重为0,从而避免了其对结果产生影响。Transformer包含两种掩码:
\parinterval
在公式
\
eq
ref
{
eq:12-47
}
中提到了掩码(Mask),它的目的是对向量中某些值进行掩盖,避免无关位置的数值对运算造成影响。Transformer中的掩码主要应用在注意力机制中的相关性系数计算,具体方式是在相关性系数矩阵上累加一个掩码矩阵。该矩阵在需要掩码的位置的值为负无穷
$
-
$
inf(具体实现时是一个非常小的数,比如
$
-
$
1e-9),其余位置为0,这样在进行了Softmax归一化操作之后,被掩码掉的位置计算得到的权重便近似为0,也就是说对无用信息分配的权重为0,从而避免了其对结果产生影响。Transformer包含两种掩码:
\begin{itemize}
\vspace
{
0.5em
}
...
...
@@ -402,7 +402,7 @@ x_{l+1} = x_l + \mathcal{F} (x_l)
\label
{
eq:12-50
}
\end{eqnarray}
\noindent
其中,
$
x
_
l
$
表示
$
l
$
层网络的输入向量,
$
\mathcal
{
F
}
(
x
_
l
)
$
是子层运算。如果
$
l
=
2
$
,那么公式
\ref
{
eq:12-50
}
可以解释为,第3层的输入(
$
x
_
3
$
)等于第2层的输出(
$
\mathcal
{
F
}
(
x
_
2
)
$
)加上第二层的输入(
$
x
_
2
$
)。图
\ref
{
fig:12-50
}
中的红色方框展示了Transformer 中残差连接的位置。
\noindent
其中,
$
x
_
l
$
表示
$
l
$
层网络的输入向量,
$
\mathcal
{
F
}
(
x
_
l
)
$
是子层运算。如果
$
l
=
2
$
,那么公式
\
eq
ref
{
eq:12-50
}
可以解释为,第3层的输入(
$
x
_
3
$
)等于第2层的输出(
$
\mathcal
{
F
}
(
x
_
2
)
$
)加上第二层的输入(
$
x
_
2
$
)。图
\ref
{
fig:12-50
}
中的红色方框展示了Transformer 中残差连接的位置。
%----------------------------------------------
\begin{figure}
[htp]
...
...
Chapter2/chapter2.tex
查看文件 @
2ba9e0ab
...
...
@@ -150,7 +150,7 @@ F(x)=\int_{-\infty}^x f(x)\textrm{d}x
\parinterval
推广到
$
n
$
个事件,可以得到
{
\small\bfnew
{
链式法则
}}
\index
{
链式法则
}
(Chain Rule
\index
{
Chain Rule
}
)的公式:
\begin{eqnarray}
\funp
{
P
}
(x
_
1,x
_
2,
\ldots
,x
_
n)=
\
funp
{
P
}
(x
_
1)
\prod
_{
i=2
}^
n
\funp
{
P
}
(x
_
i
\mid
x
_
1,
\ldots
,x
_{
i-1
}
)
\funp
{
P
}
(x
_
1,x
_
2,
\ldots
,x
_
n)=
\
prod
_{
i=1
}^
n
\funp
{
P
}
(x
_
i
\mid
x
_
1,
\ldots
,x
_{
i-1
}
)
\label
{
eq:2-6
}
\end{eqnarray}
...
...
@@ -258,7 +258,7 @@ F(x)=\int_{-\infty}^x f(x)\textrm{d}x
\label
{
eq:2-14
}
\end{eqnarray}
\parinterval
一个分布的信息熵也就是从该分布中得到的一个事件的期望信息量。比如,
$
a
$
、
$
b
$
、
$
c
$
、
$
d
$
四支球队,四支队伍夺冠的概率分别是
$
\funp
{
P
}_
1
$
、
$
\funp
{
P
}_
2
$
、
$
\funp
{
P
}_
3
$
、
$
\funp
{
P
}_
4
$
,某个人对比赛不感兴趣但是又想知道哪只球队夺冠,
通过使用二分法2次就
确定哪支球队夺冠了。但假设这四只球队中
$
c
$
的实力可以碾压其他球队,那么猜1次就可以确定。所以对于前面这种情况,哪只球队夺冠的信息量较高,信息熵也相对较高;对于后面这种情况,因为结果是容易猜到的,信息量和信息熵也就相对较低。因此可以得知:分布越尖锐熵越低,分布越均匀熵越高。
\parinterval
一个分布的信息熵也就是从该分布中得到的一个事件的期望信息量。比如,
$
a
$
、
$
b
$
、
$
c
$
、
$
d
$
四支球队,四支队伍夺冠的概率分别是
$
\funp
{
P
}_
1
$
、
$
\funp
{
P
}_
2
$
、
$
\funp
{
P
}_
3
$
、
$
\funp
{
P
}_
4
$
,某个人对比赛不感兴趣但是又想知道哪只球队夺冠,
使用2次二分法就能
确定哪支球队夺冠了。但假设这四只球队中
$
c
$
的实力可以碾压其他球队,那么猜1次就可以确定。所以对于前面这种情况,哪只球队夺冠的信息量较高,信息熵也相对较高;对于后面这种情况,因为结果是容易猜到的,信息量和信息熵也就相对较低。因此可以得知:分布越尖锐熵越低,分布越均匀熵越高。
%----------------------------------------------------------------------------------------
% NEW SUBSUB-SECTION
...
...
@@ -1022,7 +1022,7 @@ c(\cdot) & \textrm{当计算最高阶模型时} \\
\parinterval
对于语言模型来说,当多个路径中最高得分比当前搜索到的最好的解的得分低时,可以立刻停止搜索。因为此时序列越长语言模型得分
$
\log
\funp
{
P
}
(
w
_
1
w
_
2
\ldots
w
_
m
)
$
会越低,继续扩展这些路径不会产生更好的结果。这个技术通常也被称为
{
\small\bfnew
{
最佳停止条件
}}
\index
{
最佳停止条件
}
(Optimal Stopping Criteria)
\index
{
Optimal Stopping Criteria
}
。类似的思想也被用于机器翻译等任务
\upcite
{
DBLP:conf/emnlp/HuangZM17,DBLP:conf/emnlp/Yang0M18
}
。
\parinterval
总的来说,虽然局部搜索
由于
没有遍历完整的解空间,使得这类方法无法保证找到最优解。但是,局部搜索算法大大降低了搜索过程的时间、空间复杂度。因此在语言模型生成和机器翻译的解码过程中常常使用局部搜索算法。在
{
\chapterseven
}
、
{
\chapterten
}
中还将介绍这些算法的具体应用。
\parinterval
总的来说,虽然局部搜索没有遍历完整的解空间,使得这类方法无法保证找到最优解。但是,局部搜索算法大大降低了搜索过程的时间、空间复杂度。因此在语言模型生成和机器翻译的解码过程中常常使用局部搜索算法。在
{
\chapterseven
}
、
{
\chapterten
}
中还将介绍这些算法的具体应用。
%----------------------------------------------------------------------------------------
% NEW SECTION
...
...
bibliography.bib
查看文件 @
2ba9e0ab
...
...
@@ -1941,18 +1941,6 @@ pages = {150--155},
publisher = {Annual Meeting of the Association for Computational Linguistics},
year = {2015},
}
@inproceedings{DBLP:conf/acl/ShenCHHWSL16,
author = {Shiqi Shen and
Yong Cheng and
Zhongjun He and
Wei He and
Hua Wu and
Maosong Sun and
Yang Liu},
title = {Minimum Risk Training for Neural Machine Translation},
publisher = {Annual Meeting of the Association for Computational Linguistics},
year = {2016},
}
@inproceedings{kulesza2004learning,
title={A learning approach to improving sentence-level MT evaluation},
author={Kulesza, Alex and Shieber, Stuart},
...
...
@@ -2179,16 +2167,6 @@ year = {2012}
publisher = {Annual Meeting of the Association for Computational Linguistics},
year = {2017}
}
@inproceedings{DBLP:conf/wmt/YankovskayaTF19,
author = {Elizaveta Yankovskaya and
Andre T{\"{a}}ttar and
Mark Fishel},
title = {Quality Estimation and Translation Metrics via Pre-trained Word and
Sentence Embeddings},
pages = {101--105},
publisher = {Annual Meeting of the Association for Computational Linguistics},
year = {2019}
}
@inproceedings{DBLP:conf/wmt/KimLKN19,
author = {Hyun Kim and
Joon-Ho Lim and
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论