From 0fd1ce10508c83a3a2794d271d9553b001548441 Mon Sep 17 00:00:00 2001 From: Svetlana Karslioglu Date: Wed, 17 Sep 2025 14:36:02 -0700 Subject: [PATCH] Fix broken links in reinforcement.ppo doc --- intermediate_source/reinforcement_ppo.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/intermediate_source/reinforcement_ppo.py b/intermediate_source/reinforcement_ppo.py index 44d5c05a8a4..c707c0ebb19 100644 --- a/intermediate_source/reinforcement_ppo.py +++ b/intermediate_source/reinforcement_ppo.py @@ -25,12 +25,12 @@ We will cover six crucial components of TorchRL: -* `environments `__ -* `transforms `__ -* `models (policy and value function) `__ -* `loss modules `__ -* `data collectors `__ -* `replay buffers `__ +* `environments `__ +* `transforms `__ +* `models (policy and value function) `__ +* `loss modules `__ +* `data collectors `__ +* `replay buffers `__ """ @@ -466,7 +466,7 @@ # Data collector # -------------- # -# TorchRL provides a set of `DataCollector classes `__. +# TorchRL provides a set of `DataCollector classes `__. # Briefly, these classes execute three operations: reset an environment, # compute an action given the latest observation, execute a step in the environment, # and repeat the last two steps until the environment signals a stop (or reaches