Skip to content

fix reference path links #3229

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 1 commit into from
Jan 13, 2025
Merged
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
8 changes: 4 additions & 4 deletions advanced_source/pendulum.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@

In the process, we will touch three crucial components of TorchRL:

* `environments <https://pytorch.org/rl/reference/envs.html>`__
* `transforms <https://pytorch.org/rl/reference/envs.html#transforms>`__
* `models (policy and value function) <https://pytorch.org/rl/reference/modules.html>`__
* `environments <https://pytorch.org/rl/stable/reference/envs.html>`__
* `transforms <https://pytorch.org/rl/stable/reference/envs.html#transforms>`__
* `models (policy and value function) <https://pytorch.org/rl/stable/reference/modules.html>`__

"""

Expand Down Expand Up @@ -384,7 +384,7 @@ def _reset(self, tensordict):
# convenient shortcuts to the content of the output and input spec containers.
#
# TorchRL offers multiple :class:`~torchrl.data.TensorSpec`
# `subclasses <https://pytorch.org/rl/reference/data.html#tensorspec>`_ to
# `subclasses <https://pytorch.org/rl/stable/reference/data.html#tensorspec>`_ to
# encode the environment's input and output characteristics.
#
# Specs shape
Expand Down
Loading