27 lines
779 B
YAML
27 lines
779 B
YAML
# @OldAPIStack
|
|
# Runs on a g3.16xl node with 3 m4.16xl workers
|
|
# See https://github.com/ray-project/rl-experiments for results
|
|
atari-impala:
|
|
env:
|
|
grid_search:
|
|
- ale_py:ALE/Breakout-v5
|
|
- ale_py:ALE/BeamRider-v5
|
|
- ale_py:ALE/Qbert-v5
|
|
- ale_py:ALE/SpaceInvaders-v5
|
|
run: IMPALA
|
|
config:
|
|
# Make analogous to old v4 + NoFrameskip.
|
|
env_config:
|
|
frameskip: 1
|
|
full_action_space: false
|
|
repeat_action_probability: 0.0
|
|
rollout_fragment_length: 50
|
|
train_batch_size: 500
|
|
num_env_runners: 32
|
|
num_envs_per_env_runner: 5
|
|
clip_rewards: True
|
|
lr_schedule: [
|
|
[0, 0.0005],
|
|
[20000000, 0.000000000001],
|
|
]
|