Skip to content

Commit de4f6ae

Browse files
committed
Automated tutorials push
1 parent b325f8e commit de4f6ae

File tree

404 files changed

+21590
-19620
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404 files changed

+21590
-19620
lines changed

_downloads/070179efc13bd796c5dd4af7bf52d5b9/intro.ipynb

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
"Learn the Basics\n",
3030
"================\n",
3131
"\n",
32-
"Authors: [Suraj Subramanian](https://github.com/suraj813), [Seth\n",
32+
"Authors: [Suraj Subramanian](https://github.com/subramen), [Seth\n",
3333
"Juarez](https://github.com/sethjuarez/), [Cassie\n",
34-
"Breviu](https://github.com/cassieview/), [Dmitry\n",
34+
"Breviu](https://github.com/cassiebreviu/), [Dmitry\n",
3535
"Soshnikov](https://soshnikov.com/), [Ari\n",
3636
"Bornstein](https://github.com/aribornstein/)\n",
3737
"\n",
@@ -73,7 +73,10 @@
7373
"If you\\'re new to deep learning frameworks, head right into the first\n",
7474
"section of our step-by-step guide: [1. Tensors](tensor_tutorial.html).\n",
7575
"\n",
76-
"::: {.toctree hidden=\"\"}\n",
76+
"::: {.toctree maxdepth=\"2\" hidden=\"\"}\n",
77+
"quickstart\\_tutorial tensorqs\\_tutorial data\\_tutorial\n",
78+
"transforms\\_tutorial buildmodel\\_tutorial autogradqs\\_tutorial\n",
79+
"optimization\\_tutorial saveloadrun\\_tutorial\n",
7780
":::\n"
7881
]
7982
}

