Files
baselines/baselines/ppo1
2019-04-05 15:23:46 -07:00
..
2017-08-27 22:36:24 -07:00
2018-01-25 18:54:24 -08:00
2019-04-05 15:23:46 -07:00
2018-06-06 11:39:13 -07:00
2018-01-25 18:54:24 -08:00
2018-06-06 11:39:13 -07:00

PPOSGD

  • Original paper: https://arxiv.org/abs/1707.06347

  • Baselines blog post: https://blog.openai.com/openai-baselines-ppo/

  • mpirun -np 8 python -m baselines.ppo1.run_atari runs the algorithm for 40M frames = 10M timesteps on an Atari game. See help (-h) for more options.

  • python -m baselines.ppo1.run_mujoco runs the algorithm for 1M frames on a Mujoco environment.

  • Train mujoco 3d humanoid (with optimal-ish hyperparameters): mpirun -np 16 python -m baselines.ppo1.run_humanoid --model-path=/path/to/model

  • Render the 3d humanoid: python -m baselines.ppo1.run_humanoid --play --model-path=/path/to/model