通过示例学习 PyTorch

原文:https://pytorch.org/tutorials/beginner/pytorch_with_examples.html

作者Justin Johnson

本教程通过独立的示例介绍 PyTorch 的基本概念。

PyTorch 的核心是提供两个主要功能:

  • n 维张量,类似于 NumPy,但可以在 GPU 上运行
  • 用于构建和训练神经网络的自动微分

我们将使用将三阶多项式拟合y = sin(x)的问题作为运行示例。 该网络将具有四个参数,并且将通过使网络输出与实际输出之间的欧几里德距离最小化来进行梯度下降训练,以适应随机数据。

注意

您可以在本页浏览各个示例。

张量

预热:NumPy

在介绍 PyTorch 之前,我们将首先使用 numpy 实现网络。

Numpy 提供了一个 n 维数组对象,以及许多用于操纵这些数组的函数。 Numpy 是用于科学计算的通用框架。 它对计算图,深度学习或梯度一无所知。 但是,通过使用 numpy 操作手动实现网络的前向和后向传递,我们可以轻松地使用 numpy 使三阶多项式适合正弦函数:

  1. # -*- coding: utf-8 -*-
  2. import numpy as np
  3. import math
  4. # Create random input and output data
  5. x = np.linspace(-math.pi, math.pi, 2000)
  6. y = np.sin(x)
  7. # Randomly initialize weights
  8. a = np.random.randn()
  9. b = np.random.randn()
  10. c = np.random.randn()
  11. d = np.random.randn()
  12. learning_rate = 1e-6
  13. for t in range(2000):
  14. # Forward pass: compute predicted y
  15. # y = a + b x + c x^2 + d x^3
  16. y_pred = a + b * x + c * x ** 2 + d * x ** 3
  17. # Compute and print loss
  18. loss = np.square(y_pred - y).sum()
  19. if t % 100 == 99:
  20. print(t, loss)
  21. # Backprop to compute gradients of a, b, c, d with respect to loss
  22. grad_y_pred = 2.0 * (y_pred - y)
  23. grad_a = grad_y_pred.sum()
  24. grad_b = (grad_y_pred * x).sum()
  25. grad_c = (grad_y_pred * x ** 2).sum()
  26. grad_d = (grad_y_pred * x ** 3).sum()
  27. # Update weights
  28. a -= learning_rate * grad_a
  29. b -= learning_rate * grad_b
  30. c -= learning_rate * grad_c
  31. d -= learning_rate * grad_d
  32. print(f'Result: y = {a} + {b} x + {c} x^2 + {d} x^3')

PyTorch:张量

Numpy 是一个很棒的框架,但是它不能利用 GPU 来加速其数值计算。 对于现代深度神经网络,GPU 通常会提供 50 倍或更高的加速,因此遗憾的是,numpy 不足以实现现代深度学习。

在这里,我们介绍最基本的 PyTorch 概念:张量。 PyTorch 张量在概念上与 numpy 数组相同:张量是 n 维数组,PyTorch 提供了许多在这些张量上进行操作的函数。 在幕后,张量可以跟踪计算图和梯度,但它们也可用作科学计算的通用工具。

与 numpy 不同,PyTorch 张量可以利用 GPU 加速其数字计算。 要在 GPU 上运行 PyTorch 张量,您只需要指定正确的设备即可。

在这里,我们使用 PyTorch 张量将三阶多项式拟合为正弦函数。 像上面的 numpy 示例一样,我们需要手动实现通过网络的正向和反向传递:

  1. # -*- coding: utf-8 -*-
  2. import torch
  3. import math
  4. dtype = torch.float
  5. device = torch.device("cpu")
  6. # device = torch.device("cuda:0") # Uncomment this to run on GPU
  7. # Create random input and output data
  8. x = torch.linspace(-math.pi, math.pi, 2000, device=device, dtype=dtype)
  9. y = torch.sin(x)
  10. # Randomly initialize weights
  11. a = torch.randn((), device=device, dtype=dtype)
  12. b = torch.randn((), device=device, dtype=dtype)
  13. c = torch.randn((), device=device, dtype=dtype)
  14. d = torch.randn((), device=device, dtype=dtype)
  15. learning_rate = 1e-6
  16. for t in range(2000):
  17. # Forward pass: compute predicted y
  18. y_pred = a + b * x + c * x ** 2 + d * x ** 3
  19. # Compute and print loss
  20. loss = (y_pred - y).pow(2).sum().item()
  21. if t % 100 == 99:
  22. print(t, loss)
  23. # Backprop to compute gradients of a, b, c, d with respect to loss
  24. grad_y_pred = 2.0 * (y_pred - y)
  25. grad_a = grad_y_pred.sum()
  26. grad_b = (grad_y_pred * x).sum()
  27. grad_c = (grad_y_pred * x ** 2).sum()
  28. grad_d = (grad_y_pred * x ** 3).sum()
  29. # Update weights using gradient descent
  30. a -= learning_rate * grad_a
  31. b -= learning_rate * grad_b
  32. c -= learning_rate * grad_c
  33. d -= learning_rate * grad_d
  34. print(f'Result: y = {a.item()} + {b.item()} x + {c.item()} x^2 + {d.item()} x^3')

