Recurrent Layer#

Note

A neural network that use recurrent layers is often called a RNN, a recurrent neural network.

What do recurrent layers do?#

Recurrent layer transform an input many times. Everytime an input is transformed, the output is fed back into the recurrent layer to process again (with some new inputs).

When to use recurrent layers?#

Recurrent layers are really good at predicting what’s happening next. Because it’s like seeing all the past things and then predict the next thing that happens. We usually use it in sequence processing, whether that’s text or voice or videos, anything that’s time related.