Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
1a319fbf
M
models
项目概览
PaddlePaddle
/
models
大约 2 年 前同步成功
通知
232
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
1a319fbf
编写于
6月 07, 2017
作者:
D
dangqingqing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Support variable input batch and sortagrad.
上级
72874de9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
62 addition
and
55 deletion
+62
-55
deep_speech_2/audio_data_utils.py
deep_speech_2/audio_data_utils.py
+40
-16
deep_speech_2/train.py
deep_speech_2/train.py
+22
-39
未找到文件。
deep_speech_2/audio_data_utils.py
浏览文件 @
1a319fbf
...
@@ -8,6 +8,7 @@ import json
...
@@ -8,6 +8,7 @@ import json
import
random
import
random
import
soundfile
import
soundfile
import
numpy
as
np
import
numpy
as
np
import
itertools
import
os
import
os
RANDOM_SEED
=
0
RANDOM_SEED
=
0
...
@@ -62,6 +63,7 @@ class DataGenerator(object):
...
@@ -62,6 +63,7 @@ class DataGenerator(object):
self
.
__stride_ms__
=
stride_ms
self
.
__stride_ms__
=
stride_ms
self
.
__window_ms__
=
window_ms
self
.
__window_ms__
=
window_ms
self
.
__max_frequency__
=
max_frequency
self
.
__max_frequency__
=
max_frequency
self
.
__epoc__
=
0
self
.
__random__
=
random
.
Random
(
RANDOM_SEED
)
self
.
__random__
=
random
.
Random
(
RANDOM_SEED
)
# load vocabulary (dictionary)
# load vocabulary (dictionary)
self
.
__vocab_dict__
,
self
.
__vocab_list__
=
\
self
.
__vocab_dict__
,
self
.
__vocab_list__
=
\
...
@@ -245,9 +247,33 @@ class DataGenerator(object):
...
@@ -245,9 +247,33 @@ class DataGenerator(object):
new_batch
.
append
((
padded_audio
,
text
))
new_batch
.
append
((
padded_audio
,
text
))
return
new_batch
return
new_batch
def
__batch_shuffle__
(
self
,
manifest
,
batch_size
):
"""
1. Sort the audio clips by duration.
2. Generate a random number `k`, k in [0, batch_size).
3. Randomly remove `k` instances in order to make different mini-batches,
then make minibatches and each minibatch size is batch_size.
4. Shuffle the minibatches.
:param manifest: manifest file.
:type manifest: list
:param batch_size: batch size.
:type batch_size: int
"""
manifest
.
sort
(
key
=
lambda
x
:
x
[
"duration"
])
shift_len
=
self
.
__random__
.
randint
(
0
,
batch_size
-
1
)
batch_manifest
=
zip
(
*
[
iter
(
manifest
[
shift_len
:])]
*
batch_size
)
self
.
__random__
.
shuffle
(
batch_manifest
)
batch_manifest
=
list
(
sum
(
batch_manifest
,
()))
res_len
=
len
(
manifest
)
-
shift_len
-
len
(
batch_manifest
)
batch_manifest
.
extend
(
manifest
[
-
res_len
:])
batch_manifest
.
extend
(
manifest
[
0
:
shift_len
])
return
batch_manifest
def
instance_reader_creator
(
self
,
def
instance_reader_creator
(
self
,
manifest_path
,
manifest_path
,
sort_by_duration
=
True
,
batch_size
,
sortagrad
=
True
,
shuffle
=
False
):
shuffle
=
False
):
"""
"""
Instance reader creator for audio data. Creat a callable function to
Instance reader creator for audio data. Creat a callable function to
...
@@ -258,18 +284,14 @@ class DataGenerator(object):
...
@@ -258,18 +284,14 @@ class DataGenerator(object):
:param manifest_path: Filepath of manifest for audio clip files.
:param manifest_path: Filepath of manifest for audio clip files.
:type manifest_path: basestring
:type manifest_path: basestring
:param sort
_by_duration: Sort the audio clips by duration if set True
:param sort
agrad: Sort the audio clips by duration in the first epoc
(for SortaGrad)
.
if set True
.
:type sort
_by_duration
: bool
:type sort
agrad
: bool
:param shuffle: Shuffle the audio clips if set True.
:param shuffle: Shuffle the audio clips if set True.
:type shuffle: bool
:type shuffle: bool
:return: Data reader function.
:return: Data reader function.
:rtype: callable
:rtype: callable
"""
"""
if
sort_by_duration
and
shuffle
:
sort_by_duration
=
False
logger
.
warn
(
"When shuffle set to true, "
"sort_by_duration is forced to set False."
)
def
reader
():
def
reader
():
# read manifest
# read manifest
...
@@ -278,16 +300,17 @@ class DataGenerator(object):
...
@@ -278,16 +300,17 @@ class DataGenerator(object):
max_duration
=
self
.
__max_duration__
,
max_duration
=
self
.
__max_duration__
,
min_duration
=
self
.
__min_duration__
)
min_duration
=
self
.
__min_duration__
)
# sort (by duration) or shuffle manifest
# sort (by duration) or shuffle manifest
if
s
ort_by_duration
:
if
s
elf
.
__epoc__
==
0
and
sortagrad
:
manifest
.
sort
(
key
=
lambda
x
:
x
[
"duration"
])
manifest
.
sort
(
key
=
lambda
x
:
x
[
"duration"
])
if
shuffle
:
el
if
shuffle
:
self
.
__random__
.
shuffle
(
manifest
)
manifest
=
self
.
__batch_shuffle__
(
manifest
,
batch_size
)
# extract spectrogram feature
# extract spectrogram feature
for
instance
in
manifest
:
for
instance
in
manifest
:
spectrogram
=
self
.
__audio_featurize__
(
spectrogram
=
self
.
__audio_featurize__
(
instance
[
"audio_filepath"
])
instance
[
"audio_filepath"
])
transcript
=
self
.
__text_featurize__
(
instance
[
"text"
])
transcript
=
self
.
__text_featurize__
(
instance
[
"text"
])
yield
(
spectrogram
,
transcript
)
yield
(
spectrogram
,
transcript
)
self
.
__epoc__
+=
1
return
reader
return
reader
...
@@ -296,7 +319,7 @@ class DataGenerator(object):
...
@@ -296,7 +319,7 @@ class DataGenerator(object):
batch_size
,
batch_size
,
padding_to
=-
1
,
padding_to
=-
1
,
flatten
=
False
,
flatten
=
False
,
sort
_by_duration
=
Tru
e
,
sort
agrad
=
Fals
e
,
shuffle
=
False
):
shuffle
=
False
):
"""
"""
Batch data reader creator for audio data. Creat a callable function to
Batch data reader creator for audio data. Creat a callable function to
...
@@ -317,9 +340,9 @@ class DataGenerator(object):
...
@@ -317,9 +340,9 @@ class DataGenerator(object):
:param flatten: If set True, audio data will be flatten to be a 1-dim
:param flatten: If set True, audio data will be flatten to be a 1-dim
ndarray. Otherwise, 2-dim ndarray. Default is False.
ndarray. Otherwise, 2-dim ndarray. Default is False.
:type flatten: bool
:type flatten: bool
:param sort
_by_duration: Sort the audio clips by duration if set True
:param sort
agrad: Sort the audio clips by duration in the first epoc
(for SortaGrad)
.
if set True
.
:type sort
_by_duration
: bool
:type sort
agrad
: bool
:param shuffle: Shuffle the audio clips if set True.
:param shuffle: Shuffle the audio clips if set True.
:type shuffle: bool
:type shuffle: bool
:return: Batch reader function, producing batches of data when called.
:return: Batch reader function, producing batches of data when called.
...
@@ -329,7 +352,8 @@ class DataGenerator(object):
...
@@ -329,7 +352,8 @@ class DataGenerator(object):
def
batch_reader
():
def
batch_reader
():
instance_reader
=
self
.
instance_reader_creator
(
instance_reader
=
self
.
instance_reader_creator
(
manifest_path
=
manifest_path
,
manifest_path
=
manifest_path
,
sort_by_duration
=
sort_by_duration
,
batch_size
=
batch_size
,
sortagrad
=
sortagrad
,
shuffle
=
shuffle
)
shuffle
=
shuffle
)
batch
=
[]
batch
=
[]
for
instance
in
instance_reader
():
for
instance
in
instance_reader
():
...
...
deep_speech_2/train.py
浏览文件 @
1a319fbf
...
@@ -85,23 +85,27 @@ def train():
...
@@ -85,23 +85,27 @@ def train():
"""
"""
DeepSpeech2 training.
DeepSpeech2 training.
"""
"""
# initialize data generator
# initialize data generator
data_generator
=
DataGenerator
(
def
data_generator
():
vocab_filepath
=
args
.
vocab_filepath
,
return
DataGenerator
(
normalizer_manifest_path
=
args
.
normalizer_manifest_path
,
vocab_filepath
=
args
.
vocab_filepath
,
normalizer_num_samples
=
200
,
normalizer_manifest_path
=
args
.
normalizer_manifest_path
,
max_duration
=
20.0
,
normalizer_num_samples
=
200
,
min_duration
=
0.0
,
max_duration
=
20.0
,
stride_ms
=
10
,
min_duration
=
0.0
,
window_ms
=
20
)
stride_ms
=
10
,
window_ms
=
20
)
train_generator
=
data_generator
()
test_generator
=
data_generator
()
# create network config
# create network config
dict_size
=
data_generator
.
vocabulary_size
()
dict_size
=
train_generator
.
vocabulary_size
()
# paddle.data_type.dense_array is used for variable batch input.
# the size 161 * 161 is only an placeholder value and the real shape
# of input batch data will be set at each batch.
audio_data
=
paddle
.
layer
.
data
(
audio_data
=
paddle
.
layer
.
data
(
name
=
"audio_spectrogram"
,
name
=
"audio_spectrogram"
,
type
=
paddle
.
data_type
.
dense_array
(
161
*
161
))
height
=
161
,
width
=
2000
,
type
=
paddle
.
data_type
.
dense_vector
(
322000
))
text_data
=
paddle
.
layer
.
data
(
text_data
=
paddle
.
layer
.
data
(
name
=
"transcript_text"
,
name
=
"transcript_text"
,
type
=
paddle
.
data_type
.
integer_value_sequence
(
dict_size
))
type
=
paddle
.
data_type
.
integer_value_sequence
(
dict_size
))
...
@@ -122,28 +126,16 @@ def train():
...
@@ -122,28 +126,16 @@ def train():
cost
=
cost
,
parameters
=
parameters
,
update_equation
=
optimizer
)
cost
=
cost
,
parameters
=
parameters
,
update_equation
=
optimizer
)
# prepare data reader
# prepare data reader
train_batch_reader_sortagrad
=
data_generator
.
batch_reader_creator
(
train_batch_reader
=
train_generator
.
batch_reader_creator
(
manifest_path
=
args
.
train_manifest_path
,
batch_size
=
args
.
batch_size
,
padding_to
=
2000
,
flatten
=
True
,
sort_by_duration
=
True
,
shuffle
=
False
)
train_batch_reader_nosortagrad
=
data_generator
.
batch_reader_creator
(
manifest_path
=
args
.
train_manifest_path
,
manifest_path
=
args
.
train_manifest_path
,
batch_size
=
args
.
batch_size
,
batch_size
=
args
.
batch_size
,
padding_to
=
2000
,
sortagrad
=
True
,
flatten
=
True
,
sort_by_duration
=
False
,
shuffle
=
True
)
shuffle
=
True
)
test_batch_reader
=
data
_generator
.
batch_reader_creator
(
test_batch_reader
=
test
_generator
.
batch_reader_creator
(
manifest_path
=
args
.
dev_manifest_path
,
manifest_path
=
args
.
dev_manifest_path
,
batch_size
=
args
.
batch_size
,
batch_size
=
args
.
batch_size
,
padding_to
=
2000
,
flatten
=
True
,
sort_by_duration
=
False
,
shuffle
=
False
)
shuffle
=
False
)
feeding
=
data
_generator
.
data_name_feeding
()
feeding
=
train
_generator
.
data_name_feeding
()
# create event handler
# create event handler
def
event_handler
(
event
):
def
event_handler
(
event
):
...
@@ -169,17 +161,8 @@ def train():
...
@@ -169,17 +161,8 @@ def train():
time
.
time
()
-
start_time
,
event
.
pass_id
,
result
.
cost
)
time
.
time
()
-
start_time
,
event
.
pass_id
,
result
.
cost
)
# run train
# run train
# first pass with sortagrad
if
args
.
use_sortagrad
:
trainer
.
train
(
reader
=
train_batch_reader_sortagrad
,
event_handler
=
event_handler
,
num_passes
=
1
,
feeding
=
feeding
)
args
.
num_passes
-=
1
# other passes without sortagrad
trainer
.
train
(
trainer
.
train
(
reader
=
train_batch_reader
_nosortagrad
,
reader
=
train_batch_reader
,
event_handler
=
event_handler
,
event_handler
=
event_handler
,
num_passes
=
args
.
num_passes
,
num_passes
=
args
.
num_passes
,
feeding
=
feeding
)
feeding
=
feeding
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录