Forward and Backward Propagation in RNNs
In this lesson, we will discuss how the forward and backward weight updates take place in an RNN.
We'll cover the following...
Forward propagation
This is the process of calculating and storing the intermediate variables (including outputs) for the neural network in order from the input layer to the output layer. We will not discuss this in too much detail, as it is assumed you already have some background knowledge on this.
A simple architecture of an RNN is shown below:
Explanation:
- denotes the initial state of the network.
- , where M varies from 1 to N (number of cells), denotes the state of the previous cell’s output. This also denotes the information that has been read so far.
- , where M varies from 1 to N (number of input words), denotes the input at the time step.
- , where M varies from 1 to N (number of cells), denotes the output of the RNN cell.
To get a better understanding, let’s look at a single RNN cell as shown below.
Explanation: