Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLSTM implementation in keras_lib #391

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update model.py
Correct BLSTM implementation in keras_lib
cveaux authored Sep 3, 2018
commit 48e5f4ef173cbbb4e258c1ae744c5e405f5b88fe
10 changes: 5 additions & 5 deletions src/keras_lib/model.py
Original file line number Diff line number Diff line change
@@ -134,12 +134,12 @@ def define_sequence_model(self):
units=self.hidden_layer_size[i],
input_shape=(None, input_size),
return_sequences=True))
elif self.hidden_layer_type[i]=='blstm':
self.model.add(LSTM(
elif self.hidden_layer_type[i] == 'blstm':
self.model.add(Bidirectional(LSTM(
units=self.hidden_layer_size[i],
input_shape=(None, input_size),
return_sequences=True,
go_backwards=True))
return_sequences=True),
input_shape=(None, input_size),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you fix indentation please

merge_mode='concat'))
else:
self.model.add(Dense(
units=self.hidden_layer_size[i],