Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
2c63f341
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
大约 1 年 前同步成功
通知
207
Star
8425
Fork
1598
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
245
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DeepSpeech
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
245
Issue
245
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
2c63f341
编写于
9月 29, 2017
作者:
Y
Yibing Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
convert decoding results to unicode in DS2
上级
511c4540
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
6 deletion
+14
-6
decoders/swig_wrapper.py
decoders/swig_wrapper.py
+13
-5
examples/tiny/run_train.sh
examples/tiny/run_train.sh
+1
-1
未找到文件。
decoders/swig_wrapper.py
浏览文件 @
2c63f341
...
...
@@ -35,7 +35,8 @@ def ctc_greedy_decoder(probs_seq, vocabulary):
:return: Decoding result string.
:rtype: basestring
"""
return
swig_decoders
.
ctc_greedy_decoder
(
probs_seq
.
tolist
(),
vocabulary
)
result
=
swig_decoders
.
ctc_greedy_decoder
(
probs_seq
.
tolist
(),
vocabulary
)
return
result
.
decode
(
'utf-8'
)
def
ctc_beam_search_decoder
(
probs_seq
,
...
...
@@ -69,9 +70,11 @@ def ctc_beam_search_decoder(probs_seq,
results, in descending order of the probability.
:rtype: list
"""
return
swig_decoders
.
ctc_beam_search_decoder
(
probs_seq
.
tolist
(),
vocabulary
,
beam_size
,
cutoff_prob
,
cutoff_top_n
,
ext_scoring_func
)
beam_results
=
swig_decoders
.
ctc_beam_search_decoder
(
probs_seq
.
tolist
(),
vocabulary
,
beam_size
,
cutoff_prob
,
cutoff_top_n
,
ext_scoring_func
)
beam_results
=
[(
res
[
0
],
res
[
1
].
decode
(
'utf-8'
))
for
res
in
beam_results
]
return
beam_results
def
ctc_beam_search_decoder_batch
(
probs_split
,
...
...
@@ -111,6 +114,11 @@ def ctc_beam_search_decoder_batch(probs_split,
"""
probs_split
=
[
probs_seq
.
tolist
()
for
probs_seq
in
probs_split
]
return
swig_decoders
.
ctc_beam_search_decoder_batch
(
batch_beam_results
=
swig_decoders
.
ctc_beam_search_decoder_batch
(
probs_split
,
vocabulary
,
beam_size
,
num_processes
,
cutoff_prob
,
cutoff_top_n
,
ext_scoring_func
)
batch_beam_results
=
[
[(
res
[
0
],
res
[
1
].
decode
(
"utf-8"
))
for
res
in
beam_results
]
for
beam_results
in
batch_beam_results
]
return
batch_beam_results
examples/tiny/run_train.sh
浏览文件 @
2c63f341
...
...
@@ -33,7 +33,7 @@ python -u train.py \
--shuffle_method
=
'batch_shuffle_clipped'
if
[
$?
-ne
0
]
;
then
echo
"Fail
to do inference
!"
echo
"Fail
in training
!"
exit
1
fi
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录