Autograd

PyTorch:张量和 Autograd

在上述示例中,我们必须手动实现神经网络的前向和后向传递。 对于小型的两层网络,手动实现反向传递并不是什么大问题,但是对于大型的复杂网络来说,可以很快变得非常麻烦。

幸运的是,我们可以使用自动微分来自动计算神经网络中的反向传递。 PyTorch 中的 Autograd 包正是提供了此功能。 使用 Autograd 时,网络的正向传播将定义计算图; 图中的节点为张量,边为从输入张量产生输出张量的函数。 然后通过该图进行反向传播,可以轻松计算梯度。

这听起来很复杂,在实践中非常简单。 每个张量代表计算图中的一个节点。 如果x是具有x.requires_grad=True的张量,则x.grad是另一个张量,其保持x相对于某个标量值的梯度。

在这里,我们使用 PyTorch 张量和 Autograd 来实现我们的正弦波与三阶多项式示例; 现在我们不再需要通过网络手动实现反向传递:

  1. # -*- coding: utf-8 -*-
  2. import torch
  3. import math
  4. dtype = torch.float
  5. device = torch.device("cpu")
  6. # device = torch.device("cuda:0") # Uncomment this to run on GPU
  7. # Create Tensors to hold input and outputs.
  8. # By default, requires_grad=False, which indicates that we do not need to
  9. # compute gradients with respect to these Tensors during the backward pass.
  10. x = torch.linspace(-math.pi, math.pi, 2000, device=device, dtype=dtype)
  11. y = torch.sin(x)
  12. # Create random Tensors for weights. For a third order polynomial, we need
  13. # 4 weights: y = a + b x + c x^2 + d x^3
  14. # Setting requires_grad=True indicates that we want to compute gradients with
  15. # respect to these Tensors during the backward pass.
  16. a = torch.randn((), device=device, dtype=dtype, requires_grad=True)
  17. b = torch.randn((), device=device, dtype=dtype, requires_grad=True)
  18. c = torch.randn((), device=device, dtype=dtype, requires_grad=True)
  19. d = torch.randn((), device=device, dtype=dtype, requires_grad=True)
  20. learning_rate = 1e-6
  21. for t in range(2000):
  22. # Forward pass: compute predicted y using operations on Tensors.
  23. y_pred = a + b * x + c * x ** 2 + d * x ** 3
  24. # Compute and print loss using operations on Tensors.
  25. # Now loss is a Tensor of shape (1,)
  26. # loss.item() gets the scalar value held in the loss.
  27. loss = (y_pred - y).pow(2).sum()
  28. if t % 100 == 99:
  29. print(t, loss.item())
  30. # Use autograd to compute the backward pass. This call will compute the
  31. # gradient of loss with respect to all Tensors with requires_grad=True.
  32. # After this call a.grad, b.grad. c.grad and d.grad will be Tensors holding
  33. # the gradient of the loss with respect to a, b, c, d respectively.
  34. loss.backward()
  35. # Manually update weights using gradient descent. Wrap in torch.no_grad()
  36. # because weights have requires_grad=True, but we don't need to track this
  37. # in autograd.
  38. with torch.no_grad():
  39. a -= learning_rate * a.grad
  40. b -= learning_rate * b.grad
  41. c -= learning_rate * c.grad
  42. d -= learning_rate * d.grad
  43. # Manually zero the gradients after updating weights
  44. a.grad = None
  45. b.grad = None
  46. c.grad = None
  47. d.grad = None
  48. print(f'Result: y = {a.item()} + {b.item()} x + {c.item()} x^2 + {d.item()} x^3')

