Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
f029f931
M
models
项目概览
PaddlePaddle
/
models
1 年多 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f029f931
编写于
3月 24, 2018
作者:
Y
Yibing Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Clean code and add some comments
上级
4faf79a6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
59 deletion
+5
-59
fluid/DeepASR/decoder/post_decode_faster.cc
fluid/DeepASR/decoder/post_decode_faster.cc
+1
-59
fluid/DeepASR/decoder/post_decode_faster.h
fluid/DeepASR/decoder/post_decode_faster.h
+4
-0
未找到文件。
fluid/DeepASR/decoder/post_decode_faster.cc
浏览文件 @
f029f931
...
...
@@ -89,71 +89,13 @@ std::vector<std::string> Decoder::decode(std::string posterior_rspecifier) {
kaldi
::
SequentialBaseFloatMatrixReader
posterior_reader
(
posterior_rspecifier
);
std
::
vector
<
std
::
string
>
decoding_results
;
kaldi
::
BaseFloat
tot_like
=
0.0
;
kaldi
::
int64
frame_count
=
0
;
int
num_success
=
0
,
num_fail
=
0
;
kaldi
::
Timer
timer
;
for
(;
!
posterior_reader
.
Done
();
posterior_reader
.
Next
())
{
std
::
string
key
=
posterior_reader
.
Key
();
kaldi
::
Matrix
<
kaldi
::
BaseFloat
>
loglikes
(
posterior_reader
.
Value
());
if
(
loglikes
.
NumRows
()
==
0
)
{
KALDI_WARN
<<
"Zero-length utterance: "
<<
key
;
num_fail
++
;
continue
;
}
KALDI_ASSERT
(
loglikes
.
NumCols
()
==
logprior
.
Dim
());
loglikes
.
ApplyLog
();
loglikes
.
AddVecToRows
(
-
1.0
,
logprior
);
kaldi
::
DecodableMatrixScaled
decodable
(
loglikes
,
acoustic_scale
);
decoder
->
Decode
(
&
decodable
);
VectorFst
<
kaldi
::
LatticeArc
>
decoded
;
// linear FST.
if
((
allow_partial
||
decoder
->
ReachedFinal
())
&&
decoder
->
GetBestPath
(
&
decoded
))
{
num_success
++
;
if
(
!
decoder
->
ReachedFinal
())
KALDI_WARN
<<
"Decoder did not reach end-state, outputting partial "
"traceback."
;
std
::
vector
<
int32
>
alignment
;
std
::
vector
<
int32
>
words
;
kaldi
::
LatticeWeight
weight
;
frame_count
+=
loglikes
.
NumRows
();
GetLinearSymbolSequence
(
decoded
,
&
alignment
,
&
words
,
&
weight
);
if
(
word_syms
!=
NULL
)
{
std
::
string
res
;
for
(
size_t
i
=
0
;
i
<
words
.
size
();
i
++
)
{
std
::
string
s
=
word_syms
->
Find
(
words
[
i
]);
res
+=
s
;
if
(
s
==
""
)
KALDI_ERR
<<
"Word-id "
<<
words
[
i
]
<<
" not in symbol table."
;
}
decoding_results
.
push_back
(
res
);
}
kaldi
::
BaseFloat
like
=
-
weight
.
Value1
()
-
weight
.
Value2
();
tot_like
+=
like
;
}
else
{
num_fail
++
;
KALDI_WARN
<<
"Did not successfully decode utterance "
<<
key
<<
", len = "
<<
loglikes
.
NumRows
();
}
decoding_results
.
push_back
(
decode
(
key
,
loglikes
));
}
double
elapsed
=
timer
.
Elapsed
();
KALDI_LOG
<<
"Time taken [excluding initialization] "
<<
elapsed
<<
"s: real-time factor assuming 100 frames/sec is "
<<
(
elapsed
*
100.0
/
frame_count
);
KALDI_LOG
<<
"Done "
<<
num_success
<<
" utterances, failed for "
<<
num_fail
;
KALDI_LOG
<<
"Overall log-likelihood per frame is "
<<
(
tot_like
/
frame_count
)
<<
" over "
<<
frame_count
<<
" frames."
;
return
decoding_results
;
}
...
...
fluid/DeepASR/decoder/post_decode_faster.h
浏览文件 @
f029f931
...
...
@@ -32,12 +32,16 @@ public:
std
::
string
logprior_rxfilename
);
~
Decoder
();
// Interface to accept the scores read from specifier and return
// the batch decoding results
std
::
vector
<
std
::
string
>
decode
(
std
::
string
posterior_rspecifier
);
// Accept the scores of one utterance and return the decoding result
std
::
string
decode
(
std
::
string
key
,
std
::
vector
<
std
::
vector
<
kaldi
::
BaseFloat
>>
&
log_probs
);
private:
// For decoding one utterance
std
::
string
decode
(
std
::
string
key
,
kaldi
::
Matrix
<
kaldi
::
BaseFloat
>
&
loglikes
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录