gomoku / DI-engine /dizoo /atari /config /serial /spaceinvaders /spaceinvaders_dqfd_config.py
zjowowen's picture
init space
079c32c
raw
history blame
No virus
2.94 kB
from easydict import EasyDict
spaceinvaders_dqfd_config = dict(
exp_name='spaceinvaders_dqfd_seed0',
env=dict(
collector_env_num=8,
evaluator_env_num=8,
n_evaluator_episode=8,
stop_value=10000000000,
env_id='SpaceInvadersNoFrameskip-v4',
#'ALE/SpaceInvaders-v5' is available. But special setting is needed after gym make.
frame_stack=4,
),
policy=dict(
cuda=True,
priority=True,
model=dict(
obs_shape=[4, 84, 84],
action_shape=6,
encoder_hidden_size_list=[128, 128, 512],
),
nstep=3,
discount_factor=0.99,
learn=dict(
update_per_collect=10,
batch_size=32,
learning_rate=0.0001,
target_update_freq=500,
lambda1=1.0, # n-step return
lambda2=1.0, # supervised loss
lambda3=1e-5, # L2 regularization
per_train_iter_k=10,
expert_replay_buffer_size=10000, # justify the buffer size of the expert buffer
),
collect=dict(
n_sample=100,
# Users should add their own model path here. Model path should lead to a model.
# Absolute path is recommended.
# In DI-engine, it is ``exp_name/ckpt/ckpt_best.pth.tar``.
model_path='model_path_placeholder',
),
eval=dict(evaluator=dict(eval_freq=4000, )),
other=dict(
eps=dict(
type='exp',
start=1.,
end=0.05,
decay=1000000,
),
replay_buffer=dict(replay_buffer_size=400000, ),
),
),
)
spaceinvaders_dqfd_config = EasyDict(spaceinvaders_dqfd_config)
main_config = spaceinvaders_dqfd_config
spaceinvaders_dqfd_create_config = dict(
env=dict(
type='atari',
import_names=['dizoo.atari.envs.atari_env'],
),
env_manager=dict(type='subprocess'),
policy=dict(type='dqfd'),
)
spaceinvaders_dqfd_create_config = EasyDict(spaceinvaders_dqfd_create_config)
create_config = spaceinvaders_dqfd_create_config
if __name__ == '__main__':
# or you can enter `ding -m serial_dqfd -c spaceinvaders_dqfd_config.py -s 0`
# then input ``spaceinvaders_dqfd_config.py`` upon the instructions.
# The reason we need to input the dqfd config is we have to borrow its ``_get_train_sample`` function
# in the collector part even though the expert model may be generated from other Q learning algos.
from ding.entry.serial_entry_dqfd import serial_pipeline_dqfd
from dizoo.atari.config.serial.spaceinvaders import spaceinvaders_dqfd_config, spaceinvaders_dqfd_create_config
expert_main_config = spaceinvaders_dqfd_config
expert_create_config = spaceinvaders_dqfd_create_config
serial_pipeline_dqfd([main_config, create_config], [expert_main_config, expert_create_config], seed=0)