PyTorch:定义新的 Autograd 函数

在幕后,每个原始的 Autograd 运算符实际上都是在张量上运行的两个函数。 正向函数从输入张量计算输出张量。 反向函数接收相对于某个标量值的输出张量的梯度,并计算相对于相同标量值的输入张量的梯度。

在 PyTorch 中,我们可以通过定义torch.autograd.Function的子类并实现forwardbackward函数来轻松定义自己的 Autograd 运算符。 然后,我们可以通过构造实例并像调用函数一样调用新的 Autograd 运算符,并传递包含输入数据的张量。

在此示例中,我们将模型定义为y = a + b P[3](c + dx)而不是y = a + bx + cx ^ 2 + dx ^ 3,其中P[3](x) = 1/2 (5x ^ 3 - 3x)是三次的勒让德多项式。 我们编写了自己的自定义 Autograd 函数来计算P[3]的前进和后退,并使用它来实现我们的模型:

  1. # -*- coding: utf-8 -*-
  2. import torch
  3. import math
  4. class LegendrePolynomial3(torch.autograd.Function):
  5. """
  6. We can implement our own custom autograd Functions by subclassing
  7. torch.autograd.Function and implementing the forward and backward passes
  8. which operate on Tensors.
  9. """
  10. @staticmethod
  11. def forward(ctx, input):
  12. """
  13. In the forward pass we receive a Tensor containing the input and return
  14. a Tensor containing the output. ctx is a context object that can be used
  15. to stash information for backward computation. You can cache arbitrary
  16. objects for use in the backward pass using the ctx.save_for_backward method.
  17. """
  18. ctx.save_for_backward(input)
  19. return 0.5 * (5 * input ** 3 - 3 * input)
  20. @staticmethod
  21. def backward(ctx, grad_output):
  22. """
  23. In the backward pass we receive a Tensor containing the gradient of the loss
  24. with respect to the output, and we need to compute the gradient of the loss
  25. with respect to the input.
  26. """
  27. input, = ctx.saved_tensors
  28. return grad_output * 1.5 * (5 * input ** 2 - 1)
  29. dtype = torch.float
  30. device = torch.device("cpu")
  31. # device = torch.device("cuda:0") # Uncomment this to run on GPU
  32. # Create Tensors to hold input and outputs.
  33. # By default, requires_grad=False, which indicates that we do not need to
  34. # compute gradients with respect to these Tensors during the backward pass.
  35. x = torch.linspace(-math.pi, math.pi, 2000, device=device, dtype=dtype)
  36. y = torch.sin(x)
  37. # Create random Tensors for weights. For this example, we need
  38. # 4 weights: y = a + b * P3(c + d * x), these weights need to be initialized
  39. # not too far from the correct result to ensure convergence.
  40. # Setting requires_grad=True indicates that we want to compute gradients with
  41. # respect to these Tensors during the backward pass.
  42. a = torch.full((), 0.0, device=device, dtype=dtype, requires_grad=True)
  43. b = torch.full((), -1.0, device=device, dtype=dtype, requires_grad=True)
  44. c = torch.full((), 0.0, device=device, dtype=dtype, requires_grad=True)
  45. d = torch.full((), 0.3, device=device, dtype=dtype, requires_grad=True)
  46. learning_rate = 5e-6
  47. for t in range(2000):
  48. # To apply our Function, we use Function.apply method. We alias this as 'P3'.
  49. P3 = LegendrePolynomial3.apply
  50. # Forward pass: compute predicted y using operations; we compute
  51. # P3 using our custom autograd operation.
  52. y_pred = a + b * P3(c + d * x)
  53. # Compute and print loss
  54. loss = (y_pred - y).pow(2).sum()
  55. if t % 100 == 99:
  56. print(t, loss.item())
  57. # Use autograd to compute the backward pass.
  58. loss.backward()
  59. # Update weights using gradient descent
  60. with torch.no_grad():
  61. a -= learning_rate * a.grad
  62. b -= learning_rate * b.grad
  63. c -= learning_rate * c.grad
  64. d -= learning_rate * d.grad
  65. # Manually zero the gradients after updating weights
  66. a.grad = None
  67. b.grad = None
  68. c.grad = None
  69. d.grad = None
  70. print(f'Result: y = {a.item()} + {b.item()} * P3({c.item()} + {d.item()} x)')

nn模块

PyTorch:nn

