Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
NiuTrans.Tensor
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
8
Issues
8
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
NiuTrans
NiuTrans.Tensor
Commits
21892dbf
Commit
21892dbf
authored
Dec 07, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
softmax output -> logsoftmax output
parent
8f2d16f5
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
source/sample/transformer/T2TOutput.cpp
+2
-2
source/sample/transformer/T2TTrainer.cpp
+6
-6
没有找到文件。
source/sample/transformer/T2TOutput.cpp
查看文件 @
21892dbf
...
@@ -93,8 +93,8 @@ void T2TOutput::Make(XTensor &input, XTensor &output)
...
@@ -93,8 +93,8 @@ void T2TOutput::Make(XTensor &input, XTensor &output)
{
{
XTensor
&
x
=
input
;
XTensor
&
x
=
input
;
//
output = LogSoftmax(MMul(x, w), -1);
output
=
LogSoftmax
(
MMul
(
x
,
w
),
-
1
);
output
=
Softmax
(
MMul
(
x
,
w
),
-
1
);
//
output = Softmax(MMul(x, w), -1);
}
}
}
}
source/sample/transformer/T2TTrainer.cpp
查看文件 @
21892dbf
...
@@ -218,8 +218,8 @@ void T2TTrainer::Train(const char * fn, const char * validFN, const char * model
...
@@ -218,8 +218,8 @@ void T2TTrainer::Train(const char * fn, const char * validFN, const char * model
LabelSmooth
(
&
gold
,
&
goldSmoothed
,
labelSmoothingP
);
LabelSmooth
(
&
gold
,
&
goldSmoothed
,
labelSmoothingP
);
/* make paddings for the output */
/* make paddings for the output */
//
if (output.GetDim(0) > 1)
if
(
output
.
GetDim
(
0
)
>
1
)
//
PadOutput(&output, &gold, &paddingDec);
PadOutput
(
&
output
,
&
gold
,
&
paddingDec
);
/* get probabilities */
/* get probabilities */
float
prob
=
GetProb
(
&
output
,
&
gold
,
NULL
);
float
prob
=
GetProb
(
&
output
,
&
gold
,
NULL
);
...
@@ -232,7 +232,7 @@ void T2TTrainer::Train(const char * fn, const char * validFN, const char * model
...
@@ -232,7 +232,7 @@ void T2TTrainer::Train(const char * fn, const char * validFN, const char * model
if
(
doUpdate
)
{
if
(
doUpdate
)
{
/* recale the output for normalized loss */
/* recale the output for normalized loss */
//
RescaleOutput(&output, &g, &paddingDec);
RescaleOutput
(
&
output
,
&
g
,
&
paddingDec
);
/* back-propagation */
/* back-propagation */
net
.
Backward
(
output
,
g
,
paddingDec
,
CROSSENTROPY
);
net
.
Backward
(
output
,
g
,
paddingDec
,
CROSSENTROPY
);
...
@@ -977,12 +977,12 @@ float T2TTrainer::GetProb(XTensor * output, XTensor * gold, XTensor * wordProbs)
...
@@ -977,12 +977,12 @@ float T2TTrainer::GetProb(XTensor * output, XTensor * gold, XTensor * wordProbs)
XTensor
probs
;
XTensor
probs
;
InitTensor
(
&
probs
,
output
);
InitTensor
(
&
probs
,
output
);
XTensor
logOutput
;
/*
XTensor logOutput;
InitTensor(&logOutput, output);
InitTensor(&logOutput, output);
_Log
(
output
,
&
logOutput
);
_Log(output, &logOutput);
*/
/* probs[i,j] = output[i,j] * gold[i,j] */
/* probs[i,j] = output[i,j] * gold[i,j] */
_Multiply
(
&
logO
utput
,
gold
,
&
probs
);
_Multiply
(
o
utput
,
gold
,
&
probs
);
/* probability of each word */
/* probability of each word */
XTensor
wprobs
;
XTensor
wprobs
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论