Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
9fb349f9
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看板
提交
9fb349f9
编写于
9月 17, 2021
作者:
H
Hui Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix benchmark cli
上级
054e099b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
50 addition
and
18 deletion
+50
-18
deepspeech/training/cli.py
deepspeech/training/cli.py
+50
-18
未找到文件。
deepspeech/training/cli.py
浏览文件 @
9fb349f9
...
@@ -43,25 +43,57 @@ def default_argument_parser():
...
@@ -43,25 +43,57 @@ def default_argument_parser():
"""
"""
parser
=
argparse
.
ArgumentParser
()
parser
=
argparse
.
ArgumentParser
()
# yapf: disable
train_group
=
parser
.
add_argument_group
(
train_group
=
parser
.
add_argument_group
(
title
=
'Train Options'
,
description
=
None
)
title
=
'Train Options'
,
description
=
None
)
train_group
.
add_argument
(
"--seed"
,
type
=
int
,
default
=
None
,
train_group
.
add_argument
(
help
=
"seed to use for paddle, np and random. None or 0 for random, else set seed."
)
"--seed"
,
train_group
.
add_argument
(
"--device"
,
type
=
str
,
default
=
'gpu'
,
choices
=
[
"cpu"
,
"gpu"
],
type
=
int
,
default
=
None
,
help
=
"seed to use for paddle, np and random. None or 0 for random, else set seed."
)
train_group
.
add_argument
(
"--device"
,
type
=
str
,
default
=
'gpu'
,
choices
=
[
"cpu"
,
"gpu"
],
help
=
"device cpu and gpu are supported."
)
help
=
"device cpu and gpu are supported."
)
train_group
.
add_argument
(
"--nprocs"
,
type
=
int
,
default
=
1
,
help
=
"number of parallel processes. 0 for cpu."
)
train_group
.
add_argument
(
train_group
.
add_argument
(
"--config"
,
metavar
=
"CONFIG_FILE"
,
help
=
"config file."
)
"--nprocs"
,
train_group
.
add_argument
(
"--output"
,
metavar
=
"CKPT_DIR"
,
help
=
"path to save checkpoint."
)
type
=
int
,
train_group
.
add_argument
(
"--checkpoint_path"
,
type
=
str
,
help
=
"path to load checkpoint"
)
default
=
1
,
train_group
.
add_argument
(
"--opts"
,
type
=
str
,
default
=
[],
nargs
=
'+'
,
help
=
"number of parallel processes. 0 for cpu."
)
help
=
"overwrite --config file, passing in LIST[KEY VALUE] pairs"
)
train_group
.
add_argument
(
train_group
.
add_argument
(
"--dump-config"
,
metavar
=
"FILE"
,
help
=
"dump config to `this` file."
)
"--config"
,
metavar
=
"CONFIG_FILE"
,
help
=
"config file."
)
train_group
.
add_argument
(
"--output"
,
metavar
=
"CKPT_DIR"
,
help
=
"path to save checkpoint."
)
train_group
.
add_argument
(
"--checkpoint_path"
,
type
=
str
,
help
=
"path to load checkpoint"
)
train_group
.
add_argument
(
"--opts"
,
type
=
str
,
default
=
[],
nargs
=
'+'
,
help
=
"overwrite --config file, passing in LIST[KEY VALUE] pairs"
)
train_group
.
add_argument
(
"--dump-config"
,
metavar
=
"FILE"
,
help
=
"dump config to `this` file."
)
bech_group
=
parser
.
add_argument_group
(
title
=
'Benchmark Options'
,
description
=
None
)
profile_group
=
parser
.
add_argument_group
(
bech_group
.
add_argument
(
'--profiler-options'
,
type
=
str
,
default
=
None
,
title
=
'Benchmark Options'
,
description
=
None
)
help
=
'The option of profiler, which should be in format
\"
key1=value1;key2=value2;key3=value3
\"
.'
)
profile_group
.
add_argument
(
bech_group
.
add_argument
(
'--benchmark-batch-size'
,
type
=
int
,
default
=
None
,
help
=
'batch size for benchmark.'
)
'--profiler-options'
,
bech_group
.
add_argument
(
'--benchmark-max-step'
,
type
=
int
,
default
=
None
,
help
=
'max iteration for benchmark.'
)
type
=
str
,
# yapd: enable
default
=
None
,
help
=
'The option of profiler, which should be in format
\"
key1=value1;key2=value2;key3=value3
\"
.'
)
profile_group
.
add_argument
(
'--benchmark-batch-size'
,
type
=
int
,
default
=
None
,
help
=
'batch size for benchmark.'
)
profile_group
.
add_argument
(
'--benchmark-max-step'
,
type
=
int
,
default
=
None
,
help
=
'max iteration for benchmark.'
)
return
parser
return
parser
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录