Skip to content

Commit

Permalink
Missing quote in PPO (pytorch#2486)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens authored Jun 26, 2023
1 parent e4d58b7 commit 046693d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intermediate_source/reinforcement_ppo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 046693d

Please sign in to comment.