Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
ReadingList
概览
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
zengxin
ReadingList
Commits
761e88de
Commit
761e88de
authored
Dec 22, 2020
by
zengxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regularization
parent
08ede558
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
21 行增加
和
1 行删除
+21
-1
Continuous Output for NMT/continuous-output-for-nmt.md
+21
-1
没有找到文件。
Continuous Output for NMT/continuous-output-for-nmt.md
查看文件 @
761e88de
...
@@ -83,7 +83,27 @@
...
@@ -83,7 +83,27 @@
## ReWE: Regressing Word Embeddings for Regularization of Neural Machine Translation Systems,NAACL 2019
## ReWE: Regressing Word Embeddings for Regularization of Neural Machine Translation Systems,NAACL 2019
*
*
正则化方法即向模型引入额外的信息,目的是简化模型。
*
常见的正则化:
*
最基本的正则化方法是在原目标函数中添加惩罚项,对复杂度高的模型进行“惩罚”:
$J(w;x,y)=J(w;x,y)+
\a
lpha
\O
mega(w)$
其中$x$,$y$为训练样本对应的源语和目标语,$w$为模型权重向量,$J(
\c
dot)$为目标函数,$
\O
mega(w)$为惩罚项,参数$
\a
lpha$控制正则化强弱。常用的$
\O
mega$函数有$l_1$范数和$l_2$范数。
*
$l_1$正则化
* $\Omega(w)=||w||_1=\sum_i|w_i|$
但该正则化会使许多参数的最优值变成0,导致模型变得稀疏https://www.zhihu.com/question/37096933/answer/70426653
*
$l_2$正则化
* $\Omega(w)=||w||_2^2=\sum_iw_i^2$
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论