计算图和 Autograd 是定义复杂运算符并自动采用导数的非常强大的范例。 但是对于大型神经网络,原始的 Autograd 可能会太低级。

在构建神经网络时,我们经常想到将计算安排在中,其中某些层具有可学习的参数,这些参数会在学习期间进行优化。

在 TensorFlow 中,像 KerasTensorFlow-SlimTFLearn 之类的包在原始计算图上提供了更高层次的抽象,可用于构建神经网络。

在 PyTorch 中,nn包也达到了相同的目的。 nn包定义了一组模块,它们大致等效于神经网络层。 模块接收输入张量并计算输出张量,但也可以保持内部状态,例如包含可学习参数的张量。 nn包还定义了一组有用的损失函数,这些函数通常在训练神经网络时使用。

在此示例中,我们使用nn包来实现我们的多项式模型网络:

  1. # -*- coding: utf-8 -*-
  2. import torch
  3. import math
  4. # Create Tensors to hold input and outputs.
  5. x = torch.linspace(-math.pi, math.pi, 2000)
  6. y = torch.sin(x)
  7. # For this example, the output y is a linear function of (x, x^2, x^3), so
  8. # we can consider it as a linear layer neural network. Let's prepare the
  9. # tensor (x, x^2, x^3).
  10. p = torch.tensor([1, 2, 3])
  11. xx = x.unsqueeze(-1).pow(p)
  12. # In the above code, x.unsqueeze(-1) has shape (2000, 1), and p has shape
  13. # (3,), for this case, broadcasting semantics will apply to obtain a tensor
  14. # of shape (2000, 3)
  15. # Use the nn package to define our model as a sequence of layers. nn.Sequential
  16. # is a Module which contains other Modules, and applies them in sequence to
  17. # produce its output. The Linear Module computes output from input using a
  18. # linear function, and holds internal Tensors for its weight and bias.
  19. # The Flatten layer flatens the output of the linear layer to a 1D tensor,
  20. # to match the shape of `y`.
  21. model = torch.nn.Sequential(
  22. torch.nn.Linear(3, 1),
  23. torch.nn.Flatten(0, 1)
  24. )
  25. # The nn package also contains definitions of popular loss functions; in this
  26. # case we will use Mean Squared Error (MSE) as our loss function.
  27. loss_fn = torch.nn.MSELoss(reduction='sum')
  28. learning_rate = 1e-6
  29. for t in range(2000):
  30. # Forward pass: compute predicted y by passing x to the model. Module objects
  31. # override the __call__ operator so you can call them like functions. When
  32. # doing so you pass a Tensor of input data to the Module and it produces
  33. # a Tensor of output data.
  34. y_pred = model(xx)
  35. # Compute and print loss. We pass Tensors containing the predicted and true
  36. # values of y, and the loss function returns a Tensor containing the
  37. # loss.
  38. loss = loss_fn(y_pred, y)
  39. if t % 100 == 99:
  40. print(t, loss.item())
  41. # Zero the gradients before running the backward pass.
  42. model.zero_grad()
  43. # Backward pass: compute gradient of the loss with respect to all the learnable
  44. # parameters of the model. Internally, the parameters of each Module are stored
  45. # in Tensors with requires_grad=True, so this call will compute gradients for
  46. # all learnable parameters in the model.
  47. loss.backward()
  48. # Update the weights using gradient descent. Each parameter is a Tensor, so
  49. # we can access its gradients like we did before.
  50. with torch.no_grad():
  51. for param in model.parameters():
  52. param -= learning_rate * param.grad
  53. # You can access the first layer of `model` like accessing the first item of a list
  54. linear_layer = model[0]
  55. # For linear layer, its parameters are stored as `weight` and `bias`.
  56. print(f'Result: y = {linear_layer.bias.item()} + {linear_layer.weight[:, 0].item()} x + {linear_layer.weight[:, 1].item()} x^2 + {linear_layer.weight[:, 2].item()} x^3')

PyTorch:optim

到目前为止,我们已经通过使用torch.no_grad()手动更改持有可学习参数的张量来更新模型的权重。 对于像随机梯度下降这样的简单优化算法来说,这并不是一个巨大的负担,但是在实践中,我们经常使用更复杂的优化器(例如 AdaGrad,RMSProp,Adam 等)来训练神经网络。

PyTorch 中的optim包抽象了优化算法的思想,并提供了常用优化算法的实现。

