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
1faabe78
Commit
1faabe78
authored
Apr 24, 2019
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
probability of one step
parent
c5fb044c
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
5 行删除
+39
-5
source/sample/transformer/T2TPredictor.cpp
+29
-2
source/sample/transformer/T2TSearch.cpp
+9
-2
source/sample/transformer/T2TSearch.h
+1
-1
没有找到文件。
source/sample/transformer/T2TPredictor.cpp
查看文件 @
1faabe78
...
...
@@ -135,6 +135,8 @@ void T2TPredictor::Predict(T2TStateBundle * next, XTensor * encoding, XTensor *
/* prediction probabilities */
XTensor
&
output
=
next
->
prob
;
XTensor
decoding
;
XTensor
decodingStep
;
XTensor
paddingDec
;
InitTensor3D
(
&
paddingDec
,
inputDec
.
GetDim
(
0
),
inputDec
.
GetDim
(
1
),
m
->
outputLayer
->
vSize
,
X_INT
);
...
...
@@ -146,8 +148,33 @@ void T2TPredictor::Predict(T2TStateBundle * next, XTensor * encoding, XTensor *
/* decoder mask */
m
->
MakeMTMaskDec
(
*
inputEnc
,
inputDec
,
*
paddingEnc
,
paddingDec
,
maskDec
,
maskEncDec
);
/* make the decoding network and generate the output probabilities */
output
=
decoder
.
Make
(
inputDec
,
*
encoding
,
maskDec
,
maskEncDec
,
false
);
/* make the decoding network */
decoding
=
decoder
.
Make
(
inputDec
,
*
encoding
,
maskDec
,
maskEncDec
,
false
);
XTensor
selectSrc
;
XTensor
selectTgt
;
CheckNTErrors
(
decoding
.
order
>=
2
,
"The tensor must be of order 2 or larger!"
);
int
dims
[
MAX_TENSOR_DIM_NUM
];
for
(
int
i
=
0
;
i
<
decoding
.
order
-
1
;
i
++
)
dims
[
i
]
=
decoding
.
GetDim
(
i
);
dims
[
decoding
.
order
-
2
]
=
1
;
InitTensor
(
&
selectSrc
,
decoding
.
order
-
1
,
dims
,
X_INT
);
InitTensor
(
&
selectTgt
,
decoding
.
order
-
1
,
dims
,
X_INT
);
int
stride
=
decoding
.
GetDim
(
decoding
.
order
-
2
);
for
(
int
i
=
0
;
i
<
selectSrc
.
unitNum
;
i
++
){
selectSrc
.
SetInt
(
i
*
stride
+
stride
-
1
,
i
);
selectTgt
.
SetInt
(
i
,
i
);
}
/* the decoder output of the last position */
decodingStep
=
CopyIndexed
(
decoding
,
decoding
.
order
-
2
,
selectSrc
,
selectTgt
);
/* generate the output probabilities */
m
->
outputLayer
->
Make
(
decodingStep
,
output
);
next
->
layersEnc
.
AddList
(
&
s
->
layersEnc
);
next
->
layersDec
.
Add
(
&
inputDec
);
...
...
source/sample/transformer/T2TSearch.cpp
查看文件 @
1faabe78
...
...
@@ -319,10 +319,17 @@ void T2TSearch::Collect(T2TStateBundle * beam)
/*
save the output sequences in a tensor
>> beam - the beam that keeps a number of states
>> input - input sequences
>> output - output sequences (for return)
*/
void
T2TSearch
::
Dump
(
T2TStateBundle
*
beam
,
XTensor
*
output
)
void
T2TSearch
::
Dump
(
XTensor
*
input
,
XTensor
*
output
)
{
int
dims
[
MAX_TENSOR_DIM_NUM
];
for
(
int
i
=
0
;
i
<
input
->
order
-
1
;
i
++
)
dims
[
i
]
=
input
->
GetDim
(
i
);
dims
[
input
->
order
-
1
]
=
maxLength
;
InitTensor
(
output
,
input
->
order
,
dims
,
X_INT
);
}
/*
...
...
source/sample/transformer/T2TSearch.h
查看文件 @
1faabe78
...
...
@@ -88,7 +88,7 @@ public:
void
Collect
(
T2TStateBundle
*
beam
);
/* save the output sequences in a tensor */
void
Dump
(
T2TStateBundle
*
beam
,
XTensor
*
output
);
void
Dump
(
XTensor
*
input
,
XTensor
*
output
);
/* check if the token is an end symbol */
bool
IsEnd
(
int
token
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论