CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
pytorch

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: pytorch/tutorials
Path: blob/main/beginner_source/introyt/introyt_index.py
Views: 713
1
"""
2
`Introduction <introyt/introyt1_tutorial.html>`_ ||
3
`Tensors <introyt/tensors_deeper_tutorial.html>`_ ||
4
`Autograd <introyt/autogradyt_tutorial.html>`_ ||
5
`Building Models <introyt/modelsyt_tutorial.html>`_ ||
6
`TensorBoard Support <introyt/tensorboardyt_tutorial.html>`_ ||
7
`Training Models <introyt/trainingyt.html>`_ ||
8
`Model Understanding <introyt/captumyt.html>`_
9
10
Introduction to PyTorch - YouTube Series
11
========================================
12
13
Authors:
14
`Brad Heintz <https://github.com/fbbradheintz>`_
15
16
This tutorial follows along with the `PyTorch Beginner Series <https://www.youtube.com/playlist?list=PL_lsbAsL_o2CTlGHgMxNrKhzP97BaG9ZN>`_ on YouTube.
17
18
`This tutorial assumes a basic familiarity with Python and Deep Learning concepts.`
19
20
Running the Tutorial Code
21
-------------------------
22
You can run this tutorial in a couple of ways:
23
24
- **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*
25
- **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.
26
27
.. toctree::
28
:maxdepth: 2
29
:hidden:
30
31
introyt1_tutorial
32
tensors_deeper_tutorial
33
autogradyt_tutorial
34
modelsyt_tutorial
35
tensorboardyt_tutorial
36
trainingyt
37
captumyt
38
"""
39
40