Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
75150327
Commit
75150327
authored
Jul 11, 2018
by
Haoliang Zhang
Committed by
Qianli Scott Zhu
Jul 11, 2018
Browse files
Fix typo in deep_speech (#4746)
* update * update * Update deep_speech.py
parent
d90f5580
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
research/README.md
research/README.md
+1
-0
research/deep_speech/deep_speech.py
research/deep_speech/deep_speech.py
+2
-2
research/deep_speech/deep_speech_model.py
research/deep_speech/deep_speech_model.py
+1
-1
research/deep_speech/requirements.txt
research/deep_speech/requirements.txt
+1
-0
No files found.
research/README.md
View file @
75150327
...
@@ -22,6 +22,7 @@ request.
...
@@ -22,6 +22,7 @@ request.
for visual navigation.
for visual navigation.
-
[
compression
](
compression
)
: compressing and decompressing images using a
-
[
compression
](
compression
)
: compressing and decompressing images using a
pre-trained Residual GRU network.
pre-trained Residual GRU network.
-
[
deep_speech
](
deep_speech
)
: automatic speech recognition.
-
[
deeplab
](
deeplab
)
: deep labeling for semantic image segmentation.
-
[
deeplab
](
deeplab
)
: deep labeling for semantic image segmentation.
-
[
delf
](
delf
)
: deep local features for image matching and retrieval.
-
[
delf
](
delf
)
: deep local features for image matching and retrieval.
-
[
differential_privacy
](
differential_privacy
)
: differential privacy for training
-
[
differential_privacy
](
differential_privacy
)
: differential privacy for training
...
...
research/deep_speech/deep_speech.py
View file @
75150327
...
@@ -326,12 +326,12 @@ def define_deep_speech_flags():
...
@@ -326,12 +326,12 @@ def define_deep_speech_flags():
# Deep speech flags
# Deep speech flags
flags
.
DEFINE_string
(
flags
.
DEFINE_string
(
name
=
"train_data_dir"
,
name
=
"train_data_dir"
,
default
=
"/tmp/librispeech_data/t
est
-clean/LibriSpeech/t
est
-clean
-20
.csv"
,
default
=
"/tmp/librispeech_data/t
rain
-clean/LibriSpeech/t
rain
-clean.csv"
,
help
=
flags_core
.
help_wrap
(
"The csv file path of train dataset."
))
help
=
flags_core
.
help_wrap
(
"The csv file path of train dataset."
))
flags
.
DEFINE_string
(
flags
.
DEFINE_string
(
name
=
"eval_data_dir"
,
name
=
"eval_data_dir"
,
default
=
"/tmp/librispeech_data/
test
-clean/LibriSpeech/
test
-clean
-20
.csv"
,
default
=
"/tmp/librispeech_data/
dev
-clean/LibriSpeech/
dev
-clean.csv"
,
help
=
flags_core
.
help_wrap
(
"The csv file path of evaluation dataset."
))
help
=
flags_core
.
help_wrap
(
"The csv file path of evaluation dataset."
))
flags
.
DEFINE_bool
(
flags
.
DEFINE_bool
(
...
...
research/deep_speech/deep_speech_model.py
View file @
75150327
...
@@ -60,7 +60,7 @@ def batch_norm(inputs, training):
...
@@ -60,7 +60,7 @@ def batch_norm(inputs, training):
def
_conv_bn_layer
(
inputs
,
padding
,
filters
,
kernel_size
,
strides
,
layer_id
,
def
_conv_bn_layer
(
inputs
,
padding
,
filters
,
kernel_size
,
strides
,
layer_id
,
training
):
training
):
"""Defines 2D con
stit
utional + batch normalization layer.
"""Defines 2D con
vol
utional + batch normalization layer.
Args:
Args:
inputs: input data for convolution layer.
inputs: input data for convolution layer.
...
...
research/deep_speech/requirements.txt
View file @
75150327
nltk>=3.3
nltk>=3.3
pandas>=0.23.3
soundfile>=0.10.2
soundfile>=0.10.2
sox>=1.3.3
sox>=1.3.3
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment