In this recipe, we will learn how to use a simple RNN implementation of Keras to predict sales based on a historical dataset.
RNNs are a class of artificial neural network where connections between nodes of the network form a directed graph along a sequence. This topology allows it to exhibit dynamic temporal behavior for input of the time sequence type. Unlike feedforward neural networks, RNNs can use their internal state (also called memory) to process sequences of inputs. This makes them suitable for tasks such as unsegmented, connected handwriting recognition or speech recognition.
A simple RNN is implemented as part of the keras.layers.SimpleRNN class as follows:
keras.layers.SimpleRNN(units, activation='tanh',
use_bias=True,
kernel_initializer='glorot_uniform',
recurrent_initializer='orthogonal...