Implement a Keras Bidirectional LSTM on the IMDB Dataset
I have found that understanding context is everything when processing natural language. Standard LSTMs process text from left to right, but often, the meaning of a word depends on what comes after it. I remember the first time I switched from a simple LSTM to a Bidirectional LSTM; the accuracy jump on sentiment tasks was … Read more >>