Hi team. thanks for great work.
I'm currently trying to construct seq2seq model with Bahdanau style, featured by bidirectional encoder - decoder using GRU cell.
This repository, however, doesn't seem to have GRU implementation, which now i'm trying to add.
(If you already have, it would be a lot of help for time saving..!)
Is it just the models.lua/make_lstm function that i need to modify?
And one more question is about bidirectional encoder:
The description of bidirectional encoder options' saying: "hidden states of the corresponding forward/backward LSTMs are added to obtain the hidden representation for that time step."
does it mean it literally adds two hidden states, not the normal concatenation scheme?
and if so, would it be compatible to other codes if i simply change the hidden representation into the concatenation of two hidden states?
thanks for the reply in advance
Hi team. thanks for great work.
I'm currently trying to construct seq2seq model with Bahdanau style, featured by bidirectional encoder - decoder using GRU cell.
This repository, however, doesn't seem to have GRU implementation, which now i'm trying to add.
(If you already have, it would be a lot of help for time saving..!)
Is it just the models.lua/make_lstm function that i need to modify?
And one more question is about bidirectional encoder:
The description of bidirectional encoder options' saying: "hidden states of the corresponding forward/backward LSTMs are added to obtain the hidden representation for that time step."
does it mean it literally adds two hidden states, not the normal concatenation scheme?
and if so, would it be compatible to other codes if i simply change the hidden representation into the concatenation of two hidden states?
thanks for the reply in advance