Skip to content

Commit 3e24451

Browse files
committed
update ppo
1 parent b2d737c commit 3e24451

6 files changed

+2
-432
lines changed

ppo_actor

-68.9 KB
Binary file not shown.

ppo_continuous_multiprocess2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def worker(id, ppo, rewards_queue):
356356
# env.render()
357357
a = ppo.choose_action(s)
358358
s_, r, done, _ = env.step(a)
359-
ppo.store_transition(s, a, (r+8)/8)
359+
ppo.store_transition(s, a, (r+8)/8) # useful for pendulum
360360
s = s_
361361
ep_r += r
362362

0 commit comments

Comments
 (0)