RNN/LSTM
Learn about recurrent neural networks and LSTM cells.
We'll cover the following...
Chapter Goals:
- Understand the differences between feed-forward and recurrent neural networks
- Learn about the long short-term memory (LSTM) cell
A. Neural network types
As mentioned in the previous chapter, the MLP is a type of feed-forward neural network. This means that each of its layers is a fixed size, and each layer's output is fed into the next layer as input. While feed-forward neural networks are great for tasks involving fixed size input data, they aren't as great in dealing with sequences of text data.
For the remainder of this course, we'll be focusing on recurrent neural networks, which are specially designed to work with sequential data of varying lengths. The main component of a recurrent neural ...