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
b94ef712
Commit
b94ef712
authored
Mar 29, 2021
by
单韦乔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
15章补充修改
parent
ae752e46
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
6 行增加
和
5 行删除
+6
-5
Chapter15/Figures/figure-relationship-between-structures-in-structural-space.tex
+2
-1
Chapter15/chapter15.tex
+4
-4
没有找到文件。
Chapter15/Figures/figure-relationship-between-structures-in-structural-space.tex
查看文件 @
b94ef712
...
...
@@ -108,6 +108,6 @@
\node
[rectangle,inner sep=1em,draw=black,very thick,rounded corners=8pt] [fit = (label) (box1) (box2) (box3)] (box4)
{}
;
\node
[anchor=south east,word,text=ublue]
(l4) at ([xshift=-0em,yshift=0em]box4.north east)
{
颜色越深表示模型对当前任务的建模能力越强
}
;
\node
[anchor=south east,word,text=ublue]
(l4) at ([xshift=-0em,yshift=0em]box4.north east)
{
颜色越深
,
表示模型对当前任务的建模能力越强
}
;
\end{tikzpicture}
\ No newline at end of file
Chapter15/chapter15.tex
查看文件 @
b94ef712
...
...
@@ -46,13 +46,13 @@
\parinterval
但是,Transformer模型中的自注意力机制本身并不具有这种性质,而且它直接忽略了输入单元之间的位置关系。虽然,Transformer中引入了基于正余弦函数的绝对位置编码(见
{
\chaptertwelve
}
),但是该方法仍然无法显性区分局部依赖与长距离依赖
\footnote
[1]
{
局部依赖指当前位置与局部的相邻位置之间的联系。
}
。
\parinterval
针对上述问题,研究人员尝试引入“相对位置”信息,对原有的“绝对位置”信息进行补充,强化了局部依赖
\upcite
{
Dai2019TransformerXLAL,Shaw2018SelfAttentionWR
}
。此外,由于模型中每一层均存在自注意力机制计算,因此模型捕获位置信息的能力也逐渐减弱,这种现象在深层模型中尤为明显。而利用相对位置
编码能够把位置信息显性加入到每一层的注意力机制的计算中,进而强化深层模型的位置表示能力
\upcite
{
li2020shallow
}
。图
\ref
{
fig:15-1
}
对比了Transformer中绝对位置编码和相对位置编码
方法。
\parinterval
针对上述问题,研究人员尝试引入“相对位置”信息,对原有的“绝对位置”信息进行补充,强化了局部依赖
\upcite
{
Dai2019TransformerXLAL,Shaw2018SelfAttentionWR
}
。此外,由于模型中每一层均存在自注意力机制计算,因此模型捕获位置信息的能力也逐渐减弱,这种现象在深层模型中尤为明显。而利用相对位置
表示能够把位置信息显性加入到每一层的注意力机制的计算中,进而强化深层模型的位置表示能力
\upcite
{
li2020shallow
}
。图
\ref
{
fig:15-1
}
对比了Transformer中绝对位置编码和相对位置表示
方法。
%----------------------------------------------
\begin{figure}
[htp]
\centering
\input
{
./Chapter15/Figures/figure-relative-position-coding-and-absolute-position-coding
}
\caption
{
绝对位置编码和相对位置
编码
}
\caption
{
绝对位置编码和相对位置
表示
}
\label
{
fig:15-1
}
\end{figure}
%-------------------------------------------
...
...
@@ -63,7 +63,7 @@
\subsubsection
{
1. 位置编码
}
\label
{
subsubsec-15.1.1
}
\parinterval
在介绍相对位置
编码
之前,首先简要回顾一下自注意力机制的计算流程(见
{
\chaptertwelve
}
)。对于Transformer模型中的某一层神经网络,可以定义:
\parinterval
在介绍相对位置
表示
之前,首先简要回顾一下自注意力机制的计算流程(见
{
\chaptertwelve
}
)。对于Transformer模型中的某一层神经网络,可以定义:
\begin{eqnarray}
\mathbi
{
Q
}
&
=
&
\mathbi
{
x
}
\mathbi
{
W
}_
Q
\\
\mathbi
{
K
}
&
=
&
\mathbi
{
x
}
\mathbi
{
W
}_
K
\\
...
...
@@ -690,7 +690,7 @@ v_i &=& \mathbi{I}_d^{\textrm{T}}\textrm{Tanh}(\mathbi{W}_d\mathbi{Q}_i)
\vspace
{
0.5em
}
\item
对编码器中部分自注意力机制的参数矩阵以及前馈神经网络的参数矩阵进行缩放因子为
$
0
.
67
{
L
}^{
-
\frac
{
1
}{
4
}}$
的缩放,
$
L
$
为编码器层数。
\vspace
{
0.5em
}
\item
对解码器中部分注意力机制的参数矩阵、前馈神经网络的参数矩阵以及前馈
前馈
神经网络的嵌入式输入进行缩放因子为
$
(
9
{
M
}
)
^{
-
\frac
{
1
}{
4
}}$
的缩放,其中
$
M
$
为解码器层数。
\item
对解码器中部分注意力机制的参数矩阵、前馈神经网络的参数矩阵以及前馈神经网络的嵌入式输入进行缩放因子为
$
(
9
{
M
}
)
^{
-
\frac
{
1
}{
4
}}$
的缩放,其中
$
M
$
为解码器层数。
\vspace
{
0.5em
}
\end{itemize}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论