From 37c2fba2e29df422a690f157bb4a33c9fc33ae07 Mon Sep 17 00:00:00 2001 From: Vincent Moens Date: Sat, 24 Jun 2023 07:00:09 +0100 Subject: [PATCH] Missing quote in PPO --- intermediate_source/reinforcement_ppo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intermediate_source/reinforcement_ppo.py b/intermediate_source/reinforcement_ppo.py index dc6eca94931..b7baba8c1f3 100644 --- a/intermediate_source/reinforcement_ppo.py +++ b/intermediate_source/reinforcement_ppo.py @@ -337,7 +337,7 @@ print("Shape of the rollout TensorDict:", rollout.batch_size) ###################################################################### -# Our rollout data has a shape of ``torch.Size([3])`, which matches the number of steps +# Our rollout data has a shape of ``torch.Size([3])``, which matches the number of steps # we ran it for. The ``"next"`` entry points to the data coming after the current step. # In most cases, the ``"next""`` data at time `t` matches the data at ``t+1``, but this # may not be the case if we are using some specific transformations (for example, multi-step).