-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathintroyt_index.py
38 lines (30 loc) · 1.46 KB
/
introyt_index.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
`Introduction <introyt1_tutorial.html>`_ ||
`Tensors <tensors_deeper_tutorial.html>`_ ||
`Autograd <autogradyt_tutorial.html>`_ ||
`Building Models <modelsyt_tutorial.html>`_ ||
`TensorBoard Support <tensorboardyt_tutorial.html>`_ ||
`Training Models <trainingyt.html>`_ ||
`Model Understanding <captumyt.html>`_
Introduction to PyTorch - YouTube Series
========================================
Authors:
`Brad Heintz <https://github.com/fbbradheintz>`_
This tutorial follows along with the `PyTorch Beginner Series <https://www.youtube.com/playlist?list=PL_lsbAsL_o2CTlGHgMxNrKhzP97BaG9ZN>`_ on YouTube.
`This tutorial assumes a basic familiarity with Python and Deep Learning concepts.`
Running the Tutorial Code
-------------------------
You can run this tutorial in a couple of ways:
- **On the cloud**: This is the easiest way to get started! Each section has a Colab link at the top, which opens a notebook with the code in a fully-hosted environment. Pro tip: Use Colab with a GPU runtime to speed up operations *Runtime > Change runtime type > GPU*
- **Locally**: This option requires you to set up PyTorch and torchvision on your local machine (`installation instructions <https://pytorch.org/get-started/locally/>`_). Download the notebook or copy the code into your favorite IDE.
.. toctree::
:maxdepth: 2
:hidden:
introyt1_tutorial
tensors_deeper_tutorial
autogradyt_tutorial
modelsyt_tutorial
tensorboardyt_tutorial
trainingyt
captumyt
"""