在此示例中,我们将使用nn包像以前一样定义我们的模型,但是我们将使用optim包提供的 RMSprop 算法来优化模型:

  1. # -*- coding: utf-8 -*-
  2. import torch
  3. import math
  4. # Create Tensors to hold input and outputs.
  5. x = torch.linspace(-math.pi, math.pi, 2000)
  6. y = torch.sin(x)
  7. # Prepare the input tensor (x, x^2, x^3).
  8. p = torch.tensor([1, 2, 3])
  9. xx = x.unsqueeze(-1).pow(p)
  10. # Use the nn package to define our model and loss function.
  11. model = torch.nn.Sequential(
  12. torch.nn.Linear(3, 1),
  13. torch.nn.Flatten(0, 1)
  14. )
  15. loss_fn = torch.nn.MSELoss(reduction='sum')
  16. # Use the optim package to define an Optimizer that will update the weights of
  17. # the model for us. Here we will use RMSprop; the optim package contains many other
  18. # optimization algorithms. The first argument to the RMSprop constructor tells the
  19. # optimizer which Tensors it should update.
  20. learning_rate = 1e-3
  21. optimizer = torch.optim.RMSprop(model.parameters(), lr=learning_rate)
  22. for t in range(2000):
  23. # Forward pass: compute predicted y by passing x to the model.
  24. y_pred = model(xx)
  25. # Compute and print loss.
  26. loss = loss_fn(y_pred, y)
  27. if t % 100 == 99:
  28. print(t, loss.item())
  29. # Before the backward pass, use the optimizer object to zero all of the
  30. # gradients for the variables it will update (which are the learnable
  31. # weights of the model). This is because by default, gradients are
  32. # accumulated in buffers( i.e, not overwritten) whenever .backward()
  33. # is called. Checkout docs of torch.autograd.backward for more details.
  34. optimizer.zero_grad()
  35. # Backward pass: compute gradient of the loss with respect to model
  36. # parameters
  37. loss.backward()
  38. # Calling the step function on an Optimizer makes an update to its
  39. # parameters
  40. optimizer.step()
  41. linear_layer = model[0]
  42. print(f'Result: y = {linear_layer.bias.item()} + {linear_layer.weight[:, 0].item()} x + {linear_layer.weight[:, 1].item()} x^2 + {linear_layer.weight[:, 2].item()} x^3')

PyTorch:自定义nn模块

有时,您将需要指定比一系列现有模块更复杂的模型。 对于这些情况,您可以通过子类化nn.Module并定义一个forward来定义自己的模块,该模块使用其他模块或在 Tensors 上的其他自动转换操作来接收输入 Tensors 并生成输出 Tensors。

在此示例中,我们将三阶多项式实现为自定义Module子类:

  1. # -*- coding: utf-8 -*-
  2. import torch
  3. import math
  4. class Polynomial3(torch.nn.Module):
  5. def __init__(self):
  6. """
  7. In the constructor we instantiate four parameters and assign them as
  8. member parameters.
  9. """
  10. super().__init__()
  11. self.a = torch.nn.Parameter(torch.randn(()))
  12. self.b = torch.nn.Parameter(torch.randn(()))
  13. self.c = torch.nn.Parameter(torch.randn(()))
  14. self.d = torch.nn.Parameter(torch.randn(()))
  15. def forward(self, x):
  16. """
  17. In the forward function we accept a Tensor of input data and we must return
  18. a Tensor of output data. We can use Modules defined in the constructor as
  19. well as arbitrary operators on Tensors.
  20. """
  21. return self.a + self.b * x + self.c * x ** 2 + self.d * x ** 3
  22. def string(self):
  23. """
  24. Just like any class in Python, you can also define custom method on PyTorch modules
  25. """
  26. return f'y = {self.a.item()} + {self.b.item()} x + {self.c.item()} x^2 + {self.d.item()} x^3'
  27. # Create Tensors to hold input and outputs.
  28. x = torch.linspace(-math.pi, math.pi, 2000)
  29. y = torch.sin(x)
  30. # Construct our model by instantiating the class defined above
  31. model = Polynomial3()
  32. # Construct our loss function and an Optimizer. The call to model.parameters()
  33. # in the SGD constructor will contain the learnable parameters of the nn.Linear
  34. # module which is members of the model.
  35. criterion = torch.nn.MSELoss(reduction='sum')
  36. optimizer = torch.optim.SGD(model.parameters(), lr=1e-6)
  37. for t in range(2000):
  38. # Forward pass: Compute predicted y by passing x to the model
  39. y_pred = model(x)
  40. # Compute and print loss
  41. loss = criterion(y_pred, y)
  42. if t % 100 == 99:
  43. print(t, loss.item())
  44. # Zero gradients, perform a backward pass, and update the weights.
  45. optimizer.zero_grad()
  46. loss.backward()
  47. optimizer.step()
  48. print(f'Result: {model.string()}')

