import torch4.3 Forward Propagation, Backward Propagation, and Computational Graphs
So far, we have trained our models with minibatch stochastic gradient descent. However, when we implemented the algorithm, we only worried about the calculations involved in forward propagation through the model. When it came time to calculate the gradients, we just invoked the backpropagation function provided by the deep learning framework.
The automatic calculation of gradients simplifies the implementation of deep learning algorithms. Before automatic differentiation, even small changes to complicated models required recalculating complicated derivatives by hand. Surprisingly often, academic papers had to allocate numerous pages to deriving update rules. While we must continue to rely on automatic differentiation so we can focus on the interesting parts, you ought to know how these gradients are calculated under the hood if you want to go beyond a shallow understanding of deep learning.
In this section, we take a deep dive into the details of backward propagation (more commonly called backpropagation). To convey some insight for both the techniques and their implementations, we rely on some basic mathematics and computational graphs. To start, we focus our exposition on a one-hidden-layer MLP with weight decay (\(\ell_2\) regularization, introduced in Section 2.7).
4.3.1 Forward Propagation
Forward propagation (or forward pass) refers to the calculation and storage of intermediate variables (including outputs) for a neural network in order from the input layer to the output layer. We now work step-by-step through the mechanics of a neural network with one hidden layer. This may seem tedious but in the eternal words of funk virtuoso James Brown, you must “pay the cost to be the boss”.
For the sake of simplicity, let’s assume that the input example is \(\mathbf{x}\in \mathbb{R}^d\) and that our hidden layer does not include a bias term. Note a switch of convention: Section 4.1 processed a minibatch of rows via \(\mathbf{X}\mathbf{W}\), whereas here we track a single example as a column vector acted on from the left, \(\mathbf{W}\mathbf{x}\), so every weight matrix in this section is transposed relative to its counterpart there. Here the intermediate variable is:
\[\mathbf{z}= \mathbf{W}^{(1)} \mathbf{x}, \tag{4.3.1}\]
where \(\mathbf{W}^{(1)} \in \mathbb{R}^{h \times d}\) is the weight parameter of the hidden layer. After running the intermediate variable \(\mathbf{z}\in \mathbb{R}^h\) through the activation function \(\phi\) we obtain our hidden activation vector of length \(h\):
\[\mathbf{h}= \phi (\mathbf{z}). \tag{4.3.2}\]
The hidden layer output \(\mathbf{h}\) is also an intermediate variable. Assuming that the parameters of the output layer possess only a weight of \(\mathbf{W}^{(2)} \in \mathbb{R}^{q \times h}\), we can obtain an output layer variable with a vector of length \(q\):
\[\mathbf{o}= \mathbf{W}^{(2)} \mathbf{h}. \tag{4.3.3}\]
Assuming that the loss function is \(l\) and the example label is \(y\), we can then calculate the loss term for a single data example,
\[L = l(\mathbf{o}, y). \tag{4.3.4}\]
Recall the \(\ell_2\) regularization term (Section 2.7): given the hyperparameter \(\lambda\), the regularization term is
\[s = \frac{\lambda}{2} \left(\|\mathbf{W}^{(1)}\|_\textrm{F}^2 + \|\mathbf{W}^{(2)}\|_\textrm{F}^2\right), \tag{4.3.5}\]
where the Frobenius norm of the matrix is simply the \(\ell_2\) norm applied after flattening the matrix into a vector. Finally, the model’s regularized loss on a given data example is:
\[J = L + s.\]
We refer to \(J\) as the objective function in the following discussion.
4.3.2 Computational Graph of Forward Propagation
Plotting computational graphs helps us visualize the dependencies of operators and variables within the calculation. Figure 4.3.1 contains the graph associated with the simple network described above, where squares denote variables and circles denote operators. The lower-left corner signifies the input and the upper-right corner is the output. Notice that the directions of the arrows (which illustrate data flow) are primarily rightward and upward.
4.3.3 Backpropagation
Backpropagation refers to the method of calculating the gradient of neural network parameters. In short, the method traverses the network in reverse order, from the output to the input layer, according to the chain rule from calculus (Chapter 24). The algorithm stores any intermediate variables (partial derivatives) required while calculating the gradient with respect to some parameters. Assume that we have functions \(\mathsf{Y}=f(\mathsf{X})\) and \(\mathsf{Z}=g(\mathsf{Y})\), in which the input and the output \(\mathsf{X}, \mathsf{Y}, \mathsf{Z}\) are tensors of arbitrary shapes. By using the chain rule, we can compute the derivative of \(\mathsf{Z}\) with respect to \(\mathsf{X}\) via
\[\frac{\partial \mathsf{Z}}{\partial \mathsf{X}} = \textrm{prod}\left(\frac{\partial \mathsf{Z}}{\partial \mathsf{Y}}, \frac{\partial \mathsf{Y}}{\partial \mathsf{X}}\right). \tag{4.3.6}\]
Here we use the \(\textrm{prod}\) operator to multiply its arguments after the necessary operations, such as transposition and swapping input positions, have been carried out. For vectors, this is straightforward: it is simply matrix–matrix multiplication. For higher dimensional tensors, we use the appropriate counterpart. The operator \(\textrm{prod}\) hides all the notational overhead; what it computes is made precise as vector–Jacobian products in Section 24.3.
Recall that the parameters of the simple network with one hidden layer, whose computational graph is in Figure 4.3.1, are \(\mathbf{W}^{(1)}\) and \(\mathbf{W}^{(2)}\). The objective of backpropagation is to calculate the gradients \(\partial J/\partial \mathbf{W}^{(1)}\) and \(\partial J/\partial \mathbf{W}^{(2)}\). To accomplish this, we apply the chain rule and calculate, in turn, the gradient of each intermediate variable and parameter. The order of calculations is reversed relative to those performed in forward propagation, since we need to start with the outcome of the computational graph and work our way towards the parameters. The first step is to calculate the gradients of the objective function \(J=L+s\) with respect to the loss term \(L\) and the regularization term \(s\):
\[\frac{\partial J}{\partial L} = 1 \; \textrm{and} \; \frac{\partial J}{\partial s} = 1. \tag{4.3.7}\]
Next, we compute the gradient of the objective function with respect to the output-layer variable \(\mathbf{o}\) according to the chain rule:
\[ \frac{\partial J}{\partial \mathbf{o}} = \textrm{prod}\left(\frac{\partial J}{\partial L}, \frac{\partial L}{\partial \mathbf{o}}\right) = \frac{\partial L}{\partial \mathbf{o}} \in \mathbb{R}^q. \]
Next, we calculate the gradients of the regularization term with respect to both parameters:
\[\frac{\partial s}{\partial \mathbf{W}^{(1)}} = \lambda \mathbf{W}^{(1)} \; \textrm{and} \; \frac{\partial s}{\partial \mathbf{W}^{(2)}} = \lambda \mathbf{W}^{(2)}. \tag{4.3.8}\]
Now we are able to calculate the gradient \(\partial J/\partial \mathbf{W}^{(2)} \in \mathbb{R}^{q \times h}\) of the model parameters closest to the output layer. Using the chain rule yields:
\[\frac{\partial J}{\partial \mathbf{W}^{(2)}}= \textrm{prod}\left(\frac{\partial J}{\partial \mathbf{o}}, \frac{\partial \mathbf{o}}{\partial \mathbf{W}^{(2)}}\right) + \textrm{prod}\left(\frac{\partial J}{\partial s}, \frac{\partial s}{\partial \mathbf{W}^{(2)}}\right)= \frac{\partial J}{\partial \mathbf{o}} \mathbf{h}^\top + \lambda \mathbf{W}^{(2)}. \tag{4.3.9}\]
The “+” in Equation 4.3.9 encodes a general rule: when a variable reaches the output along several paths, its gradient is the sum of the gradients arriving along each path. Here \(\mathbf{W}^{(2)}\) affects \(J\) twice, through the prediction path \(J \leftarrow L \leftarrow \mathbf{o} \leftarrow \mathbf{W}^{(2)}\) and through the regularizer path \(J \leftarrow s \leftarrow \mathbf{W}^{(2)}\), and the two contributions add. Forgetting to accumulate at such forks (overwriting instead of adding) is among the most common bugs in hand-written backward passes.
To obtain the gradient with respect to \(\mathbf{W}^{(1)}\) we need to continue backpropagation along the output layer to the hidden layer. The gradient with respect to the hidden layer output \(\partial J/\partial \mathbf{h} \in \mathbb{R}^h\) is given by
\[ \frac{\partial J}{\partial \mathbf{h}} = \textrm{prod}\left(\frac{\partial J}{\partial \mathbf{o}}, \frac{\partial \mathbf{o}}{\partial \mathbf{h}}\right) = {\mathbf{W}^{(2)}}^\top \frac{\partial J}{\partial \mathbf{o}}. \]
Since the activation function \(\phi\) applies elementwise, calculating the gradient \(\partial J/\partial \mathbf{z} \in \mathbb{R}^h\) of the intermediate variable \(\mathbf{z}\) requires that we use the elementwise multiplication operator, which we denote by \(\odot\):
\[ \frac{\partial J}{\partial \mathbf{z}} = \textrm{prod}\left(\frac{\partial J}{\partial \mathbf{h}}, \frac{\partial \mathbf{h}}{\partial \mathbf{z}}\right) = \frac{\partial J}{\partial \mathbf{h}} \odot \phi'\left(\mathbf{z}\right). \]
Finally, we can obtain the gradient \(\partial J/\partial \mathbf{W}^{(1)} \in \mathbb{R}^{h \times d}\) of the model parameters closest to the input layer. According to the chain rule, we get
\[ \frac{\partial J}{\partial \mathbf{W}^{(1)}} = \textrm{prod}\left(\frac{\partial J}{\partial \mathbf{z}}, \frac{\partial \mathbf{z}}{\partial \mathbf{W}^{(1)}}\right) + \textrm{prod}\left(\frac{\partial J}{\partial s}, \frac{\partial s}{\partial \mathbf{W}^{(1)}}\right) = \frac{\partial J}{\partial \mathbf{z}} \mathbf{x}^\top + \lambda \mathbf{W}^{(1)}. \]
4.3.3.1 A Worked Example
Symbols can hide what backpropagation actually does, so let us push real numbers through a graph. We follow the one rule that produced every equation above: at each node, multiply the gradient arriving from downstream by the node’s local derivative.
Start with the simplest non-trivial graph, \(e = (a + b)\,c\), evaluated at \(a = 2\), \(b = 1\), \(c = -3\). The forward pass computes the intermediate \(d = a + b = 3\) and then \(e = d\,c = -9\). For the backward pass we seed \(\partial e/\partial e = 1\) and walk back. The multiply node \(e = d\,c\) has local derivatives \(\partial e/\partial d = c = -3\) and \(\partial e/\partial c = d = 3\). The add node \(d = a + b\) has \(\partial d/\partial a = \partial d/\partial b = 1\), so it simply passes its incoming gradient through to both inputs. Chaining,
\[\frac{\partial e}{\partial a} = \frac{\partial e}{\partial d}\frac{\partial d}{\partial a} = -3,\quad \frac{\partial e}{\partial b} = -3,\quad \frac{\partial e}{\partial c} = 3. \tag{4.3.10}\]
This is the whole algorithm in miniature: add nodes broadcast the upstream gradient unchanged, multiply nodes scale it by the other input. Every backward equation in this section is an instance of this one move.
Now run the same machinery on a network of the form above, shrunk to \(d = h = 2\) inputs and hidden units, \(q = 1\) output, with ReLU activation \(\phi(z) = \max(0, z)\) and (for clarity) no regularization, \(\lambda = 0\). Take
\[\mathbf{x} = \begin{bmatrix} 1 \\ 2 \end{bmatrix},\quad \mathbf{W}^{(1)} = \begin{bmatrix} 1 & -1 \\ 0 & \phantom{-}1 \end{bmatrix},\quad \mathbf{W}^{(2)} = \begin{bmatrix} 2 & -1 \end{bmatrix},\quad y = 0, \tag{4.3.11}\]
and squared-error loss \(L = \tfrac12 (o - y)^2\). The forward pass gives \(\mathbf{z} = \mathbf{W}^{(1)}\mathbf{x} = [-1,\ 2]^\top\), so \(\mathbf{h} = \phi(\mathbf{z}) = [0,\ 2]^\top\) (the first unit is dead), \(o = \mathbf{W}^{(2)}\mathbf{h} = -2\), and \(L = \tfrac12(-2)^2 = 2\). For the backward pass, \(\partial L/\partial o = o - y = -2\), and then, reading the section’s equations top to bottom,
\[\frac{\partial L}{\partial \mathbf{W}^{(2)}} = \frac{\partial L}{\partial o}\,\mathbf{h}^\top = -2\,[0,\ 2] = [0,\ -4], \tag{4.3.12}\]
\[\frac{\partial L}{\partial \mathbf{h}} = {\mathbf{W}^{(2)}}^\top \frac{\partial L}{\partial o} = [-4,\ 2]^\top,\qquad \frac{\partial L}{\partial \mathbf{z}} = \frac{\partial L}{\partial \mathbf{h}} \odot \phi'(\mathbf{z}) = [-4,\ 2]^\top \odot [0,\ 1]^\top = [0,\ 2]^\top, \tag{4.3.13}\]
using \(\phi'(z) = \mathbf{1}[z > 0]\), which is exactly where the dead first unit blocks the gradient. Finally,
\[\frac{\partial L}{\partial \mathbf{W}^{(1)}} = \frac{\partial L}{\partial \mathbf{z}}\,\mathbf{x}^\top = \begin{bmatrix} 0 \\ 2 \end{bmatrix}[1,\ 2] = \begin{bmatrix} 0 & 0 \\ 2 & 4 \end{bmatrix}. \tag{4.3.14}\]
Figure 4.3.2 traces these numbers through the graph, forward in black and backward in blue. Notice that the row of \(\partial L/\partial \mathbf{W}^{(1)}\) feeding the dead unit is entirely zero: no gradient means no learning signal, the concrete face of the “dying ReLU” we met in Section 4.1. You can confirm every number here in a few lines of automatic differentiation (Section 1.5): rebuild the same tensors with gradient tracking, run the forward pass, sweep back through the graph, and compare against the gradients we just derived by hand. The PyTorch cell below does exactly this.
x, y = torch.tensor([1., 2.]), 0
W1 = torch.tensor([[1., -1.], [0., 1.]], requires_grad=True)
W2 = torch.tensor([[2., -1.]], requires_grad=True)
z = W1 @ x
h = torch.relu(z)
o = W2 @ h
for v in (z, h): v.retain_grad() # keep gradients of non-leaf tensors
L = ((o - y) ** 2).sum() / 2
L.backward()
print(f'L = {L.item()}, dL/dW2 = {W2.grad}, dL/dh = {h.grad}')
print(f'dL/dz = {z.grad}, dL/dW1 =\n{W1.grad}')L = 2.0, dL/dW2 = tensor([[-0., -4.]]), dL/dh = tensor([-4., 2.])
dL/dz = tensor([0., 2.]), dL/dW1 =
tensor([[0., 0.],
[2., 4.]])
Every printed gradient matches the hand computation, down to the zeroed-out row for the dead unit. (The \(-0\) in \(\partial L/\partial \mathbf{W}^{(2)}\) is floating point’s signed zero, an artifact of multiplying \(h_1 = 0\) by the negative upstream gradient; it compares equal to \(0\).)
4.3.3.2 From the Chain Rule to Autograd
What we have just done by hand is precisely what a deep learning framework does when you ask it for gradients: it records the computational graph during the forward pass, seeds a gradient of \(1\) at the scalar objective, and sweeps the graph in reverse, multiplying the local derivative at each node (our \(\textrm{prod}\)) to accumulate the gradient with respect to every parameter in a single pass. This output-to-input sweep is reverse-mode automatic differentiation, and it is cheap exactly when there are many parameters and one scalar loss, the deep learning regime. We use it throughout the book and developed its mechanics, including when the opposite forward mode is preferable, in Section 1.5; the full theory, with both modes expressed as Jacobian products and the memory trade-offs they imply, is developed in Section 24.3.
4.3.4 Training Neural Networks
When training neural networks, forward and backward propagation depend on each other. In particular, for forward propagation, we traverse the computational graph in the direction of dependencies and compute all the variables on its path. These are then used for backpropagation where the compute order on the graph is reversed.
Take the aforementioned simple network as an illustrative example. On the one hand, computing the regularization term Equation 4.3.5 during forward propagation depends on the current values of model parameters \(\mathbf{W}^{(1)}\) and \(\mathbf{W}^{(2)}\). They are given by the optimization algorithm according to backpropagation in the most recent iteration. On the other hand, the gradient calculation for the parameter Equation 4.3.9 during backpropagation depends on the current value of the hidden layer output \(\mathbf{h}\), which is given by forward propagation.
Therefore when training neural networks, once model parameters are initialized, we alternate forward propagation with backpropagation, updating model parameters using gradients given by backpropagation. Note that backpropagation reuses the stored intermediate values from forward propagation to avoid duplicate calculations. One of the consequences is that we need to retain the intermediate values until backpropagation is complete. This is also one of the reasons why training requires significantly more memory than plain prediction. Besides, the size of such intermediate values is roughly proportional to the number of network layers and the batch size. Thus, training deeper networks using larger batch sizes more easily leads to out-of-memory errors.
4.3.5 Summary
Forward propagation sequentially calculates and stores intermediate variables within the computational graph defined by the neural network. It proceeds from the input to the output layer. Backpropagation sequentially calculates and stores the gradients of intermediate variables and parameters within the neural network in the reversed order. When training deep learning models, forward propagation and backpropagation are interdependent, and training requires significantly more memory than prediction.
4.3.6 Exercises
- Assume that the inputs \(\mathbf{X}\) to some scalar function \(f\) are \(n \times m\) matrices. What is the dimensionality of the gradient of \(f\) with respect to \(\mathbf{X}\)?
- Add a bias to the hidden layer of the model described in this section (you do not need to include bias in the regularization term).
- Draw the corresponding computational graph.
- Derive the forward and backward propagation equations.
- Compute the memory footprint for training and prediction in the model described in this section.
- Assume that you want to compute second derivatives. What happens to the computational graph? How long do you expect the calculation to take?
- Assume that the computational graph is too large for your GPU.
- Can you partition it over more than one GPU?
- What are the advantages and disadvantages over training on a smaller minibatch?
- Build a miniature autograd engine and use it to re-derive this section’s worked example.
- Write a scalar
Valueclass that records, for each result, its inputs and the operation that produced it (the computational graph), supporting+,*, andrelu. (Hint: implement__add__and__mul__so that each returns a newValueholding references to its parents and a small function that propagates the gradient one step.) - Implement
backward(): topologically sort the graph, seed the output’s gradient with \(1\), and sweep the nodes in reverse order, letting each node pass its gradient to its parents. Make sure gradients accumulate (+=, not=) when a value is used more than once (the fork rule from Equation 4.3.9). - Reproduce the worked example with your engine (unroll the matrix products into scalars) and check all four gradients.
- For a chain of three inputs feeding three outputs feeding one loss, the sum-over-paths view of the chain rule enumerates \(3 \times 3 = 9\) paths, yet your engine touches each edge only once. Show that reverse mode computes \((\alpha+\beta+\gamma)(\delta+\epsilon+\zeta)\) instead of expanding all nine products, and explain why this factoring is exactly what makes backpropagation affordable.
- Write a scalar