Chapter 215
Calculus
Calculus
Finding the area of a polygon had remained mysterious until at least 2,500 years ago, when ancient Greeks divided a polygon into triangles and summed their areas. To find the area of curved shapes, such as a circle, ancient Greeks inscribed polygons in such shapes. As shown in fig_circle_area, an inscribed polygon with more sides of equal length better approximates the circle. This process is also known as the method of exhaustion.
In fact, the method of exhaustion is where integral calculus (will be described in sec_integral_calculus) originates from. More than 2,000 years later, the other branch of calculus, differential calculus, was invented. Among the most critical applications of differential calculus, optimization problems consider how to do something the best. As discussed in subsec_norms_and_objectives, such problems are ubiquitous in deep learning.
In deep learning, we train models, updating them successively so that they get better and better as they see more and more data. Usually, getting better means minimizing a loss function, a score that answers the question "how bad is our model?" This question is more subtle than it appears. Ultimately, what we really care about is producing a model that performs well on data that we have never seen before. But we can only fit the model to data that we can actually see. Thus we can decompose the task of fitting models into two key concerns: i) optimization: the process of fitting our models to observed data; ii) generalization: the mathematical principles and practitioners' wisdom that guide as to how to produce models whose validity extends beyond the exact set of data examples used to train them.
To help you understand optimization problems and methods in later chapters, here we give a very brief primer on differential calculus that is commonly used in deep learning.
Derivatives and Differentiation
We begin by addressing the calculation of derivatives, a crucial step in nearly all deep learning optimization algorithms. In deep learning, we typically choose loss functions that are differentiable with respect to our model's parameters. Put simply, this means that for each parameter, we can determine how rapidly the loss would increase or decrease, were we to increase or decrease that parameter by an infinitesimally small amount.
Suppose that we have a function , whose input and output are both scalars. [The derivative of is defined as]
()
if this limit exists. If exists, is said to be differentiable at . If is differentiable at every number of an interval, then this function is differentiable on this interval. We can interpret the derivative in eq_derivative as the instantaneous rate of change of with respect to . The so-called instantaneous rate of change is based on the variation in , which approaches .
To illustrate derivatives, let us experiment with an example. (Define .)
%matplotlib inline
from d2l import mxnet as d2l
from IPython import display
from mxnet import np, npx
npx.set_np()
def f(x):
return 3 * x ** 2 - 4 * x#@tab pytorch
%matplotlib inline
from d2l import torch as d2l
from IPython import display
import numpy as np
def f(x):
return 3 * x ** 2 - 4 * x#@tab tensorflow
%matplotlib inline
from d2l import tensorflow as d2l
from IPython import display
import numpy as np
def f(x):
return 3 * x ** 2 - 4 * x[By setting and letting approach , the numerical result of ] in eq_derivative (approaches .) Though this experiment is not a mathematical proof, we will see later that the derivative is when .
#@tab all
def numerical_lim(f, x, h):
return (f(x + h) - f(x)) / h
h = 0.1
for i in range(5):
print(f'h={h:.5f}, numerical limit={numerical_lim(f, 1, h):.5f}')
h *= 0.1Let us familiarize ourselves with a few equivalent notations for derivatives. Given , where and are the independent variable and the dependent variable of the function , respectively. The following expressions are equivalent:
where symbols and are differentiation operators that indicate operation of differentiation. We can use the following rules to differentiate common functions:
- ( is a constant),
- (the power rule, is any real number),
- ,
To differentiate a function that is formed from a few simpler functions such as the above common functions, the following rules can be handy for us. Suppose that functions and are both differentiable and is a constant, we have the constant multiple rule
the sum rule
the product rule
and the quotient rule
Now we can apply a few of the above rules to find . Thus, by setting , we have : this is supported by our earlier experiment in this section where the numerical result approaches . This derivative is also the slope of the tangent line to the curve when .
[To visualize such an interpretation of derivatives,
we will use matplotlib,]
a popular plotting library in Python.
To configure properties of the figures produced by matplotlib,
we need to define a few functions.
In the following,
the use_svg_display function specifies the matplotlib package to output the svg figures for sharper images.
Note that the comment #@save is a special mark where the following function,
class, or statements are saved in the d2l package
so later they can be directly invoked (e.g., d2l.use_svg_display()) without being redefined.
#@tab all
def use_svg_display(): #@save
"""Use the svg format to display a plot in Jupyter."""
display.set_matplotlib_formats('svg')We define the set_figsize function to specify the figure sizes. Note that here we directly use d2l.plt since the import statement from matplotlib import pyplot as plt has been marked for being saved in the d2l package in the preface.
#@tab all
def set_figsize(figsize=(3.5, 2.5)): #@save
"""Set the figure size for matplotlib."""
use_svg_display()
d2l.plt.rcParams['figure.figsize'] = figsizeThe following set_axes function sets properties of axes of figures produced by matplotlib.
#@tab all
#@save
def set_axes(axes, xlabel, ylabel, xlim, ylim, xscale, yscale, legend):
"""Set the axes for matplotlib."""
axes.set_xlabel(xlabel)
axes.set_ylabel(ylabel)
axes.set_xscale(xscale)
axes.set_yscale(yscale)
axes.set_xlim(xlim)
axes.set_ylim(ylim)
if legend:
axes.legend(legend)
axes.grid()With these three functions for figure configurations,
we define the plot function
to plot multiple curves succinctly
since we will need to visualize many curves throughout the book.
#@tab all
#@save
def plot(X, Y=None, xlabel=None, ylabel=None, legend=None, xlim=None,
ylim=None, xscale='linear', yscale='linear',
fmts=('-', 'm--', 'g-.', 'r:'), figsize=(3.5, 2.5), axes=None):
"""Plot data points."""
if legend is None:
legend = []
set_figsize(figsize)
axes = axes if axes else d2l.plt.gca()
# Return True if `X` (tensor or list) has 1 axis
def has_one_axis(X):
return (hasattr(X, "ndim") and X.ndim == 1 or isinstance(X, list)
and not hasattr(X[0], "__len__"))
if has_one_axis(X):
X = [X]
if Y is None:
X, Y = [[]] * len(X), X
elif has_one_axis(Y):
Y = [Y]
if len(X) != len(Y):
X = X * len(Y)
axes.cla()
for x, y, fmt in zip(X, Y, fmts):
if len(x):
axes.plot(x, y, fmt)
else:
axes.plot(y, fmt)
set_axes(axes, xlabel, ylabel, xlim, ylim, xscale, yscale, legend)Now we can [plot the function and its tangent line at ], where the coefficient is the slope of the tangent line.
#@tab all
x = np.arange(0, 3, 0.1)
plot(x, [f(x), 2 * x - 3], 'x', 'f(x)', legend=['f(x)', 'Tangent line (x=1)'])Partial Derivatives
So far we have dealt with the differentiation of functions of just one variable. In deep learning, functions often depend on many variables. Thus, we need to extend the ideas of differentiation to these multivariate functions.
Let be a function with variables. The partial derivative of with respect to its parameter is
To calculate , we can simply treat as constants and calculate the derivative of with respect to . For notation of partial derivatives, the following are equivalent:
Gradients
We can concatenate partial derivatives of a multivariate function with respect to all its variables to obtain the gradient vector of the function. Suppose that the input of function is an -dimensional vector and the output is a scalar. The gradient of the function with respect to is a vector of partial derivatives:
where is often replaced by when there is no ambiguity.
Let be an -dimensional vector, the following rules are often used when differentiating multivariate functions:
- For all , ,
- For all , ,
- For all , ,
- .
Similarly, for any matrix , we have . As we will see later, gradients are useful for designing optimization algorithms in deep learning.
Chain Rule
However, such gradients can be hard to find. This is because multivariate functions in deep learning are often composite, so we may not apply any of the aforementioned rules to differentiate these functions. Fortunately, the chain rule enables us to differentiate composite functions.
Let us first consider functions of a single variable. Suppose that functions and are both differentiable, then the chain rule states that
Now let us turn our attention to a more general scenario where functions have an arbitrary number of variables. Suppose that the differentiable function has variables , where each differentiable function has variables . Note that is a function of . Then the chain rule gives
for any .
Summary
- Differential calculus and integral calculus are two branches of calculus, where the former can be applied to the ubiquitous optimization problems in deep learning.
- A derivative can be interpreted as the instantaneous rate of change of a function with respect to its variable. It is also the slope of the tangent line to the curve of the function.
- A gradient is a vector whose components are the partial derivatives of a multivariate function with respect to all its variables.
- The chain rule enables us to differentiate composite functions.
Exercises
- Plot the function and its tangent line when .
- Find the gradient of the function .
- What is the gradient of the function ?
- Can you write out the chain rule for the case where and , , and ?
mxnet
pytorch
tensorflow
