atari-apex.yaml 899 B

12345678910111213141516171819202122232425262728293031323334
  1. # Runs on a single g3.16xl AWS machine
  2. apex:
  3. env:
  4. grid_search:
  5. - BreakoutNoFrameskip-v4
  6. - BeamRiderNoFrameskip-v4
  7. - QbertNoFrameskip-v4
  8. - SpaceInvadersNoFrameskip-v4
  9. run: APEX
  10. config:
  11. # Works for both torch and tf.
  12. framework: tf
  13. double_q: false
  14. dueling: false
  15. num_atoms: 1
  16. noisy: false
  17. n_step: 3
  18. lr: .0001
  19. adam_epsilon: .00015
  20. hiddens: [512]
  21. buffer_size: 1000000
  22. prioritized_replay_alpha: 0.5
  23. final_prioritized_replay_beta: 1.0
  24. prioritized_replay_beta_annealing_timesteps: 2000000
  25. num_gpus: 1
  26. # APEX
  27. num_workers: 8
  28. num_envs_per_worker: 8
  29. rollout_fragment_length: 20
  30. train_batch_size: 512
  31. target_network_update_freq: 50000
  32. timesteps_per_iteration: 25000