Skip to content

Commit 5938ef6

Browse files
authored
Merge pull request #4 from Unity-Technologies/ppo-timestep
Fix timestep for PPO.ipynb
2 parents a3f1645 + 19919a8 commit 5938ef6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/PPO.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"outputs": [],
4444
"source": [
4545
"### General parameters\n",
46-
"max_steps = 10000 # Set maximum number of steps to run environment.\n",
46+
"max_steps = 5e5 # Set maximum number of steps to run environment.\n",
4747
"run_path = \"ppo\" # The sub-directory name for model and summary statistics\n",
4848
"load_model = False # Whether to load a saved model.\n",
4949
"train_model = True # Whether to train the model.\n",

0 commit comments

Comments
 (0)