Open 4floorer opened 5 years ago
Yes, I saw this mistake too.
I do not really understand your comment. Is it reverse because I used go_backwoards = True in lstm_1b?
If it is wrong, please let me know how to fix it.
Now I understand. I've been using it wrong so far.
I modified your model.py
code with your help.
Thank you.
Why not try Bidirectional
layer = Bidirectional(LSTM(256, return_sequences=True, kernel_initializer='he_normal'), merge_mode='concat')(layer)
Why not try Bidirectional
layer = Bidirectional(LSTM(256, return_sequences=True, kernel_initializer='he_normal'), merge_mode='concat')(layer)
I also wonder why.. Is there any problem with this?
Are you want to implement a bidirectional LSTM in the Model.py file between line 62 to 64? If the answer is YES. Here are a mistake of the Bi-LTSM's implementation.Did you forget to reverse the last_1b's output before input the add operation?