Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
8a3c88d4
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
大约 2 年 前同步成功
通知
210
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看板
提交
8a3c88d4
编写于
5月 09, 2022
作者:
R
root
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add launch for st, test=asr
上级
9f389a7a
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
36 addition
and
2 deletion
+36
-2
examples/aishell/asr0/local/train.sh
examples/aishell/asr0/local/train.sh
+1
-0
examples/aishell/asr0/run.sh
examples/aishell/asr0/run.sh
+1
-1
examples/aishell/asr1/local/train.sh
examples/aishell/asr1/local/train.sh
+1
-0
examples/callcenter/asr1/local/train.sh
examples/callcenter/asr1/local/train.sh
+1
-0
examples/librispeech/asr0/local/train.sh
examples/librispeech/asr0/local/train.sh
+1
-0
examples/librispeech/asr1/local/train.sh
examples/librispeech/asr1/local/train.sh
+1
-0
examples/librispeech/asr2/local/train.sh
examples/librispeech/asr2/local/train.sh
+1
-0
examples/ted_en_zh/st0/local/train.sh
examples/ted_en_zh/st0/local/train.sh
+8
-0
examples/ted_en_zh/st1/local/train.sh
examples/ted_en_zh/st1/local/train.sh
+10
-1
examples/timit/asr1/local/train.sh
examples/timit/asr1/local/train.sh
+9
-0
examples/tiny/asr0/local/train.sh
examples/tiny/asr0/local/train.sh
+1
-0
examples/tiny/asr1/local/train.sh
examples/tiny/asr1/local/train.sh
+1
-0
未找到文件。
examples/aishell/asr0/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -29,6 +29,7 @@ python3 -u ${BIN_DIR}/train.py \
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--model_type
${
model_type
}
\
...
...
examples/aishell/asr0/run.sh
浏览文件 @
8a3c88d4
...
...
@@ -2,7 +2,7 @@
set
-e
source
path.sh
gpus
=
1,2,3
gpus
=
0,
1,2,3
stage
=
0
stop_stage
=
100
conf_path
=
conf/deepspeech2.yaml
#conf/deepspeech2.yaml or conf/deepspeech2_online.yaml
...
...
examples/aishell/asr1/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -38,6 +38,7 @@ python3 -u ${BIN_DIR}/train.py \
--benchmark-max-step
${
benchmark_max_step
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--seed
${
seed
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
...
...
examples/callcenter/asr1/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -29,6 +29,7 @@ python3 -u ${BIN_DIR}/train.py \
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
...
...
examples/librispeech/asr0/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -29,6 +29,7 @@ python3 -u ${BIN_DIR}/train.py \
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--model_type
${
model_type
}
\
...
...
examples/librispeech/asr1/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -30,6 +30,7 @@ python3 -u ${BIN_DIR}/train.py \
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
...
...
examples/librispeech/asr2/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -28,6 +28,7 @@ python3 -u ${BIN_DIR}/train.py \
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--model-name
u2_kaldi
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
...
...
examples/ted_en_zh/st0/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -19,11 +19,19 @@ if [ ${seed} != 0 ]; then
export
FLAGS_cudnn_deterministic
=
True
fi
if
[
${
ngpu
}
==
0
]
;
then
python3
-u
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
fi
if
[
${
seed
}
!=
0
]
;
then
unset
FLAGS_cudnn_deterministic
...
...
examples/ted_en_zh/st1/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -20,12 +20,21 @@ if [ ${seed} != 0 ]; then
export
FLAGS_cudnn_deterministic
=
True
fi
if
[
${
ngpu
}
==
0
]
;
then
python3
-u
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--checkpoint_path
"
${
ckpt_path
}
"
\
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--checkpoint_path
"
${
ckpt_path
}
"
\
--seed
${
seed
}
fi
if
[
${
seed
}
!=
0
]
;
then
unset
FLAGS_cudnn_deterministic
...
...
@@ -36,4 +45,4 @@ if [ $? -ne 0 ]; then
exit
1
fi
exit
0
\ No newline at end of file
exit
0
examples/timit/asr1/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -19,10 +19,19 @@ if [ ${seed} != 0 ]; then
export
FLAGS_cudnn_deterministic
=
True
fi
if
[
${
ngpu
}
==
0
]
;
then
python3
-u
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
fi
if
[
${
seed
}
!=
0
]
;
then
unset
FLAGS_cudnn_deterministic
...
...
examples/tiny/asr0/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -36,6 +36,7 @@ python3 -u ${BIN_DIR}/train.py \
--seed
${
seed
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--model_type
${
model_type
}
\
...
...
examples/tiny/asr1/local/train.sh
浏览文件 @
8a3c88d4
...
...
@@ -38,6 +38,7 @@ python3 -u ${BIN_DIR}/train.py \
--benchmark-max-step
${
benchmark_max_step
}
else
python3
-m
paddle.distributed.launch
--gpus
=
${
CUDA_VISIBLE_DEVICES
}
${
BIN_DIR
}
/train.py
\
--ngpu
${
ngpu
}
\
--seed
${
seed
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录