@@ -20,14 +20,12 @@ Goal of this tutorial:
20
20
- Understand PyTorch’s Tensor library and neural networks at a high level.
21
21
- Train a small neural network to classify images
22
22
23
-
24
- .. Note ::
25
- Make sure you have the `torch `_ and `torchvision `_ packages installed.
23
+ To run the tutorials below, make sure you have the `torch `_ and `torchvision `_
24
+ packages installed.
26
25
27
26
.. _torch : https://github.com/pytorch/pytorch
28
27
.. _torchvision : https://github.com/pytorch/vision
29
28
30
-
31
29
.. toctree ::
32
30
:hidden:
33
31
@@ -36,18 +34,33 @@ Goal of this tutorial:
36
34
/beginner/blitz/neural_networks_tutorial
37
35
/beginner/blitz/cifar10_tutorial
38
36
39
- .. galleryitem :: /beginner/blitz/tensor_tutorial.py
40
- :figure: /_static/img/tensor_illustration_flat.png
37
+ .. grid :: 4
41
38
42
- .. galleryitem :: /beginner/blitz/autograd_tutorial.py
43
- :figure : /_static/img/autodiff.png
39
+ .. grid-item-card :: :octicon:`file-code;1em` Tensors
40
+ :link : /beginner/blitz/tensor_tutorial.html
44
41
45
- .. galleryitem :: /beginner/blitz/neural_networks_tutorial.py
46
- :figure: /_static/img/mnist.png
42
+ In this tutorial, you will learn the basics of PyTorch tensors.
43
+ +++
44
+ :octicon: `code;1em ` Code
47
45
48
- .. galleryitem :: /beginner/blitz/cifar10_tutorial.py
49
- :figure : /_static/img/cifar10.png
46
+ .. grid-item-card :: :octicon:`file-code;1em` A Gentle Introduction to torch.autograd
47
+ :link : /beginner/blitz/autograd_tutorial.html
50
48
51
- .. raw :: html
49
+ Learn about autograd.
50
+ +++
51
+ :octicon: `code;1em ` Code
52
+
53
+ .. grid-item-card :: :octicon:`file-code;1em` Neural Networks
54
+ :link: /beginner/blitz/neural_networks_tutorial.html
55
+
56
+ This tutorial demonstrates how you can train neural networks in PyTorch.
57
+ +++
58
+ :octicon: `code;1em ` Code
59
+
60
+ .. grid-item-card :: :octicon:`file-code;1em` Training a Classifier
61
+ :link: /beginner/blitz/cifar10_tutorial.html
52
62
53
- <div style =' clear :both ' ></div >
63
+ Learn how to train an image classifier in PyTorch by using the
64
+ CIFAR10 dataset.
65
+ +++
66
+ :octicon: `code;1em ` Code
0 commit comments