Skip to content

Commit 046693d

Browse files
authored
Missing quote in PPO (#2486)
1 parent e4d58b7 commit 046693d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intermediate_source/reinforcement_ppo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@
337337
print("Shape of the rollout TensorDict:", rollout.batch_size)
338338

339339
######################################################################
340-
# Our rollout data has a shape of ``torch.Size([3])`, which matches the number of steps
340+
# Our rollout data has a shape of ``torch.Size([3])``, which matches the number of steps
341341
# we ran it for. The ``"next"`` entry points to the data coming after the current step.
342342
# In most cases, the ``"next""`` data at time `t` matches the data at ``t+1``, but this
343343
# may not be the case if we are using some specific transformations (for example, multi-step).

0 commit comments

Comments
 (0)