Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
6da8465f
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,发现更多精彩内容 >>
提交
6da8465f
编写于
3月 22, 2022
作者:
H
huangyuxin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add dist_sampler args, test=asr
上级
a4f5a680
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
7 addition
and
5 deletion
+7
-5
examples/aishell/asr1/conf/chunk_conformer.yaml
examples/aishell/asr1/conf/chunk_conformer.yaml
+2
-1
examples/aishell/asr1/conf/conformer.yaml
examples/aishell/asr1/conf/conformer.yaml
+2
-1
examples/aishell/asr1/conf/transformer.yaml
examples/aishell/asr1/conf/transformer.yaml
+3
-2
paddlespeech/s2t/models/u2/u2.py
paddlespeech/s2t/models/u2/u2.py
+0
-1
未找到文件。
examples/aishell/asr1/conf/chunk_conformer.yaml
浏览文件 @
6da8465f
...
@@ -70,7 +70,7 @@ batch_bins: 0
...
@@ -70,7 +70,7 @@ batch_bins: 0
batch_frames_in
:
0
batch_frames_in
:
0
batch_frames_out
:
0
batch_frames_out
:
0
batch_frames_inout
:
0
batch_frames_inout
:
0
num_workers
:
0
num_workers
:
2
subsampling_factor
:
1
subsampling_factor
:
1
num_encs
:
1
num_encs
:
1
...
@@ -80,6 +80,7 @@ num_encs: 1
...
@@ -80,6 +80,7 @@ num_encs: 1
n_epoch
:
240
n_epoch
:
240
accum_grad
:
2
accum_grad
:
2
global_grad_clip
:
5.0
global_grad_clip
:
5.0
dist_sampler
:
True
optim
:
adam
optim
:
adam
optim_conf
:
optim_conf
:
lr
:
0.002
lr
:
0.002
...
...
examples/aishell/asr1/conf/conformer.yaml
浏览文件 @
6da8465f
...
@@ -76,6 +76,7 @@ num_encs: 1
...
@@ -76,6 +76,7 @@ num_encs: 1
n_epoch
:
240
n_epoch
:
240
accum_grad
:
2
accum_grad
:
2
global_grad_clip
:
5.0
global_grad_clip
:
5.0
dist_sampler
:
True
optim
:
adam
optim
:
adam
optim_conf
:
optim_conf
:
lr
:
0.002
lr
:
0.002
...
@@ -84,7 +85,7 @@ scheduler: warmuplr
...
@@ -84,7 +85,7 @@ scheduler: warmuplr
scheduler_conf
:
scheduler_conf
:
warmup_steps
:
25000
warmup_steps
:
25000
lr_decay
:
1.0
lr_decay
:
1.0
log_interval
:
1
00
log_interval
:
1
checkpoint
:
checkpoint
:
kbest_n
:
50
kbest_n
:
50
latest_n
:
5
latest_n
:
5
examples/aishell/asr1/conf/transformer.yaml
浏览文件 @
6da8465f
...
@@ -61,16 +61,17 @@ batch_frames_in: 0
...
@@ -61,16 +61,17 @@ batch_frames_in: 0
batch_frames_out
:
0
batch_frames_out
:
0
batch_frames_inout
:
0
batch_frames_inout
:
0
preprocess_config
:
conf/preprocess.yaml
preprocess_config
:
conf/preprocess.yaml
num_workers
:
0
num_workers
:
2
subsampling_factor
:
1
subsampling_factor
:
1
num_encs
:
1
num_encs
:
1
###########################################
###########################################
# Training #
# Training #
###########################################
###########################################
n_epoch
:
240
n_epoch
:
30
accum_grad
:
2
accum_grad
:
2
global_grad_clip
:
5.0
global_grad_clip
:
5.0
dist_sampler
:
False
optim
:
adam
optim
:
adam
optim_conf
:
optim_conf
:
lr
:
0.002
lr
:
0.002
...
...
paddlespeech/s2t/models/u2/u2.py
浏览文件 @
6da8465f
...
@@ -51,7 +51,6 @@ from paddlespeech.s2t.utils.tensor_utils import pad_sequence
...
@@ -51,7 +51,6 @@ from paddlespeech.s2t.utils.tensor_utils import pad_sequence
from
paddlespeech.s2t.utils.tensor_utils
import
th_accuracy
from
paddlespeech.s2t.utils.tensor_utils
import
th_accuracy
from
paddlespeech.s2t.utils.utility
import
log_add
from
paddlespeech.s2t.utils.utility
import
log_add
from
paddlespeech.s2t.utils.utility
import
UpdateConfig
from
paddlespeech.s2t.utils.utility
import
UpdateConfig
# from paddlespeech.s2t.modules.initializer import initialize
__all__
=
[
"U2Model"
,
"U2InferModel"
]
__all__
=
[
"U2Model"
,
"U2InferModel"
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录