Skip to content

Commit 80d9bf2

Browse files
Minor change
1 parent f04ad6c commit 80d9bf2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ppo_with_pytorch.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,9 @@ def eval_unroll(agent, env, length):
207207
return episodes, episode_reward / episodes
208208

209209
def train_unroll(agent, env, observation, num_unrolls, unroll_length):
210-
"""Return step data over multple unrolls."""
210+
"""
211+
Return step data over multple unrolls.
212+
"""
211213
sd = StepData([], [], [], [], [], [])
212214
for _ in range(num_unrolls):
213215
one_unroll = StepData([observation], [], [], [], [], [])

0 commit comments

Comments
 (0)