Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
2aed2752
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看板
提交
2aed2752
编写于
5月 06, 2021
作者:
H
Hui Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix test
上级
b15b6c6a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
7 deletion
+6
-7
deepspeech/__init__.py
deepspeech/__init__.py
+4
-4
deepspeech/exps/u2/bin/test.py
deepspeech/exps/u2/bin/test.py
+1
-2
examples/aishell/s1/conf/conformer.yaml
examples/aishell/s1/conf/conformer.yaml
+1
-1
未找到文件。
deepspeech/__init__.py
浏览文件 @
2aed2752
...
...
@@ -357,9 +357,9 @@ if not hasattr(paddle.Tensor, 'tolist'):
########### hcak paddle.nn.functional #############
def
glu
(
x
:
paddle
.
Tensor
,
dim
=-
1
)
->
paddle
.
Tensor
:
def
glu
(
x
:
paddle
.
Tensor
,
axis
=-
1
)
->
paddle
.
Tensor
:
"""The gated linear unit (GLU) activation."""
a
,
b
=
x
.
split
(
2
,
axis
=
dim
)
a
,
b
=
x
.
split
(
2
,
axis
=
axis
)
act_b
=
F
.
sigmoid
(
b
)
return
a
*
act_b
...
...
@@ -458,8 +458,8 @@ class ConstantPad2d(nn.Layer):
def
__init__
(
self
,
padding
:
Union
[
tuple
,
list
,
int
],
value
:
float
):
"""
Args:
paddle ([tuple]): the size of the padding.
If is int, uses the same padding in all boundaries.
paddle ([tuple]): the size of the padding.
If is int, uses the same padding in all boundaries.
If a 4-tuple, uses (padding_left, padding_right, padding_top, padding_bottom)
value ([flaot]): pad value
"""
...
...
deepspeech/exps/u2/bin/test.py
浏览文件 @
2aed2752
...
...
@@ -13,7 +13,6 @@
# limitations under the License.
"""Evaluation for U2 model."""
import
cProfile
import
os
from
deepspeech.exps.u2.config
import
get_cfg_defaults
from
deepspeech.exps.u2.model
import
U2Tester
as
Tester
...
...
@@ -53,4 +52,4 @@ if __name__ == "__main__":
# Setting for profiling
pr
=
cProfile
.
Profile
()
pr
.
runcall
(
main
,
config
,
args
)
pr
.
dump_stats
(
os
.
path
.
join
(
args
.
output
,
'train.profile'
)
)
pr
.
dump_stats
(
'test.profile'
)
examples/aishell/s1/conf/conformer.yaml
浏览文件 @
2aed2752
...
...
@@ -91,7 +91,7 @@ training:
decoding
:
batch_size
:
128
error_rate_type
:
cer
decoding_method
:
attention
# 'attention', 'ctc_greedy_search', 'ctc_prefix_beam_search', 'attention_rescoring'
decoding_method
:
attention
# 'attention', 'ctc_greedy_search', 'ctc_prefix_beam_search', 'attention_rescoring'
lang_model_path
:
data/lm/common_crawl_00.prune01111.trie.klm
alpha
:
2.5
beta
:
0.3
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录