Skip to content

Commit 443bb14

Browse files
authored
Let ppo_continuous_action.pyonly run 1M steps (#161)
1 parent b403a4b commit 443bb14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cleanrl/ppo_continuous_action.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def parse_args():
3737
# Algorithm specific arguments
3838
parser.add_argument("--env-id", type=str, default="HalfCheetahBulletEnv-v0",
3939
help="the id of the environment")
40-
parser.add_argument("--total-timesteps", type=int, default=2000000,
40+
parser.add_argument("--total-timesteps", type=int, default=1000000,
4141
help="total timesteps of the experiments")
4242
parser.add_argument("--learning-rate", type=float, default=3e-4,
4343
help="the learning rate of the optimizer")

0 commit comments

Comments
 (0)