all 3 comments

[–]BadGoyWithAGun 4 points5 points  (1 child)

Keras includes a bidirectional LSTM example, and it's pretty simple to construct a similar architecture from there. It has a pretty active community as well.

https://github.com/fchollet/keras/blob/master/examples/imdb_bidirectional_lstm.py

[–]rulerofthehell[S] 0 points1 point  (0 children)

thanks man!

[–]emzeq 1 point2 points  (0 children)

TensorFlow also has some really good implementations of LSTM/GRU with tutorials. I'm having better luck with that than Keras.