Skip to content

Commit

Permalink
Single agent total iteration limit
Browse files Browse the repository at this point in the history
  • Loading branch information
JacopoPan committed Feb 27, 2021
1 parent 191443b commit 68a9612
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions experiments/learning/singleagent.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,13 +236,13 @@
verbose=1,
best_model_save_path=filename+'/',
log_path=filename+'/',
eval_freq=int(5000/ARGS.cpu),
eval_freq=int(2000/ARGS.cpu),
deterministic=True,
render=False
)
model.learn(total_timesteps=int(1e12),
model.learn(total_timesteps=35000, #int(1e12),
callback=eval_callback,
log_interval=100
log_interval=100,
)

### Save the model #########################################
Expand Down

0 comments on commit 68a9612

Please sign in to comment.