Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added _static/img/tensorboard_figure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/tensorboard_first_view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/tensorboard_images.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/tensorboard_model_viz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/tensorboard_pr_curves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/tensorboard_projector.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/tensorboard_scalar_runs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/img/thumbnails/pytorch_tensorboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ Getting Started

.. .. galleryitem:: beginner/saving_loading_models.py

.. customgalleryitem::
:figure: /_static/img/thumbnails/pytorch_tensorboard.png
:tooltip: Learn to use TensorBoard to visualize data and model training
:description: :doc:`intermediate/tensorboard_tutorial`

.. customgalleryitem::
:figure: /_static/img/torch.nn.png
:tooltip: Use torch.nn to create and train a neural network
Expand Down Expand Up @@ -275,6 +280,7 @@ PyTorch in Other Languages
beginner/pytorch_with_examples
beginner/transfer_learning_tutorial
beginner/deploy_seq2seq_hybrid_frontend_tutorial
intermediate/tensorboard_tutorial
beginner/saving_loading_models
beginner/nn_tutorial

Expand Down
18 changes: 11 additions & 7 deletions intermediate_source/README.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
Intermediate tutorials
----------------------

1. char_rnn_classification_tutorial.py
1. tensorboard_tutorial.py
Classifying Names with a Character-Level RNN
https://pytorch.org/tutorials/beginner/tensorboard_tutorial.html

2. char_rnn_classification_tutorial.py
Classifying Names with a Character-Level RNN
https://pytorch.org/tutorials/intermediate/char_rnn_classification_tutorial.html

2. char_rnn_generation_tutorial.py
3. char_rnn_generation_tutorial.py
Generating Names with a Character-Level RNN
https://pytorch.org/tutorials/intermediate/char_rnn_generation_tutorial.html

3. seq2seq_translation_tutorial.py
4. seq2seq_translation_tutorial.py
Translation with a Sequence to Sequence Network and Attention
https://pytorch.org/tutorials/intermediate/seq2seq_translation_tutorial.html

4. reinforcement_q_learning.py
5. reinforcement_q_learning.py
Reinforcement Learning (DQN) Tutorial
https://pytorch.org/tutorials/intermediate/reinforcement_q_learning.html

5. dist_tuto.rst
6. dist_tuto.rst
Writing Distributed Applications with PyTorch
https://pytorch.org/tutorials/intermediate/dist_tuto.html

6. spatial_transformer_tutorial
7. spatial_transformer_tutorial
Spatial Transformer Networks Tutorial
https://pytorch.org/tutorials/intermediate/spatial_transformer_tutorial.html

7. flask_rest_api_tutorial.py
8. flask_rest_api_tutorial.py
Deploying PyTorch and Building a REST API using Flask
https://pytorch.org/tutorials/beginner/flask_rest_api_tutorial.html
Loading