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
97e3ae89
Commit
97e3ae89
authored
Jan 10, 2021
by
zengxin
Browse files
Options
Browse Files
Download
Plain Diff
合并分支 'zengxin' 到 'caorunzhe'
Zengxin 查看合并请求
!845
parents
6d268143
9c3ee7a0
全部展开
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
4 行增加
和
4 行删除
+4
-4
Chapter10/chapter10.tex
+4
-4
Chapter18/chapter18.tex
+0
-0
ChapterPostscript/postscript.tex
+0
-0
没有找到文件。
Chapter10/chapter10.tex
查看文件 @
97e3ae89
...
...
@@ -939,15 +939,15 @@ a (\mathbi{s},\mathbi{h}) &=& \left\{ \begin{array}{ll}
\subsubsection
{
1. 损失函数
}
\parinterval
神经机器翻译在目标端的每个位置都会输出一个概率分布,表示这个位置上不同单词出现的可能性。设计损失函数时,需要知道当前位置输出的分布相比于标准答案的“差异”。对于这个问题,常用的是交叉熵损失函数。令
$
\
mathbi
{
y
}$
表示机器翻译模型输出的分布,
$
\hat
{
\mathbi
{
y
}
}$
表示标准答案,则交叉熵损失可以被定义为:
\parinterval
神经机器翻译在目标端的每个位置都会输出一个概率分布,表示这个位置上不同单词出现的可能性。设计损失函数时,需要知道当前位置输出的分布相比于标准答案的“差异”。对于这个问题,常用的是交叉熵损失函数。令
$
\
hat
{
\mathbi
{
y
}}$
表示机器翻译模型输出的分布,
$
\mathbi
{
y
}$
表示标准答案,则交叉熵损失可以被定义为:
\begin{eqnarray}
L
_{
\textrm
{
ce
}}
(
\
mathbi
{
y
}
,
\hat
{
\mathbi
{
y
}}
)
&
=
&
-
\sum
_{
k=1
}^{
|V|
}
\mathbi
{
y
}
[k]
\textrm
{
log
}
(
\hat
{
\mathbi
{
y
}
}
[k])
L
_{
\textrm
{
ce
}}
(
\
hat
{
\mathbi
{
y
}}
,
\mathbi
{
y
}
)
&
=
&
-
\sum
_{
k=1
}^{
|V|
}
\hat
{
\mathbi
{
y
}}
[k]
\textrm
{
log
}
(
\mathbi
{
y
}
[k])
\label
{
eq:10-25
}
\end{eqnarray}
\noindent
其中
$
\mathbi
{
y
}
[
k
]
$
和
$
\hat
{
\mathbi
{
y
}}
[
k
]
$
分别表示向量
$
\mathbi
{
y
}$
和
$
\hat
{
\mathbi
{
y
}}$
的第
$
k
$
维,
$
|V|
$
表示输出向量的维度(等于词表大小)。假设有
$
n
$
个训练样本,模型输出的概率分布为
$
\
mathbi
{
Y
}
=
\{
\mathbi
{
y
}_
1
,...,
\mathbi
{
y
}_
n
\}
$
,标准答案的分布
$
\widehat
{
\mathbi
{
Y
}}
=
\{
\hat
{
\mathbi
{
y
}}_
1
,...,
\hat
{
\mathbi
{
y
}
}_
n
\}
$
。这个训练样本集合上的损失函数可以被定义为:
\noindent
其中
$
\mathbi
{
y
}
[
k
]
$
和
$
\hat
{
\mathbi
{
y
}}
[
k
]
$
分别表示向量
$
\mathbi
{
y
}$
和
$
\hat
{
\mathbi
{
y
}}$
的第
$
k
$
维,
$
|V|
$
表示输出向量的维度(等于词表大小)。假设有
$
n
$
个训练样本,模型输出的概率分布为
$
\
widehat
{
\mathbi
{
Y
}}
=
\{
\hat
{
\mathbi
{
y
}}_
1
,...,
\hat
{
\mathbi
{
y
}}_
n
\}
$
,标准答案的分布
$
\mathbi
{
Y
}
=
\{
\mathbi
{
y
}_
1
,...,
\mathbi
{
y
}_
n
\}
$
。这个训练样本集合上的损失函数可以被定义为:
\begin{eqnarray}
L(
\
mathbi
{
Y
}
,
\widehat
{
\mathbi
{
Y
}}
)
&
=
&
\sum
_{
j=1
}^
n L
_{
\textrm
{
ce
}}
(
\mathbi
{
y
}_
j,
\hat
{
\mathbi
{
y
}
}_
j)
L(
\
widehat
{
\mathbi
{
Y
}}
,
\mathbi
{
Y
}
)
&
=
&
\sum
_{
j=1
}^
n L
_{
\textrm
{
ce
}}
(
\hat
{
\mathbi
{
y
}}_
j,
\mathbi
{
y
}_
j)
\label
{
eq:10-26
}
\end{eqnarray}
...
...
Chapter18/chapter18.tex
查看文件 @
97e3ae89
差异被折叠。
点击展开。
ChapterPostscript/postscript.tex
查看文件 @
97e3ae89
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论