Skip to content

Commit 3bb0207

Browse files
author
Svetlana Karslioglu
authored
Merge branch 'main' into checkpoint_tutorial
2 parents 38883d8 + e7c86fd commit 3bb0207

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/build-tutorials.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535
runs-on: ${{ matrix.runner }}
3636
env:
37-
DOCKER_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/pytorch/pytorch-linux-bionic-cuda12.1-cudnn8-py3-gcc9"
37+
DOCKER_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/pytorch/pytorch-linux-focal-cuda12.1-cudnn8-py3-gcc9"
3838
CUDA_VERSION: "9"
3939
steps:
4040
- name: Setup SSH (Click me for login details)
@@ -115,8 +115,9 @@ jobs:
115115
name: pytorch_tutorial_build_manager
116116
needs: worker
117117
runs-on: [self-hosted, linux.2xlarge]
118+
environment: ${{ github.ref == 'refs/heads/main' && 'pytorchbot-env' || '' }}
118119
env:
119-
DOCKER_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/pytorch/pytorch-linux-bionic-cuda12.1-cudnn8-py3-gcc9"
120+
DOCKER_IMAGE: "308535385114.dkr.ecr.us-east-1.amazonaws.com/pytorch/pytorch-linux-focal-cuda12.1-cudnn8-py3-gcc9"
120121
CUDA_VERSION: "9"
121122
steps:
122123
- name: Setup SSH (Click me for login details)

_static/img/replaybuffer_traj.png

246 KB
Loading

intermediate_source/coding_ddpg.py renamed to advanced_source/coding_ddpg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ def make_replay_buffer(buffer_size, batch_size, random_crop_len, prefetch=3, prb
988988
# samples sub-trajectories of 2 time steps each.
989989
#
990990
# .. figure:: /_static/img/replaybuffer_traj.png
991-
# :alt: Storign trajectories in the replay buffer
991+
# :alt: Storing trajectories in the replay buffer
992992
#
993993
# Let's start with the number of frames stored in the buffer
994994

index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ What's new in PyTorch tutorials?
299299
:header: Code a DDPG Loss
300300
:card_description: Use TorchRL to code a DDPG Loss
301301
:image: _static/img/half_cheetah.gif
302-
:link: intermediate/coding_ddpg.html
302+
:link: advanced/coding_ddpg.html
303303
:tags: Reinforcement-Learning
304304

305305

intermediate_source/char_rnn_generation_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Author**: `Sean Robertson <https://github.com/spro>`_
66
77
This is our second of three tutorials on "NLP From Scratch".
8-
In the `first tutorial </intermediate/char_rnn_classification_tutorial>`
8+
In the `first tutorial </intermediate/char_rnn_classification_tutorial>`_
99
we used a RNN to classify names into their language of origin. This time
1010
we'll turn around and generate names from languages.
1111

prototype_source/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This directory contains tutorials and recipes demonstrating prototype features in PyTorch.
44

5-
**Prototype features** are not available as part of binary distributions like PyPI or Conda (except maybe behind run-time flags). To test these features we would, depending on the feature, recommend building from master or using the nightly wheels that are made available on pytorch.org.
5+
**Prototype features** are part of the release and are available as part of the binary distributions such as PyPI or Conda. To test these features you can, depending on the feature, build from the master branch or use the nightly wheels that are made available at pytorch.org. You can also by use the release wheels available from PyPI or Conda. Prototype features are provided as a technical preview and can be altered later on. The PyTorch team does not recommend using them in production pipelines.
66

77
These are intentionally left out of the pytorch.org/tutorials build and will not show up on the website.
88

0 commit comments

Comments
 (0)