fix readmes

This commit is contained in:
John Schulman
2017-08-27 22:22:14 -07:00
parent d9f194f797
commit aa6e58bdf1
3 changed files with 3 additions and 3 deletions

View File

@@ -18,5 +18,5 @@ pip install -e .
- [ACKTR](baselines/acktr) - [ACKTR](baselines/acktr)
- [DDPG](baselines/ddpg) - [DDPG](baselines/ddpg)
- [DQN](baselines/deepq) - [DQN](baselines/deepq)
- [PPO](baselines/pposgd) - [PPO](baselines/ppo1)
- [TRPO](baselines/trpo_mpi) - [TRPO](baselines/trpo_mpi)

View File

@@ -2,6 +2,6 @@
- Original paper: https://arxiv.org/abs/1707.06347 - Original paper: https://arxiv.org/abs/1707.06347
- Baselines blog post: https://blog.openai.com/openai-baselines-ppo/ - Baselines blog post: https://blog.openai.com/openai-baselines-ppo/
- `python -m baselines.ppo.run_atari` runs the algorithm for 40M frames = 10M timesteps on an Atari game. See help (`-h`) for more options. - `mpirun -np 8 python -m baselines.ppo.run_atari` runs the algorithm for 40M frames = 10M timesteps on an Atari game. See help (`-h`) for more options.
- `python -m baselines.ppo.run_mujoco` runs the algorithm for 1M frames on a Mujoco environment. - `python -m baselines.ppo.run_mujoco` runs the algorithm for 1M frames on a Mujoco environment.

View File

@@ -2,5 +2,5 @@
- Original paper: https://arxiv.org/abs/1502.05477 - Original paper: https://arxiv.org/abs/1502.05477
- Baselines blog post https://blog.openai.com/openai-baselines-ppo/ - Baselines blog post https://blog.openai.com/openai-baselines-ppo/
- `python -m baselines.ppo1.run_atari` runs the algorithm for 40M frames = 10M timesteps on an Atari game. See help (`-h`) for more options. - `mpirun -np 16 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 timesteps on a Mujoco environment. - `python -m baselines.ppo1.run_mujoco` runs the algorithm for 1M timesteps on a Mujoco environment.