Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.pad.voice
Commits
55fd8a26
Commit
55fd8a26
authored
Dec 04, 2017
by
Pavel KORSHUNOV
Browse files
small typo
parent
690b5fcd
Pipeline
#14542
passed with stages
in 6 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/pad/voice/algorithm/LSTMEval.py
View file @
55fd8a26
...
...
@@ -135,10 +135,12 @@ class LSTMEval(Algorithm):
frames
,
_
=
self
.
data_reader
.
split_features_in_windows
(
features
=
feature
,
label
=
1
,
win_size
=
self
.
num_time_steps
,
sliding_step
=
1
)
logger
.
info
(
" .... And frames of shape {0} are extracted to pass into DNN model"
.
format
(
frames
.
shape
))
#
logger.info(" .... And frames of shape {0} are extracted to pass into DNN model".format(frames.shape))
if
frames
is
None
:
return
None
logger
.
info
(
" .... And frames of shape {0} are extracted to pass into DNN model"
.
format
(
frames
.
shape
))
projections
=
numpy
.
zeros
((
len
(
frames
),
2
),
dtype
=
numpy
.
float32
)
for
i
in
range
(
frames
.
shape
[
0
]):
frame
=
frames
[
i
]
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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