from copy import deepcopy from easydict import EasyDict spaceinvaders_mdqn_config = dict( exp_name='spaceinvaders_mdqn_seed0', env=dict( collector_env_num=8, evaluator_env_num=8, n_evaluator_episode=8, stop_value=10000, env_id='SpaceInvadersNoFrameskip-v0', #'ALE/SpaceInvaders-v5' is available. But special setting is needed after gym make. frame_stack=4, ), policy=dict( cuda=True, priority=False, model=dict( obs_shape=[4, 84, 84], action_shape=6, encoder_hidden_size_list=[128, 128, 512], ), nstep=1, discount_factor=0.99, entropy_tau=0.03, m_alpha=0.9, learn=dict( update_per_collect=10, batch_size=32, learning_rate=0.0001, target_update_freq=500, learner=dict(hook=dict(save_ckpt_after_iter=1000000, )) ), collect=dict(n_sample=100, ), 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_mdqn_config = EasyDict(spaceinvaders_mdqn_config) main_config = spaceinvaders_mdqn_config spaceinvaders_mdqn_create_config = dict( env=dict( type='atari', import_names=['dizoo.atari.envs.atari_env'], ), env_manager=dict(type='subprocess'), policy=dict(type='mdqn'), ) spaceinvaders_mdqn_create_config = EasyDict(spaceinvaders_mdqn_create_config) create_config = spaceinvaders_mdqn_create_config if __name__ == '__main__': # or you can enter ding -m serial -c spaceinvaders_mdqn_config.py -s 0 from ding.entry import serial_pipeline serial_pipeline((main_config, create_config), seed=0, max_env_step=int(3e7), dynamic_seed=False)