From 643184935ea69a42f39fb982beb0f5532bb24dd3 Mon Sep 17 00:00:00 2001 From: definitelyuncertain Date: Sat, 2 Dec 2017 22:00:28 +0530 Subject: [PATCH] Call ppo2 and not ppo1 --- baselines/ppo2/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baselines/ppo2/README.md b/baselines/ppo2/README.md index 53075e4..e244254 100644 --- a/baselines/ppo2/README.md +++ b/baselines/ppo2/README.md @@ -2,5 +2,5 @@ - 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. +- `mpirun -np 8 python -m baselines.ppo2.run_atari` runs the algorithm for 40M frames = 10M timesteps on an Atari game. See help (`-h`) for more options. +- `python -m baselines.ppo2.run_mujoco` runs the algorithm for 1M frames on a Mujoco environment.