Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
80eb6b7f
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看板
提交
80eb6b7f
编写于
9月 22, 2021
作者:
H
Hui Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix espnet kaldi libri s2 config
上级
98b15eda
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
9 addition
and
9 deletion
+9
-9
examples/librispeech/s2/conf/transformer.yaml
examples/librispeech/s2/conf/transformer.yaml
+3
-3
examples/librispeech/s2/local/test.sh
examples/librispeech/s2/local/test.sh
+1
-1
examples/librispeech/s2/run.sh
examples/librispeech/s2/run.sh
+3
-3
utils/avg_model.py
utils/avg_model.py
+2
-2
未找到文件。
examples/librispeech/s2/conf/transformer.yaml
浏览文件 @
80eb6b7f
...
...
@@ -12,7 +12,7 @@ collator:
stride_ms
:
10.0
window_ms
:
25.0
sortagrad
:
0
# Feed samples from shortest to longest ; -1: enabled for all epochs, 0: disabled, other: enabled for 'other' epochs
batch_size
:
3
2
batch_size
:
3
0
maxlen_in
:
512
# if input length > maxlen-in, batchsize is automatically reduced
maxlen_out
:
150
# if output length > maxlen-out, batchsize is automatically reduced
minibatches
:
0
# for debug
...
...
@@ -59,7 +59,7 @@ model:
model_conf
:
ctc_weight
:
0.3
ctc_dropoutrate
:
0.0
ctc_grad_norm_type
:
instance
ctc_grad_norm_type
:
batch
lsm_weight
:
0.1
# label smoothing option
length_normalized_loss
:
false
...
...
@@ -83,7 +83,7 @@ scheduler_conf:
lr_decay
:
1.0
decoding
:
batch_size
:
64
batch_size
:
1
error_rate_type
:
wer
decoding_method
:
attention
# 'attention', 'ctc_greedy_search', 'ctc_prefix_beam_search', 'attention_rescoring'
lang_model_path
:
data/lm/common_crawl_00.prune01111.trie.klm
...
...
examples/librispeech/s2/local/test.sh
浏览文件 @
80eb6b7f
...
...
@@ -36,7 +36,7 @@ for type in attention ctc_greedy_search; do
# stream decoding only support batchsize=1
batch_size
=
1
else
batch_size
=
64
batch_size
=
1
fi
python3
-u
${
BIN_DIR
}
/test.py
\
--model-name
u2_kaldi
\
...
...
examples/librispeech/s2/run.sh
浏览文件 @
80eb6b7f
...
...
@@ -6,7 +6,7 @@ stage=0
stop_stage
=
100
conf_path
=
conf/transformer.yaml
dict_path
=
data/train_960_unigram5000_units.txt
avg_num
=
5
avg_num
=
10
source
${
MAIN_ROOT
}
/utils/parse_options.sh
||
exit
1
;
avg_ckpt
=
avg_
${
avg_num
}
...
...
@@ -20,12 +20,12 @@ fi
if
[
${
stage
}
-le
1
]
&&
[
${
stop_stage
}
-ge
1
]
;
then
# train model, all `ckpt` under `exp` dir
CUDA_VISIBLE_DEVICES
=
0,1,2,3 ./local/train.sh
${
conf_path
}
${
ckpt
}
CUDA_VISIBLE_DEVICES
=
0,1,2,3
,4,5,6,7
./local/train.sh
${
conf_path
}
${
ckpt
}
fi
if
[
${
stage
}
-le
2
]
&&
[
${
stop_stage
}
-ge
2
]
;
then
# avg n best model
avg.sh
b
est exp/
${
ckpt
}
/checkpoints
${
avg_num
}
avg.sh
lat
est exp/
${
ckpt
}
/checkpoints
${
avg_num
}
fi
if
[
${
stage
}
-le
3
]
&&
[
${
stop_stage
}
-ge
3
]
;
then
...
...
utils/avg_model.py
浏览文件 @
80eb6b7f
...
...
@@ -80,8 +80,8 @@ def main(args):
data
=
json
.
dumps
({
"avg_ckpt"
:
args
.
dst_model
,
"ckpt"
:
path_list
,
"epoch"
:
selected_epochs
.
tolist
()
,
"val_loss"
:
beat_val_scores
.
tolist
()
,
"epoch"
:
selected_epochs
,
"val_loss"
:
beat_val_scores
,
})
f
.
write
(
data
+
"
\n
"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录