In the previous chapter, you have discovered two types of Recurrent Neural Network cells called SimpleRNN and GRU (Gated Recurrent Unit). In this chapter, you’ll discover a third type of cell called LSTM, for Long Short-Term Memory .
What Is LSTM
LSTMs as a third and last type of RNN cell are even more advanced than the GRU cell. If you remember from the last chapter, the SimpleRNN cell allows having recurrent architectures, by adding a feedback loop between consecutive values. It therefore is an improvement on “simple” ...