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
63e2cfa7
Commit
63e2cfa7
authored
Sep 27, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve the implementation of softmax
parent
7f483801
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
12 行增加
和
3 行删除
+12
-3
source/sample/transformer/T2TEncoder.cpp
+2
-0
source/sample/transformer/T2TTrainer.cpp
+1
-1
source/sample/transformer/Transformer.cpp
+1
-1
source/tensor/XGlobal.h
+1
-1
source/tensor/function/LogSoftmax.cu
+7
-0
没有找到文件。
source/sample/transformer/T2TEncoder.cpp
查看文件 @
63e2cfa7
...
@@ -98,6 +98,8 @@ XTensor AttEncoder::Make(XTensor &input, XTensor &mask, bool isTraining)
...
@@ -98,6 +98,8 @@ XTensor AttEncoder::Make(XTensor &input, XTensor &mask, bool isTraining)
x
=
embedder
.
Make
(
input
);
x
=
embedder
.
Make
(
input
);
x
.
Dump
(
tmpFILE
,
"embedding: "
);
/* dropout */
/* dropout */
if
(
isTraining
&&
dropoutP
>
0
)
if
(
isTraining
&&
dropoutP
>
0
)
x
=
Dropout
(
x
,
dropoutP
);
x
=
Dropout
(
x
,
dropoutP
);
...
...
source/sample/transformer/T2TTrainer.cpp
查看文件 @
63e2cfa7
...
@@ -406,7 +406,7 @@ void T2TTrainer::MakeCheckpoint(T2TModel * model, const char * validFN, const ch
...
@@ -406,7 +406,7 @@ void T2TTrainer::MakeCheckpoint(T2TModel * model, const char * validFN, const ch
sprintf
(
fn
,
"%s.%s.%03d"
,
modelFN
,
label
,
id
);
sprintf
(
fn
,
"%s.%s.%03d"
,
modelFN
,
label
,
id
);
sprintf
(
fn2
,
"%s.%s.%03d.output"
,
modelFN
,
label
,
id
);
sprintf
(
fn2
,
"%s.%s.%03d.output"
,
modelFN
,
label
,
id
);
//
model->Dump(fn);
model
->
Dump
(
fn
);
if
(
validFN
!=
NULL
){
if
(
validFN
!=
NULL
){
T2TTrainer
trainer
;
T2TTrainer
trainer
;
trainer
.
Init
(
argNum
,
argArray
);
trainer
.
Init
(
argNum
,
argArray
);
...
...
source/sample/transformer/Transformer.cpp
查看文件 @
63e2cfa7
...
@@ -34,7 +34,7 @@ int TransformerMain(int argc, const char ** argv)
...
@@ -34,7 +34,7 @@ int TransformerMain(int argc, const char ** argv)
if
(
argc
==
0
)
if
(
argc
==
0
)
return
1
;
return
1
;
fprintf
(
stderr
,
"%e
\n
"
,
exp
(
-
1e9
F
));
fprintf
(
stderr
,
"%e
\n
"
,
log
(
1e-8
F
));
char
**
args
=
new
char
*
[
argc
];
char
**
args
=
new
char
*
[
argc
];
for
(
int
i
=
0
;
i
<
argc
;
i
++
){
for
(
int
i
=
0
;
i
<
argc
;
i
++
){
...
...
source/tensor/XGlobal.h
查看文件 @
63e2cfa7
...
@@ -55,7 +55,7 @@ namespace nts {
...
@@ -55,7 +55,7 @@ namespace nts {
#define DTYPE_MIN (DTYPE)-3.40E+38
#define DTYPE_MIN (DTYPE)-3.40E+38
#endif
#endif
#define LOGPROB_MIN (DTYPE)-
1E+15
#define LOGPROB_MIN (DTYPE)-
2E+1
#define GRAD_MAX (DTYPE)1E+5
#define GRAD_MAX (DTYPE)1E+5
#if WIN32
#if WIN32
...
...
source/tensor/function/LogSoftmax.cu
查看文件 @
63e2cfa7
...
@@ -78,6 +78,7 @@ void KernelLogSoftmaxComputeByRow(DTYPE * x, DTYPE * max, DTYPE * sum, DTYPE * y
...
@@ -78,6 +78,7 @@ void KernelLogSoftmaxComputeByRow(DTYPE * x, DTYPE * max, DTYPE * sum, DTYPE * y
if (i < rowNum && j < colNum) {
if (i < rowNum && j < colNum) {
int key = i * colNum + j;
int key = i * colNum + j;
DTYPE r = log(exp(x[key] - inputMax[threadIdx.x]) / inputSum[threadIdx.x]);
DTYPE r = log(exp(x[key] - inputMax[threadIdx.x]) / inputSum[threadIdx.x]);
if (isnan(r))
if (isnan(r))
r = LOGPROB_MIN;
r = LOGPROB_MIN;
if (isinf(r))
if (isinf(r))
...
@@ -124,6 +125,12 @@ void KernelLogSoftmaxComputeByCol(DTYPE * x, DTYPE * max, DTYPE * sum, DTYPE * y
...
@@ -124,6 +125,12 @@ void KernelLogSoftmaxComputeByCol(DTYPE * x, DTYPE * max, DTYPE * sum, DTYPE * y
if (i < rowNum && j < colNum) {
if (i < rowNum && j < colNum) {
int key = i * colNum + j;
int key = i * colNum + j;
DTYPE r = log(exp(x[key] - inputMax[threadIdx.y]) / inputSum[threadIdx.y]);
DTYPE r = log(exp(x[key] - inputMax[threadIdx.y]) / inputSum[threadIdx.y]);
/*if (r < LOGPROB_MIN)
{
printf("min %e %e, %e %e, %e %e\n", r, x[key] - inputMax[threadIdx.y], x[key], inputMax[threadIdx.y], exp(x[key] - inputMax[threadIdx.y]), inputSum[threadIdx.y]);
}*/
if (isnan(r))
if (isnan(r))
r = LOGPROB_MIN;
r = LOGPROB_MIN;
if (isinf(r))
if (isinf(r))
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论