privateboss commited on
Commit
69ddf4b
·
verified ·
1 Parent(s): a063d15

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +1 -1
config.py CHANGED
@@ -3,7 +3,7 @@ import numpy as np
3
  ENV_NAME = "MountainCarContinuous-v0"
4
  NUM_ENVS = 15 # 15 asynchronous environments running in parallel
5
  ROLLOUT_STEPS = 200 # Steps collected per environment per iteration
6
- TOTAL_ITERATIONS = 1500 # Replacing episode loops with iteration cycles
7
  GAMMA = 0.99
8
  CLIP_RATIO = 0.2
9
  POLICY_LR = 3e-4
 
3
  ENV_NAME = "MountainCarContinuous-v0"
4
  NUM_ENVS = 15 # 15 asynchronous environments running in parallel
5
  ROLLOUT_STEPS = 200 # Steps collected per environment per iteration
6
+ TOTAL_ITERATIONS = 1500 # Replacing episode loops with iteration cycles. which is 4.5million timesteps
7
  GAMMA = 0.99
8
  CLIP_RATIO = 0.2
9
  POLICY_LR = 3e-4