_downloads/3195443a0ced3cabc0ad643537bdb5cd/introyt1_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
{
3535
"cell_type": "code",
3636
"execution_count": null,
37-
"id": "b35802c7",
37+
"id": "8c7710d3",
3838
"metadata": {},
3939
"outputs": [],
4040
"source": [
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"cell_type": "markdown",
53-
"id": "6574b344",
53+
"id": "f6d82452",
5454
"metadata": {},
5555
"source": [
5656
"\n",

_downloads/4355e2cef7d17548f1e25f97a62828c4/template_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{
3232
"cell_type": "code",
3333
"execution_count": null,
34-
"id": "6385e8ff",
34+
"id": "7071e5ae",
3535
"metadata": {},
3636
"outputs": [],
3737
"source": [
@@ -47,7 +47,7 @@
4747
},
4848
{
4949
"cell_type": "markdown",
50-
"id": "2e369e25",
50+
"id": "881a581d",
5151
"metadata": {},
5252
"source": [
5353
"\n",
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {
7+
"collapsed": false
8+
},
9+
"outputs": [],
10+
"source": [
11+
"# For tips on running notebooks in Google Colab, see\n",
12+
"# https://pytorch.org/tutorials/beginner/colab\n",
13+
"%matplotlib inline"
14+
]
15+
},
16+
{
17+
"cell_type": "markdown",
18+
"metadata": {},
19+
"source": [
20+
"[Introduction](introyt/introyt1_tutorial.html) \\|\\|\n",
21+
"[Tensors](introyt/tensors_deeper_tutorial.html) \\|\\|\n",
22+
"[Autograd](introyt/autogradyt_tutorial.html) \\|\\| [Building\n",
23+
"Models](introyt/modelsyt_tutorial.html) \\|\\| [TensorBoard\n",
24+
"Support](introyt/tensorboardyt_tutorial.html) \\|\\| [Training\n",
25+
"Models](introyt/trainingyt.html) \\|\\| [Model\n",
26+
"Understanding](introyt/captumyt.html)\n",
27+
"\n",
28+
"Introduction to PyTorch - YouTube Series\n",
29+
"========================================\n",
30+
"\n",
31+
"Authors: [Brad Heintz](https://github.com/fbbradheintz)\n",
32+
"\n",
33+
"This tutorial follows along with the [PyTorch Beginner\n",
34+
"Series](https://www.youtube.com/playlist?list=PL_lsbAsL_o2CTlGHgMxNrKhzP97BaG9ZN)\n",
35+
"on YouTube.\n",
36+
"\n",
37+
"[This tutorial assumes a basic familiarity with Python and Deep Learning\n",
38+
"concepts.]{.title-ref}\n",
39+
"\n",
40+
"Running the Tutorial Code\n",
41+
"-------------------------\n",
42+
"\n",
43+
"You can run this tutorial in a couple of ways:\n",
44+
"\n",
45+
"- **On the cloud**: This is the easiest way to get started! Each\n",
46+
" section has a Colab link at the top, which opens a notebook with the\n",
47+
" code in a fully-hosted environment. Pro tip: Use Colab with a GPU\n",
48+
" runtime to speed up operations *Runtime \\> Change runtime type \\>\n",
49+
" GPU*\n",
50+
"- **Locally**: This option requires you to set up PyTorch and\n",
51+
" torchvision on your local machine ([installation\n",
52+
" instructions](https://pytorch.org/get-started/locally/)). Download\n",
53+
" the notebook or copy the code into your favorite IDE.\n",
54+
"\n",
55+
"::: {.toctree maxdepth=\"2\" hidden=\"\"}\n",
56+
"introyt1\\_tutorial tensors\\_deeper\\_tutorial autogradyt\\_tutorial\n",
57+
"modelsyt\\_tutorial tensorboardyt\\_tutorial trainingyt captumyt\n",
58+
":::\n"
59+
]
60+
}
61+
],
62+
"metadata": {
63+
"kernelspec": {
64+
"display_name": "Python 3",
65+
"language": "python",
66+
"name": "python3"
67+
},
68+
"language_info": {
69+
"codemirror_mode": {
70+
"name": "ipython",
71+
"version": 3
72+
},
73+
"file_extension": ".py",
74+
"mimetype": "text/x-python",
75+
"name": "python",
76+
"nbconvert_exporter": "python",
77+
"pygments_lexer": "ipython3",
78+
"version": "3.10.15"
79+
}
80+
},
81+
"nbformat": 4,
82+
"nbformat_minor": 0
83+
}

_downloads/63a0f0fc7b3ffb15d3a5ac8db3d521ee/tensors_deeper_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
{
3535
"cell_type": "code",
3636
"execution_count": null,
37-
"id": "680d4f91",
37+
"id": "3a356eba",
3838
"metadata": {},
3939
"outputs": [],
4040
"source": [
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"cell_type": "markdown",
53-
"id": "dcb818ca",
53+
"id": "97930b7c",
5454
"metadata": {},
5555
"source": [
5656
"\n",

_downloads/770632dd3941d2a51b831c52ded57aa2/trainingyt.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
{
3636
"cell_type": "code",
3737
"execution_count": null,
38-
"id": "b2bcf956",
38+
"id": "79eca301",
3939
"metadata": {},
4040
"outputs": [],
4141
"source": [
@@ -51,7 +51,7 @@
5151
},
5252
{
5353
"cell_type": "markdown",
54-
"id": "538fc05c",
54+
"id": "8753b38c",
5555
"metadata": {},
5656
"source": [
5757
"\n",

_downloads/bb1c91ab2ae6e5a5bd75631c0485d55f/intro.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
===================
1414
1515
Authors:
16-
`Suraj Subramanian <https://github.com/suraj813>`_,
16+
`Suraj Subramanian <https://github.com/subramen>`_,
1717
`Seth Juarez <https://github.com/sethjuarez/>`_,
18-
`Cassie Breviu <https://github.com/cassieview/>`_,
18+
`Cassie Breviu <https://github.com/cassiebreviu/>`_,
1919
`Dmitry Soshnikov <https://soshnikov.com/>`_,
2020
`Ari Bornstein <https://github.com/aribornstein/>`_
2121
@@ -49,6 +49,16 @@
4949
.. include:: /beginner_source/basics/qs_toc.txt
5050
5151
.. toctree::
52+
:maxdepth: 2
5253
:hidden:
5354
55+
quickstart_tutorial
56+
tensorqs_tutorial
57+
data_tutorial
58+
transforms_tutorial
59+
buildmodel_tutorial
60+
autogradqs_tutorial
61+
optimization_tutorial
62+
saveloadrun_tutorial
63+
5464
"""

_downloads/c28f42852d456daf9af72da6c6909556/captumyt.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
{
3838
"cell_type": "code",
3939
"execution_count": null,
40-
"id": "21102232",
40+
"id": "d110a097",
4141
"metadata": {},
4242
"outputs": [],
4343
"source": [
@@ -53,7 +53,7 @@
5353
},
5454
{
5555
"cell_type": "markdown",
56-
"id": "9b08e13d",
56+
"id": "cf4fa34a",
5757
"metadata": {},
5858
"source": [
5959
"\n",

_downloads/e2e556f6b4693c2cef716dd7f40caaf6/tensorboardyt_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
{
3636
"cell_type": "code",
3737
"execution_count": null,
38-
"id": "c6466932",
38+
"id": "727826dd",
3939
"metadata": {},
4040
"outputs": [],
4141
"source": [
@@ -51,7 +51,7 @@
5151
},
5252
{
5353
"cell_type": "markdown",
54-
"id": "150063b1",
54+
"id": "8c5f350e",
5555
"metadata": {},
5656
"source": [
5757
"\n",

_downloads/ed9d4f94afb79f7dada6742a06c486a5/autogradyt_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
{
3535
"cell_type": "code",
3636
"execution_count": null,
37-
"id": "2ab38ba2",
37+
"id": "faf31b47",
3838
"metadata": {},
3939
"outputs": [],
4040
"source": [
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"cell_type": "markdown",
53-
"id": "912c367b",
53+
"id": "faa02e20",
5454
"metadata": {},
5555
"source": [
5656
"\n",

0 commit comments

Comments
 (0)