Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
dde3267e
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看板
未验证
提交
dde3267e
编写于
8月 24, 2021
作者:
H
Hui Zhang
提交者:
GitHub
8月 24, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #783 from Jackwaterveg/ds2_online
修正了seed功能
上级
7840806b
40466ef6
变更
14
显示空白变更内容
内联
并排
Showing
14 changed file
with
135 addition
and
36 deletion
+135
-36
deepspeech/exps/deepspeech2/bin/train.py
deepspeech/exps/deepspeech2/bin/train.py
+0
-4
deepspeech/exps/deepspeech2/model.py
deepspeech/exps/deepspeech2/model.py
+0
-9
deepspeech/training/cli.py
deepspeech/training/cli.py
+16
-13
deepspeech/training/trainer.py
deepspeech/training/trainer.py
+9
-0
examples/aishell/s0/local/train.sh
examples/aishell/s0/local/train.sh
+11
-1
examples/aishell/s1/local/train.sh
examples/aishell/s1/local/train.sh
+11
-1
examples/callcenter/s1/local/train.sh
examples/callcenter/s1/local/train.sh
+11
-1
examples/librispeech/s0/local/train.sh
examples/librispeech/s0/local/train.sh
+11
-1
examples/librispeech/s1/local/train.sh
examples/librispeech/s1/local/train.sh
+11
-1
examples/librispeech/s2/local/train.sh
examples/librispeech/s2/local/train.sh
+11
-1
examples/ted_en_zh/t0/local/train.sh
examples/ted_en_zh/t0/local/train.sh
+11
-1
examples/timit/s1/local/train.sh
examples/timit/s1/local/train.sh
+11
-1
examples/tiny/s0/local/train.sh
examples/tiny/s0/local/train.sh
+11
-1
examples/tiny/s1/local/train.sh
examples/tiny/s1/local/train.sh
+11
-1
未找到文件。
deepspeech/exps/deepspeech2/bin/train.py
浏览文件 @
dde3267e
...
@@ -12,8 +12,6 @@
...
@@ -12,8 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
"""Trainer for DeepSpeech2 model."""
"""Trainer for DeepSpeech2 model."""
import
os
from
paddle
import
distributed
as
dist
from
paddle
import
distributed
as
dist
from
deepspeech.exps.deepspeech2.config
import
get_cfg_defaults
from
deepspeech.exps.deepspeech2.config
import
get_cfg_defaults
...
@@ -55,7 +53,5 @@ if __name__ == "__main__":
...
@@ -55,7 +53,5 @@ if __name__ == "__main__":
if
args
.
dump_config
:
if
args
.
dump_config
:
with
open
(
args
.
dump_config
,
'w'
)
as
f
:
with
open
(
args
.
dump_config
,
'w'
)
as
f
:
print
(
config
,
file
=
f
)
print
(
config
,
file
=
f
)
if
config
.
training
.
seed
is
not
None
:
os
.
environ
.
setdefault
(
'FLAGS_cudnn_deterministic'
,
'True'
)
main
(
config
,
args
)
main
(
config
,
args
)
deepspeech/exps/deepspeech2/model.py
浏览文件 @
dde3267e
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
"""Contains DeepSpeech2 and DeepSpeech2Online model."""
"""Contains DeepSpeech2 and DeepSpeech2Online model."""
import
random
import
time
import
time
from
collections
import
defaultdict
from
collections
import
defaultdict
from
pathlib
import
Path
from
pathlib
import
Path
...
@@ -54,7 +53,6 @@ class DeepSpeech2Trainer(Trainer):
...
@@ -54,7 +53,6 @@ class DeepSpeech2Trainer(Trainer):
weight_decay
=
1e-6
,
# the coeff of weight decay
weight_decay
=
1e-6
,
# the coeff of weight decay
global_grad_clip
=
5.0
,
# the global norm clip
global_grad_clip
=
5.0
,
# the global norm clip
n_epoch
=
50
,
# train epochs
n_epoch
=
50
,
# train epochs
seed
=
1024
,
#train seed
))
))
if
config
is
not
None
:
if
config
is
not
None
:
...
@@ -63,13 +61,6 @@ class DeepSpeech2Trainer(Trainer):
...
@@ -63,13 +61,6 @@ class DeepSpeech2Trainer(Trainer):
def
__init__
(
self
,
config
,
args
):
def
__init__
(
self
,
config
,
args
):
super
().
__init__
(
config
,
args
)
super
().
__init__
(
config
,
args
)
if
config
.
training
.
seed
is
not
None
:
self
.
set_seed
(
config
.
training
.
seed
)
def
set_seed
(
self
,
seed
):
np
.
random
.
seed
(
seed
)
random
.
seed
(
seed
)
paddle
.
seed
(
seed
)
def
train_batch
(
self
,
batch_index
,
batch_data
,
msg
):
def
train_batch
(
self
,
batch_index
,
batch_data
,
msg
):
start
=
time
.
time
()
start
=
time
.
time
()
...
...
deepspeech/training/cli.py
浏览文件 @
dde3267e
...
@@ -62,6 +62,9 @@ def default_argument_parser():
...
@@ -62,6 +62,9 @@ def default_argument_parser():
# help="options to overwrite --config file and the default config, passing in KEY VALUE pairs")
# help="options to overwrite --config file and the default config, passing in KEY VALUE pairs")
parser
.
add_argument
(
"--opts"
,
type
=
str
,
default
=
[],
nargs
=
'+'
,
parser
.
add_argument
(
"--opts"
,
type
=
str
,
default
=
[],
nargs
=
'+'
,
help
=
"options to overwrite --config file and the default config, passing in KEY VALUE pairs"
)
help
=
"options to overwrite --config file and the default config, passing in KEY VALUE pairs"
)
parser
.
add_argument
(
"--seed"
,
type
=
int
,
default
=
None
,
help
=
"seed to use for paddle, np and random. The default value is None"
)
# yapd: enable
# yapd: enable
return
parser
return
parser
deepspeech/training/trainer.py
浏览文件 @
dde3267e
...
@@ -11,9 +11,11 @@
...
@@ -11,9 +11,11 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
import
random
import
time
import
time
from
pathlib
import
Path
from
pathlib
import
Path
import
numpy
as
np
import
paddle
import
paddle
from
paddle
import
distributed
as
dist
from
paddle
import
distributed
as
dist
from
tensorboardX
import
SummaryWriter
from
tensorboardX
import
SummaryWriter
...
@@ -93,6 +95,13 @@ class Trainer():
...
@@ -93,6 +95,13 @@ class Trainer():
self
.
checkpoint_dir
=
None
self
.
checkpoint_dir
=
None
self
.
iteration
=
0
self
.
iteration
=
0
self
.
epoch
=
0
self
.
epoch
=
0
if
args
.
seed
is
not
None
:
self
.
set_seed
(
args
.
seed
)
def
set_seed
(
self
,
seed
):
np
.
random
.
seed
(
seed
)
random
.
seed
(
seed
)
paddle
.
seed
(
seed
)
def
setup
(
self
):
def
setup
(
self
):
"""Setup the experiment.
"""Setup the experiment.
...
...
examples/aishell/s0/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,12 +19,22 @@ fi
...
@@ -19,12 +19,22 @@ fi
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--output
exp/
${
ckpt_name
}
\
--model_type
${
model_type
}
--model_type
${
model_type
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/aishell/s1/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/callcenter/s1/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/librispeech/s0/local/train.sh
浏览文件 @
dde3267e
...
@@ -20,12 +20,22 @@ echo "using ${device}..."
...
@@ -20,12 +20,22 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--output
exp/
${
ckpt_name
}
\
--model_type
${
model_type
}
--model_type
${
model_type
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/librispeech/s1/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/librispeech/s2/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,12 +19,22 @@ echo "using ${device}..."
...
@@ -19,12 +19,22 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--model-name
u2_kaldi
\
--model-name
u2_kaldi
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/ted_en_zh/t0/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/timit/s1/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
...
@@ -19,11 +19,21 @@ echo "using ${device}..."
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/tiny/s0/local/train.sh
浏览文件 @
dde3267e
...
@@ -19,12 +19,22 @@ fi
...
@@ -19,12 +19,22 @@ fi
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
\
--output
exp/
${
ckpt_name
}
\
--model_type
${
model_type
}
--model_type
${
model_type
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
examples/tiny/s1/local/train.sh
浏览文件 @
dde3267e
...
@@ -18,11 +18,21 @@ fi
...
@@ -18,11 +18,21 @@ fi
mkdir
-p
exp
mkdir
-p
exp
seed
=
1024
if
[
${
seed
}
]
;
then
export
FLAGS_cudnn_deterministic
=
True
fi
python3
-u
${
BIN_DIR
}
/train.py
\
python3
-u
${
BIN_DIR
}
/train.py
\
--device
${
device
}
\
--device
${
device
}
\
--nproc
${
ngpu
}
\
--nproc
${
ngpu
}
\
--config
${
config_path
}
\
--config
${
config_path
}
\
--output
exp/
${
ckpt_name
}
--output
exp/
${
ckpt_name
}
\
--seed
${
seed
}
if
[
${
seed
}
]
;
then
unset
FLAGS_cudnn_deterministic
fi
if
[
$?
-ne
0
]
;
then
if
[
$?
-ne
0
]
;
then
echo
"Failed in training!"
echo
"Failed in training!"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录