Skip to content

Commit 8025f23

Browse files
author
Svetlana Karslioglu
authored
Merge branch 'master' into dependabot/pip/pillow-9.3.0
2 parents 5bbd8f8 + f26db6b commit 8025f23

File tree

5 files changed

+998
-1
lines changed

5 files changed

+998
-1
lines changed

.jenkins/validate_tutorials_built.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"recipes/profiler_recipe",
4040
"recipes/save_load_across_devices",
4141
"recipes/warmstarting_model_using_parameters_from_a_different_model",
42+
"dynamo_tutorial",
4243
"recipes/dynamic_quantization",
4344
"recipes/saving_and_loading_a_general_checkpoint",
4445
"recipes/benchmark",
@@ -51,6 +52,7 @@
5152
"hyperparameter_tuning_tutorial",
5253
"flask_rest_api_tutorial",
5354
"text_to_speech_with_torchaudio",
55+
"ax_multiobjective_nas_tutorial"
5456
]
5557

5658

beginner_source/basics/optimization_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
===========================
1414
1515
Now that we have a model and data it's time to train, validate and test our model by optimizing its parameters on
16-
our data. Training a model is an iterative process; in each iteration (called an *epoch*) the model makes a guess about the output, calculates
16+
our data. Training a model is an iterative process; in each iteration the model makes a guess about the output, calculates
1717
the error in its guess (*loss*), collects the derivatives of the error with respect to its parameters (as we saw in
1818
the `previous section <autograd_tutorial.html>`_), and **optimizes** these parameters using gradient descent. For a more
1919
detailed walkthrough of this process, check out this video on `backpropagation from 3Blue1Brown <https://www.youtube.com/watch?v=tIeHLnjs5U8>`__.

index.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,13 @@ What's new in PyTorch tutorials?
517517
:link: intermediate/ax_multiobjective_nas_tutorial.html
518518
:tags: Model-Optimization,Best-Practice,Ax,TorchX
519519

520+
.. customcarditem::
521+
:header: TorchDynamo and TorchInductor Tutorial
522+
:card_description: Speed up your models with minimal code changes using TorchDynamo and TorchInductor, the latest PyTorch compiler solution.
523+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
524+
:link: intermediate/dynamo_tutorial.html
525+
:tags: Model-Optimization
526+
520527
.. Parallel-and-Distributed-Training
521528
522529
@@ -901,6 +908,7 @@ Additional Resources
901908
intermediate/torchserve_with_ipex_2
902909
intermediate/nvfuser_intro_tutorial
903910
intermediate/ax_multiobjective_nas_tutorial
911+
intermediate/dynamo_tutorial
904912

905913
.. toctree::
906914
:maxdepth: 2

0 commit comments

Comments
 (0)