Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
NiuTrans.Tensor
概览
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.Tensor
Commits
543320bc
Commit
543320bc
authored
Sep 28, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove </s> for transformer lm
parent
98ac897b
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
17 行增加
和
5 行删除
+17
-5
source/sample/transformer/T2TTrainer.cpp
+14
-5
source/sample/transformer/T2TTrainer.h
+3
-0
没有找到文件。
source/sample/transformer/T2TTrainer.cpp
查看文件 @
543320bc
...
...
@@ -112,6 +112,7 @@ void T2TTrainer::Init(int argc, char ** argv)
LoadParamInt
(
argc
,
argv
,
"nstepcheckpoint"
,
&
nStepCheckpoint
,
-
1
);
LoadParamBool
(
argc
,
argv
,
"epochcheckpoint"
,
&
useEpochCheckpoint
,
false
);
LoadParamInt
(
argc
,
argv
,
"updatestep"
,
&
updateStep
,
1
);
LoadParamBool
(
argc
,
argv
,
"doubledend"
,
&
isDoubledEnd
,
false
);
buf
=
new
int
[
bufSize
];
buf2
=
new
int
[
bufSize
];
...
...
@@ -590,7 +591,9 @@ int T2TTrainer::LoadBatch(FILE * file, bool isLM,
int
sc
=
0
;
int
max
=
0
;
while
(
seq
+
sc
<
nseqBuf
){
wn
=
seqLen
[
seq
+
sc
];
int
len
=
isDoubledEnd
?
seqLen
[
seq
+
sc
]
:
seqLen
[
seq
+
sc
]
-
1
;
CheckNTErrors
(
len
>
0
,
"Empty sequence!"
);
wn
=
len
;
wc
+=
wn
;
sc
+=
1
;
...
...
@@ -645,13 +648,19 @@ int T2TTrainer::LoadBatch(FILE * file, bool isLM,
/* this might be slow on GPUs :( */
for
(
int
s
=
seq
;
s
<
seq
+
sc
;
s
++
){
for
(
int
w
=
0
;
w
<
seqLen
[
s
];
w
++
){
int
len
=
isDoubledEnd
?
seqLen
[
s
]
:
seqLen
[
s
]
-
1
;
CheckNTErrors
(
len
<=
max
,
"Something is wrong!"
);
for
(
int
w
=
0
;
w
<
len
;
w
++
){
batch
->
Set3D
(
1.0
F
,
s
-
seq
,
w
,
buf
[
seqOffset
[
s
]
+
w
]);
padding
->
Set2D
(
1.0
F
,
s
-
seq
,
w
);
if
(
w
>
0
)
output
->
Set3D
(
1.0
F
,
s
-
seq
,
w
-
1
,
buf
[
seqOffset
[
s
]
+
w
]);
if
(
w
==
seqLen
[
s
]
-
1
)
output
->
Set3D
(
1.0
F
,
s
-
seq
,
w
,
buf
[
seqOffset
[
s
]
+
w
]);
if
(
w
==
len
-
1
){
if
(
isDoubledEnd
)
output
->
Set3D
(
1.0
F
,
s
-
seq
,
w
,
buf
[
seqOffset
[
s
]
+
w
]);
else
output
->
Set3D
(
1.0
F
,
s
-
seq
,
w
,
buf
[
seqOffset
[
s
]
+
w
+
1
]);
}
wCount
++
;
/*fprintf(tf, "%d", buf[seqOffset[s] + w]);
if(w < seqLen[s] - 1)
...
...
@@ -663,7 +672,7 @@ int T2TTrainer::LoadBatch(FILE * file, bool isLM,
}
if
(
seqs
!=
NULL
){
for
(
int
w
=
seqLen
[
s
]
;
w
<
max
;
w
++
)
for
(
int
w
=
len
;
w
<
max
;
w
++
)
seqs
[
seqSize
++
]
=
-
1
;
}
}
...
...
source/sample/transformer/T2TTrainer.h
查看文件 @
543320bc
...
...
@@ -127,6 +127,9 @@ public:
/* number of batches on which we do model update */
int
updateStep
;
/* indicates whether we double the </s> symble for the output of lms */
bool
isDoubledEnd
;
public
:
/* constructor */
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论