Skip to content

Add beginner youtube tutorials #1743

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 36 commits into from
Dec 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
69cf097
Create introyt.rst
holly1238 Nov 8, 2021
b6b6375
Create tocyt.txt
holly1238 Nov 8, 2021
9c14d5f
Create introyt1_tutorial.py
holly1238 Nov 8, 2021
f49ac83
Create tensors_deeper_tutorial.py
holly1238 Nov 8, 2021
4e8d37f
Create autogradyt_tutorial
holly1238 Nov 8, 2021
108cc1a
Create modelsyt_tutorial.py
holly1238 Nov 8, 2021
f69c2db
Create tensorboardyt_tutorial.py
holly1238 Nov 8, 2021
811c2dd
Create trainingyt_tutorial.py
holly1238 Nov 8, 2021
60b5cc0
Update introyt1_tutorial.py
holly1238 Nov 8, 2021
9b06186
Create captumyt_tutorial.py
holly1238 Nov 8, 2021
76af8f2
Rename autogradyt_tutorial to autogradyt_tutorial.py
holly1238 Nov 8, 2021
4bb6073
added intro youtube files to index
holly1238 Nov 8, 2021
d3d52a3
Create README file in the introyt folder
holly1238 Nov 8, 2021
871ee4f
Added tensorboard to requirements.txt
holly1238 Nov 29, 2021
7c43549
fixed the math formula rendering
holly1238 Nov 29, 2021
0bb1626
fixed runtime error
holly1238 Nov 29, 2021
49d5173
removed runnable code
holly1238 Nov 29, 2021
7681b00
removed _tutorial from captumyt
holly1238 Nov 29, 2021
e35e903
fixed runtime error
holly1238 Nov 29, 2021
7bf8e19
Rename trainingyt_tutorial.py to trainingyt.py
holly1238 Nov 30, 2021
f807b4b
removed _tutorial from trainingyt
holly1238 Nov 30, 2021
b7f6420
Merge branch 'master' into master
holly1238 Nov 30, 2021
11ceca4
Rename beginner_source/introyt/introyt.rst to beginner_source/introyt…
holly1238 Nov 30, 2021
8307ce6
moved introyt toc out of the introyt folder
holly1238 Nov 30, 2021
2e4314a
updated link paths
holly1238 Nov 30, 2021
e780366
updated link paths
holly1238 Nov 30, 2021
8213009
fixed broken links
holly1238 Nov 30, 2021
43ed5d5
fixed broken links
holly1238 Nov 30, 2021
b4c20a0
fixed broken links
holly1238 Nov 30, 2021
3e27273
fixed broken links
holly1238 Nov 30, 2021
c32633c
Update modelsyt_tutorial.py
holly1238 Nov 30, 2021
6169467
fixed broken links
holly1238 Nov 30, 2021
d55de4d
fixed broken links
holly1238 Nov 30, 2021
9e49e6b
fixed broken links
holly1238 Nov 30, 2021
0ac2837
fixed broken links
holly1238 Nov 30, 2021
ce5c538
Update trainingyt.py
holly1238 Nov 30, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions beginner_source/introyt.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
`Introduction <introyt/introyt1_tutorial.html>`_ ||
`Tensors <introyt/tensors_deeper_tutorial.html>`_ ||
`Autograd <introyt/autogradyt_tutorial.html>`_ ||
`Building Models <introyt/modelsyt_tutorial.html>`_ ||
`TensorBoard Support <introyt/tensorboardyt_tutorial.html>`_ ||
`Training Models <introyt/trainingyt.html>`_ ||
`Model Understanding <introyt/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:

- **In 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 setup PyTorch and TorchVision first on your local machine (`installation instructions <https://pytorch.org/get-started/locally/>`_). Download the notebook or copy the code into your favorite IDE.

.. include:: /beginner_source/introyt/tocyt.txt

.. toctree::
:hidden:
34 changes: 34 additions & 0 deletions beginner_source/introyt/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Introduction to PyTorch on YouTube
----------------------------------

1. introyt.rst
Introduction to PyTorch - Youtube Series
https://pytorch.org/tutorials/beginner/introyt/introyt.html

2. introyt1_tutorial.py
Introduction to PyTorch
https://pytorch.org/tutorials/beginner/introyt/introyt1_tutorial.html

3. tensors_deeper_tutorial.py
PyTorch Tensors
https://pytorch.org/tutorials/beginner/introyt/tensors_deeper_tutorial.html

4. autogradyt_tutorial.py
The Fundamentals of Autograd
https://pytorch.org/tutorials/beginner/introyt/autogradyt_tutorial.html

5. modelsyt_tutorial.py
Building Models with PyTorch
https://pytorch.org/tutorials/beginner/introyt/modelsyt_tutorial.html

6. tensorboardyt_tutorial.py
PyTorch TensorBoard Support
https://pytorch.org/tutorials/beginner/introyt/tensorboardyt_tutorial.html

7. trainingyt_tutorial.py
Training with PyTorch
https://pytorch.org/tutorials/beginner/introyt/trainingyt_tutorial.html

8. captumyt_tutorial.py
Model Understanding with Captum
https://pytorch.org/tutorials/beginner/introyt/captumyt_tutorial.html
Loading