atari-dqn.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Runs on a single g3.4xl node
  2. # See https://github.com/ray-project/rl-experiments for results
  3. atari-basic-dqn:
  4. env:
  5. grid_search:
  6. - ALE/Breakout-v5
  7. - ALE/BeamRider-v5
  8. - ALE/Qbert-v5
  9. - ALE/SpaceInvaders-v5
  10. run: DQN
  11. config:
  12. # Works for both torch and tf.
  13. framework: torch
  14. # Make analogous to old v4 + NoFrameskip.
  15. env_config:
  16. frameskip: 1
  17. full_action_space: false
  18. repeat_action_probability: 0.0
  19. double_q: false
  20. dueling: false
  21. num_atoms: 1
  22. noisy: false
  23. replay_buffer_config:
  24. type: MultiAgentReplayBuffer
  25. capacity: 1000000
  26. num_steps_sampled_before_learning_starts: 20000
  27. n_step: 1
  28. target_network_update_freq: 8000
  29. lr: .0000625
  30. adam_epsilon: .00015
  31. hiddens: [512]
  32. rollout_fragment_length: 4
  33. train_batch_size: 32
  34. exploration_config:
  35. epsilon_timesteps: 200000
  36. final_epsilon: 0.01
  37. num_gpus: 0.2
  38. min_sample_timesteps_per_iteration: 10000