Skip to content

Commit dbab110

Browse files
author
Svetlana Karslioglu
authored
Merge branch 'master' into 1.13-RC-TEST
2 parents c0d5fed + 5152270 commit dbab110

27 files changed

+481
-14
lines changed
685 KB
Loading
355 KB
Loading
138 KB
Loading
278 KB
Loading
501 KB
Loading
311 KB
Loading
451 KB
Loading
80.9 KB
Loading
288 KB
Loading
160 KB
Loading
95.1 KB
Loading
732 KB
Loading
317 KB
Loading
606 KB
Loading
2.35 MB
Loading
271 KB
Loading
539 KB
Loading
210 KB
Loading
515 KB
Loading
1.54 MB
Loading
530 KB
Loading
291 KB
Loading
640 KB
Loading
221 KB
Loading

beginner_source/deep_learning_60min_blitz.rst

+27-14
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@ Goal of this tutorial:
2020
- Understand PyTorch’s Tensor library and neural networks at a high level.
2121
- Train a small neural network to classify images
2222

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.
2625

2726
.. _torch: https://github.com/pytorch/pytorch
2827
.. _torchvision: https://github.com/pytorch/vision
2928

30-
3129
.. toctree::
3230
:hidden:
3331

@@ -36,18 +34,33 @@ Goal of this tutorial:
3634
/beginner/blitz/neural_networks_tutorial
3735
/beginner/blitz/cifar10_tutorial
3836

39-
.. galleryitem:: /beginner/blitz/tensor_tutorial.py
40-
:figure: /_static/img/tensor_illustration_flat.png
37+
.. grid:: 4
4138

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
4441

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
4745

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
5048

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
5262

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

index.rst

+7
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,13 @@ What's new in PyTorch tutorials?
496496
:link: intermediate/torchserve_with_ipex
497497
:tags: Model-Optimization,Production
498498

499+
.. customcarditem::
500+
:header: Grokking PyTorch Intel CPU Performance from First Principles (Part 2)
501+
:card_description: A case study on the TorchServe inference framework optimized with Intel® Extension for PyTorch (Part 2).
502+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
503+
:link: intermediate/torchserve_with_ipex_2
504+
:tags: Model-Optimization,Production
505+
499506
.. customcarditem::
500507
:header: Introduction to nvFuser
501508
:card_description: An introduction to nvFuser

intermediate_source/torchserve_with_ipex_2.rst

+447
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)