PyTorch:控制流 + 权重共享

作为动态图和权重共享的示例,我们实现了一个非常奇怪的模型:一个三阶多项式,在每个正向传播中选择 3 到 5 之间的一个随机数,并使用该阶数,多次使用相同的权重重复计算四和五阶。

对于此模型,我们可以使用常规的 Python 流控制来实现循环,并且可以通过在定义正向传播时简单地多次重复使用相同的参数来实现权重共享。

我们可以轻松地将此模型实现为Module子类:

  1. # -*- coding: utf-8 -*-
  2. import random
  3. import torch
  4. import math
  5. class DynamicNet(torch.nn.Module):
  6. def __init__(self):
  7. """
  8. In the constructor we instantiate five parameters and assign them as members.
  9. """
  10. super().__init__()
  11. self.a = torch.nn.Parameter(torch.randn(()))
  12. self.b = torch.nn.Parameter(torch.randn(()))
  13. self.c = torch.nn.Parameter(torch.randn(()))
  14. self.d = torch.nn.Parameter(torch.randn(()))
  15. self.e = torch.nn.Parameter(torch.randn(()))
  16. def forward(self, x):
  17. """
  18. For the forward pass of the model, we randomly choose either 4, 5
  19. and reuse the e parameter to compute the contribution of these orders.
  20. Since each forward pass builds a dynamic computation graph, we can use normal
  21. Python control-flow operators like loops or conditional statements when
  22. defining the forward pass of the model.
  23. Here we also see that it is perfectly safe to reuse the same parameter many
  24. times when defining a computational graph.
  25. """
  26. y = self.a + self.b * x + self.c * x ** 2 + self.d * x ** 3
  27. for exp in range(4, random.randint(4, 6)):
  28. y = y + self.e * x ** exp
  29. return y
  30. def string(self):
  31. """
  32. Just like any class in Python, you can also define custom method on PyTorch modules
  33. """
  34. return f'y = {self.a.item()} + {self.b.item()} x + {self.c.item()} x^2 + {self.d.item()} x^3 + {self.e.item()} x^4 ? + {self.e.item()} x^5 ?'
  35. # Create Tensors to hold input and outputs.
  36. x = torch.linspace(-math.pi, math.pi, 2000)
  37. y = torch.sin(x)
  38. # Construct our model by instantiating the class defined above
  39. model = DynamicNet()
  40. # Construct our loss function and an Optimizer. Training this strange model with
  41. # vanilla stochastic gradient descent is tough, so we use momentum
  42. criterion = torch.nn.MSELoss(reduction='sum')
  43. optimizer = torch.optim.SGD(model.parameters(), lr=1e-8, momentum=0.9)
  44. for t in range(30000):
  45. # Forward pass: Compute predicted y by passing x to the model
  46. y_pred = model(x)
  47. # Compute and print loss
  48. loss = criterion(y_pred, y)
  49. if t % 2000 == 1999:
  50. print(t, loss.item())
  51. # Zero gradients, perform a backward pass, and update the weights.
  52. optimizer.zero_grad()
  53. loss.backward()
  54. optimizer.step()
  55. print(f'Result: {model.string()}')

示例

您可以在此处浏览以上示例。

张量

../_img/sphx_glr_polynomial_numpy_thumb.png

热身:NumPy

../_img/sphx_glr_polynomial_tensor_thumb.png

PyTorch:张量

Autograd

../_img/sphx_glr_polynomial_autograd_thumb.png

PyTorch:张量和 Autograd

../_img/sphx_glr_polynomial_custom_function_thumb.png

PyTorch:定义新的 Autograd 函数

nn模块

../_img/sphx_glr_polynomial_nn_thumb.png

PyTorch:nn

../_img/sphx_glr_polynomial_optim_thumb.png

PyTorch:optim

../_img/sphx_glr_polynomial_module_thumb.png

PyTorch:自定义nn模块

../_img/sphx_glr_dynamic_net_thumb.png

PyTorch:控制流 + 权重共享