.. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_beginner_introyt_autogradyt_tutorial.py: `Introduction `_ || `Tensors `_ || **Autograd** || `Building Models `_ || `TensorBoard Support `_ || `Training Models `_ || `Model Understanding `_ The Fundamentals of Autograd ============================ Follow along with the video below or on `youtube `__. .. raw:: html
PyTorch’s *Autograd* feature is part of what make PyTorch flexible and fast for building machine learning projects. It allows for the rapid and easy computation of multiple partial derivatives (also referred to as *gradients)* over a complex computation. This operation is central to backpropagation-based neural network learning. The power of autograd comes from the fact that it traces your computation dynamically *at runtime,* meaning that if your model has decision branches, or loops whose lengths are not known until runtime, the computation will still be traced correctly, and you’ll get correct gradients to drive learning. This, combined with the fact that your models are built in Python, offers far more flexibility than frameworks that rely on static analysis of a more rigidly-structured model for computing gradients. What Do We Need Autograd For? ----------------------------- A machine learning model is a *function*, with inputs and outputs. For this discussion, we’ll treat the inputs a as an *i*-dimensional vector :math:`\vec{x}`, with elements :math:`x_{i}`. We can then express the model, *M*, as a vector-valued function of the input: :math:`\vec{y} = \vec{M}(\vec{x})`. (We treat the value of M’s output as a vector because in general, a model may have any number of outputs.) Since we’ll mostly be discussing autograd in the context of training, our output of interest will be the model’s loss. The *loss function* L(:math:`\vec{y}`) = L(:math:`\vec{M}`\ (:math:`\vec{x}`)) is a single-valued scalar function of the model’s output. This function expresses how far off our model’s prediction was from a particular input’s *ideal* output. *Note: After this point, we will often omit the vector sign where it should be contextually clear - e.g.,* :math:`y` instead of :math:`\vec y`. In training a model, we want to minimize the loss. In the idealized case of a perfect model, that means adjusting its learning weights - that is, the adjustable parameters of the function - such that loss is zero for all inputs. In the real world, it means an iterative process of nudging the learning weights until we see that we get a tolerable loss for a wide variety of inputs. How do we decide how far and in which direction to nudge the weights? We want to *minimize* the loss, which means making its first derivative with respect to the input equal to 0: :math:`\frac{\partial L}{\partial x} = 0`. Recall, though, that the loss is not *directly* derived from the input, but a function of the model’s output (which is a function of the input directly), :math:`\frac{\partial L}{\partial x}` = :math:`\frac{\partial {L({\vec y})}}{\partial x}`. By the chain rule of differential calculus, we have :math:`\frac{\partial {L({\vec y})}}{\partial x}` = :math:`\frac{\partial L}{\partial y}\frac{\partial y}{\partial x}` = :math:`\frac{\partial L}{\partial y}\frac{\partial M(x)}{\partial x}`. :math:`\frac{\partial M(x)}{\partial x}` is where things get complex. The partial derivatives of the model’s outputs with respect to its inputs, if we were to expand the expression using the chain rule again, would involve many local partial derivatives over every multiplied learning weight, every activation function, and every other mathematical transformation in the model. The full expression for each such partial derivative is the sum of the products of the local gradient of *every possible path* through the computation graph that ends with the variable whose gradient we are trying to measure. In particular, the gradients over the learning weights are of interest to us - they tell us *what direction to change each weight* to get the loss function closer to zero. Since the number of such local derivatives (each corresponding to a separate path through the model’s computation graph) will tend to go up exponentially with the depth of a neural network, so does the complexity in computing them. This is where autograd comes in: It tracks the history of every computation. Every computed tensor in your PyTorch model carries a history of its input tensors and the function used to create it. Combined with the fact that PyTorch functions meant to act on tensors each have a built-in implementation for computing their own derivatives, this greatly speeds the computation of the local derivatives needed for learning. A Simple Example ---------------- That was a lot of theory - but what does it look like to use autograd in practice? Let’s start with a straightforward example. First, we’ll do some imports to let us graph our results: .. code-block:: default # %matplotlib inline import torch import matplotlib.pyplot as plt import matplotlib.ticker as ticker import math Next, we’ll create an input tensor full of evenly spaced values on the interval :math:`[0, 2{\pi}]`, and specify ``requires_grad=True``. (Like most functions that create tensors, ``torch.linspace()`` accepts an optional ``requires_grad`` option.) Setting this flag means that in every computation that follows, autograd will be accumulating the history of the computation in the output tensors of that computation. .. code-block:: default a = torch.linspace(0., 2. * math.pi, steps=25, requires_grad=True) print(a) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([0.0000, 0.2618, 0.5236, 0.7854, 1.0472, 1.3090, 1.5708, 1.8326, 2.0944, 2.3562, 2.6180, 2.8798, 3.1416, 3.4034, 3.6652, 3.9270, 4.1888, 4.4506, 4.7124, 4.9742, 5.2360, 5.4978, 5.7596, 6.0214, 6.2832], requires_grad=True) Next, we’ll perform a computation, and plot its output in terms of its inputs: .. code-block:: default b = torch.sin(a) plt.plot(a.detach(), b.detach()) .. image:: /beginner/introyt/images/sphx_glr_autogradyt_tutorial_001.png :class: sphx-glr-single-img Let’s have a closer look at the tensor ``b``. When we print it, we see an indicator that it is tracking its computation history: .. code-block:: default print(b) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([ 0.0000e+00, 2.5882e-01, 5.0000e-01, 7.0711e-01, 8.6603e-01, 9.6593e-01, 1.0000e+00, 9.6593e-01, 8.6603e-01, 7.0711e-01, 5.0000e-01, 2.5882e-01, -8.7423e-08, -2.5882e-01, -5.0000e-01, -7.0711e-01, -8.6603e-01, -9.6593e-01, -1.0000e+00, -9.6593e-01, -8.6603e-01, -7.0711e-01, -5.0000e-01, -2.5882e-01, 1.7485e-07], grad_fn=) This ``grad_fn`` gives us a hint that when we execute the backpropagation step and compute gradients, we’ll need to compute the derivative of :math:`sin(x)` for all this tensor’s inputs. Let’s perform some more computations: .. code-block:: default c = 2 * b print(c) d = c + 1 print(d) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([ 0.0000e+00, 5.1764e-01, 1.0000e+00, 1.4142e+00, 1.7321e+00, 1.9319e+00, 2.0000e+00, 1.9319e+00, 1.7321e+00, 1.4142e+00, 1.0000e+00, 5.1764e-01, -1.7485e-07, -5.1764e-01, -1.0000e+00, -1.4142e+00, -1.7321e+00, -1.9319e+00, -2.0000e+00, -1.9319e+00, -1.7321e+00, -1.4142e+00, -1.0000e+00, -5.1764e-01, 3.4969e-07], grad_fn=) tensor([ 1.0000e+00, 1.5176e+00, 2.0000e+00, 2.4142e+00, 2.7321e+00, 2.9319e+00, 3.0000e+00, 2.9319e+00, 2.7321e+00, 2.4142e+00, 2.0000e+00, 1.5176e+00, 1.0000e+00, 4.8236e-01, -3.5763e-07, -4.1421e-01, -7.3205e-01, -9.3185e-01, -1.0000e+00, -9.3185e-01, -7.3205e-01, -4.1421e-01, 4.7684e-07, 4.8236e-01, 1.0000e+00], grad_fn=) Finally, let’s compute a single-element output. When you call ``.backward()`` on a tensor with no arguments, it expects the calling tensor to contain only a single element, as is the case when computing a loss function. .. code-block:: default out = d.sum() print(out) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor(25., grad_fn=) Each ``grad_fn`` stored with our tensors allows you to walk the computation all the way back to its inputs with its ``next_functions`` property. We can see below that drilling down on this property on ``d`` shows us the gradient functions for all the prior tensors. Note that ``a.grad_fn`` is reported as ``None``, indicating that this was an input to the function with no history of its own. .. code-block:: default print('d:') print(d.grad_fn) print(d.grad_fn.next_functions) print(d.grad_fn.next_functions[0][0].next_functions) print(d.grad_fn.next_functions[0][0].next_functions[0][0].next_functions) print(d.grad_fn.next_functions[0][0].next_functions[0][0].next_functions[0][0].next_functions) print('\nc:') print(c.grad_fn) print('\nb:') print(b.grad_fn) print('\na:') print(a.grad_fn) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none d: ((, 0), (None, 0)) ((, 0), (None, 0)) ((, 0),) () c: b: a: None With all this machinery in place, how do we get derivatives out? You call the ``backward()`` method on the output, and check the input’s ``grad`` property to inspect the gradients: .. code-block:: default out.backward() print(a.grad) plt.plot(a.detach(), a.grad.detach()) .. image:: /beginner/introyt/images/sphx_glr_autogradyt_tutorial_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([ 2.0000e+00, 1.9319e+00, 1.7321e+00, 1.4142e+00, 1.0000e+00, 5.1764e-01, -8.7423e-08, -5.1764e-01, -1.0000e+00, -1.4142e+00, -1.7321e+00, -1.9319e+00, -2.0000e+00, -1.9319e+00, -1.7321e+00, -1.4142e+00, -1.0000e+00, -5.1764e-01, 2.3850e-08, 5.1764e-01, 1.0000e+00, 1.4142e+00, 1.7321e+00, 1.9319e+00, 2.0000e+00]) Recall the computation steps we took to get here: :: a = torch.linspace(0., 2. * math.pi, steps=25, requires_grad=True) b = torch.sin(a) c = 2 * b d = c + 1 out = d.sum() Adding a constant, as we did to compute ``d``, does not change the derivative. That leaves :math:`c = 2 * b = 2 * sin(a)`, the derivative of which should be :math:`2 * cos(a)`. Looking at the graph above, that’s just what we see. Be aware than only *leaf nodes* of the computation have their gradients computed. If you tried, for example, ``print(c.grad)`` you’d get back ``None``. In this simple example, only the input is a leaf node, so only it has gradients computed. Autograd in Training -------------------- We’ve had a brief look at how autograd works, but how does it look when it’s used for its intended purpose? Let’s define a small model and examine how it changes after a single training batch. First, define a few constants, our model, and some stand-ins for inputs and outputs: .. code-block:: default BATCH_SIZE = 16 DIM_IN = 1000 HIDDEN_SIZE = 100 DIM_OUT = 10 class TinyModel(torch.nn.Module): def __init__(self): super(TinyModel, self).__init__() self.layer1 = torch.nn.Linear(1000, 100) self.relu = torch.nn.ReLU() self.layer2 = torch.nn.Linear(100, 10) def forward(self, x): x = self.layer1(x) x = self.relu(x) x = self.layer2(x) return x some_input = torch.randn(BATCH_SIZE, DIM_IN, requires_grad=False) ideal_output = torch.randn(BATCH_SIZE, DIM_OUT, requires_grad=False) model = TinyModel() One thing you might notice is that we never specify ``requires_grad=True`` for the model’s layers. Within a subclass of ``torch.nn.Module``, it’s assumed that we want to track gradients on the layers’ weights for learning. If we look at the layers of the model, we can examine the values of the weights, and verify that no gradients have been computed yet: .. code-block:: default print(model.layer2.weight[0][0:10]) # just a small slice print(model.layer2.weight.grad) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([-0.0373, 0.0234, 0.0850, -0.0673, 0.0651, 0.0360, -0.0118, 0.0026, -0.0261, -0.0186], grad_fn=) None Let’s see how this changes when we run through one training batch. For a loss function, we’ll just use the square of the Euclidean distance between our ``prediction`` and the ``ideal_output``, and we’ll use a basic stochastic gradient descent optimizer. .. code-block:: default optimizer = torch.optim.SGD(model.parameters(), lr=0.001) prediction = model(some_input) loss = (ideal_output - prediction).pow(2).sum() print(loss) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor(182.1759, grad_fn=) Now, let’s call ``loss.backward()`` and see what happens: .. code-block:: default loss.backward() print(model.layer2.weight[0][0:10]) print(model.layer2.weight.grad[0][0:10]) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([-0.0373, 0.0234, 0.0850, -0.0673, 0.0651, 0.0360, -0.0118, 0.0026, -0.0261, -0.0186], grad_fn=) tensor([ -6.7103, -15.8083, -5.6002, 2.5830, -3.8291, -0.0731, -2.7984, -4.6158, -7.1428, -5.5124]) We can see that the gradients have been computed for each learning weight, but the weights remain unchanged, because we haven’t run the optimizer yet. The optimizer is responsible for updating model weights based on the computed gradients. .. code-block:: default optimizer.step() print(model.layer2.weight[0][0:10]) print(model.layer2.weight.grad[0][0:10]) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([-0.0306, 0.0392, 0.0906, -0.0698, 0.0689, 0.0361, -0.0090, 0.0072, -0.0190, -0.0131], grad_fn=) tensor([ -6.7103, -15.8083, -5.6002, 2.5830, -3.8291, -0.0731, -2.7984, -4.6158, -7.1428, -5.5124]) You should see that ``layer2``\ ’s weights have changed. One important thing about the process: After calling ``optimizer.step()``, you need to call ``optimizer.zero_grad()``, or else every time you run ``loss.backward()``, the gradients on the learning weights will accumulate: .. code-block:: default print(model.layer2.weight.grad[0][0:10]) for i in range(0, 5): prediction = model(some_input) loss = (ideal_output - prediction).pow(2).sum() loss.backward() print(model.layer2.weight.grad[0][0:10]) optimizer.zero_grad() print(model.layer2.weight.grad[0][0:10]) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([ -6.7103, -15.8083, -5.6002, 2.5830, -3.8291, -0.0731, -2.7984, -4.6158, -7.1428, -5.5124]) tensor([ -2.4930, -76.3411, -37.9805, 30.1020, -17.5483, -8.1507, -15.2834, -15.3044, -9.9804, -14.4940]) tensor([0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]) After running the cell above, you should see that after running ``loss.backward()`` multiple times, the magnitudes of most of the gradients will be much larger. Failing to zero the gradients before running your next training batch will cause the gradients to blow up in this manner, causing incorrect and unpredictable learning results. Turning Autograd Off and On --------------------------- There are situations where you will need fine-grained control over whether autograd is enabled. There are multiple ways to do this, depending on the situation. The simplest is to change the ``requires_grad`` flag on a tensor directly: .. code-block:: default a = torch.ones(2, 3, requires_grad=True) print(a) b1 = 2 * a print(b1) a.requires_grad = False b2 = 2 * a print(b2) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([[1., 1., 1.], [1., 1., 1.]], requires_grad=True) tensor([[2., 2., 2.], [2., 2., 2.]], grad_fn=) tensor([[2., 2., 2.], [2., 2., 2.]]) In the cell above, we see that ``b1`` has a ``grad_fn`` (i.e., a traced computation history), which is what we expect, since it was derived from a tensor, ``a``, that had autograd turned on. When we turn off autograd explicitly with ``a.requires_grad = False``, computation history is no longer tracked, as we see when we compute ``b2``. If you only need autograd turned off temporarily, a better way is to use the ``torch.no_grad()``: .. code-block:: default a = torch.ones(2, 3, requires_grad=True) * 2 b = torch.ones(2, 3, requires_grad=True) * 3 c1 = a + b print(c1) with torch.no_grad(): c2 = a + b print(c2) c3 = a * b print(c3) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([[5., 5., 5.], [5., 5., 5.]], grad_fn=) tensor([[5., 5., 5.], [5., 5., 5.]]) tensor([[6., 6., 6.], [6., 6., 6.]], grad_fn=) ``torch.no_grad()`` can also be used as a function or method decorator: .. code-block:: default def add_tensors1(x, y): return x + y @torch.no_grad() def add_tensors2(x, y): return x + y a = torch.ones(2, 3, requires_grad=True) * 2 b = torch.ones(2, 3, requires_grad=True) * 3 c1 = add_tensors1(a, b) print(c1) c2 = add_tensors2(a, b) print(c2) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([[5., 5., 5.], [5., 5., 5.]], grad_fn=) tensor([[5., 5., 5.], [5., 5., 5.]]) There’s a corresponding context manager, ``torch.enable_grad()``, for turning autograd on when it isn’t already. It may also be used as a decorator. Finally, you may have a tensor that requires gradient tracking, but you want a copy that does not. For this we have the ``Tensor`` object’s ``detach()`` method - it creates a copy of the tensor that is *detached* from the computation history: .. code-block:: default x = torch.rand(5, requires_grad=True) y = x.detach() print(x) print(y) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([0.6886, 0.4117, 0.1233, 0.4788, 0.7209], requires_grad=True) tensor([0.6886, 0.4117, 0.1233, 0.4788, 0.7209]) We did this above when we wanted to graph some of our tensors. This is because ``matplotlib`` expects a NumPy array as input, and the implicit conversion from a PyTorch tensor to a NumPy array is not enabled for tensors with requires_grad=True. Making a detached copy lets us move forward. Autograd and In-place Operations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In every example in this notebook so far, we’ve used variables to capture the intermediate values of a computation. Autograd needs these intermediate values to perform gradient computations. *For this reason, you must be careful about using in-place operations when using autograd.* Doing so can destroy information you need to compute derivatives in the ``backward()`` call. PyTorch will even stop you if you attempt an in-place operation on leaf variable that requires autograd, as shown below. .. note:: The following code cell throws a runtime error. This is expected. :: a = torch.linspace(0., 2. * math.pi, steps=25, requires_grad=True) torch.sin_(a) Autograd Profiler ----------------- Autograd tracks every step of your computation in detail. Such a computation history, combined with timing information, would make a handy profiler - and autograd has that feature baked in. Here’s a quick example usage: .. code-block:: default device = torch.device('cpu') run_on_gpu = False if torch.cuda.is_available(): device = torch.device('cuda') run_on_gpu = True x = torch.randn(2, 3, requires_grad=True) y = torch.rand(2, 3, requires_grad=True) z = torch.ones(2, 3, requires_grad=True) with torch.autograd.profiler.profile(use_cuda=run_on_gpu) as prf: for _ in range(1000): z = (z / x) * y print(prf.key_averages().table(sort_by='self_cpu_time_total')) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none --------------------------- ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ Name Self CPU % Self CPU CPU total % CPU total CPU time avg Self CUDA Self CUDA % CUDA total CUDA time avg # of Calls --------------------------- ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ cudaEventCreate 99.65% 5.497s 99.65% 5.497s 1.374ms 0.000us 0.00% 0.000us 0.000us 4000 aten::div 0.15% 8.232ms 99.80% 5.505s 5.505ms 7.758ms 50.95% 7.758ms 7.758us 1000 aten::mul 0.12% 6.412ms 0.14% 7.836ms 7.836us 7.469ms 49.05% 7.469ms 7.469us 1000 cudaEventRecord 0.07% 4.099ms 0.07% 4.099ms 1.025us 0.000us 0.00% 0.000us 0.000us 4000 cudaGetDeviceProperties 0.01% 361.000us 0.01% 361.000us 180.500us 0.000us 0.00% 0.000us 0.000us 2 cudaDeviceSynchronize 0.00% 19.000us 0.00% 19.000us 19.000us 0.000us 0.00% 0.000us 0.000us 1 cudaGetDeviceCount 0.00% 0.000us 0.00% 0.000us 0.000us 0.000us 0.00% 0.000us 0.000us 2 --------------------------- ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ ------------ Self CPU time total: 5.516s Self CUDA time total: 15.227ms The profiler can also label individual sub-blocks of code, break out the data by input tensor shape, and export data as a Chrome tracing tools file. For full details of the API, see the `documentation `__. Advanced Topic: More Autograd Detail and the High-Level API ----------------------------------------------------------- If you have a function with an n-dimensional input and m-dimensional output, :math:`\vec{y}=f(\vec{x})`, the complete gradient is a matrix of the derivative of every output with respect to every input, called the *Jacobian:* .. math:: J = \left(\begin{array}{ccc} \frac{\partial y_{1}}{\partial x_{1}} & \cdots & \frac{\partial y_{1}}{\partial x_{n}}\\ \vdots & \ddots & \vdots\\ \frac{\partial y_{m}}{\partial x_{1}} & \cdots & \frac{\partial y_{m}}{\partial x_{n}} \end{array}\right) If you have a second function, :math:`l=g\left(\vec{y}\right)` that takes m-dimensional input (that is, the same dimensionality as the output above), and returns a scalar output, you can express its gradients with respect to :math:`\vec{y}` as a column vector, :math:`v=\left(\begin{array}{ccc}\frac{\partial l}{\partial y_{1}} & \cdots & \frac{\partial l}{\partial y_{m}}\end{array}\right)^{T}` - which is really just a one-column Jacobian. More concretely, imagine the first function as your PyTorch model (with potentially many inputs and many outputs) and the second function as a loss function (with the model’s output as input, and the loss value as the scalar output). If we multiply the first function’s Jacobian by the gradient of the second function, and apply the chain rule, we get: .. math:: J^{T}\cdot v=\left(\begin{array}{ccc} \frac{\partial y_{1}}{\partial x_{1}} & \cdots & \frac{\partial y_{m}}{\partial x_{1}}\\ \vdots & \ddots & \vdots\\ \frac{\partial y_{1}}{\partial x_{n}} & \cdots & \frac{\partial y_{m}}{\partial x_{n}} \end{array}\right)\left(\begin{array}{c} \frac{\partial l}{\partial y_{1}}\\ \vdots\\ \frac{\partial l}{\partial y_{m}} \end{array}\right)=\left(\begin{array}{c} \frac{\partial l}{\partial x_{1}}\\ \vdots\\ \frac{\partial l}{\partial x_{n}} \end{array}\right) Note: You could also use the equivalent operation :math:`v^{T}\cdot J`, and get back a row vector. The resulting column vector is the *gradient of the second function with respect to the inputs of the first* - or in the case of our model and loss function, the gradient of the loss with respect to the model inputs. **``torch.autograd`` is an engine for computing these products.** This is how we accumulate the gradients over the learning weights during the backward pass. For this reason, the ``backward()`` call can *also* take an optional vector input. This vector represents a set of gradients over the tensor, which are multiplied by the Jacobian of the autograd-traced tensor that precedes it. Let’s try a specific example with a small vector: .. code-block:: default x = torch.randn(3, requires_grad=True) y = x * 2 while y.data.norm() < 1000: y = y * 2 print(y) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([1296.8442, 3.2796, -15.7714], grad_fn=) If we tried to call ``y.backward()`` now, we’d get a runtime error and a message that gradients can only be *implicitly* computed for scalar outputs. For a multi-dimensional output, autograd expects us to provide gradients for those three outputs that it can multiply into the Jacobian: .. code-block:: default v = torch.tensor([0.1, 1.0, 0.0001], dtype=torch.float) # stand-in for gradients y.backward(v) print(x.grad) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none tensor([1.0240e+02, 1.0240e+03, 1.0240e-01]) (Note that the output gradients are all related to powers of two - which we’d expect from a repeated doubling operation.) The High-Level API ~~~~~~~~~~~~~~~~~~ There is an API on autograd that gives you direct access to important differential matrix and vector operations. In particular, it allows you to calculate the Jacobian and the *Hessian* matrices of a particular function for particular inputs. (The Hessian is like the Jacobian, but expresses all partial *second* derivatives.) It also provides methods for taking vector products with these matrices. Let’s take the Jacobian of a simple function, evaluated for a 2 single-element inputs: .. code-block:: default def exp_adder(x, y): return 2 * x.exp() + 3 * y inputs = (torch.rand(1), torch.rand(1)) # arguments for the function print(inputs) torch.autograd.functional.jacobian(exp_adder, inputs) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none (tensor([0.5123]), tensor([0.3423])) If you look closely, the first output should equal :math:`2e^x` (since the derivative of :math:`e^x` is :math:`e^x`), and the second value should be 3. You can, of course, do this with higher-order tensors: .. code-block:: default inputs = (torch.rand(3), torch.rand(3)) # arguments for the function print(inputs) torch.autograd.functional.jacobian(exp_adder, inputs) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none (tensor([0.5099, 0.0609, 0.6552]), tensor([0.8384, 0.9993, 0.3169])) The ``torch.autograd.functional.hessian()`` method works identically (assuming your function is twice differentiable), but returns a matrix of all second derivatives. There is also a function to directly compute the vector-Jacobian product, if you provide the vector: .. code-block:: default def do_some_doubling(x): y = x * 2 while y.data.norm() < 1000: y = y * 2 return y inputs = torch.randn(3) my_gradients = torch.tensor([0.1, 1.0, 0.0001]) torch.autograd.functional.vjp(do_some_doubling, inputs, v=my_gradients) The ``torch.autograd.functional.jvp()`` method performs the same matrix multiplication as ``vjp()`` with the operands reversed. The ``vhp()`` and ``hvp()`` methods do the same for a vector-Hessian product. For more information, including performance notes on the `docs for the functional API `__ .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 6.604 seconds) .. _sphx_glr_download_beginner_introyt_autogradyt_tutorial.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download :download:`Download Python source code: autogradyt_tutorial.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: autogradyt_tutorial.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_