from easydict import EasyDict collector_env_num = 8 evaluator_env_num = 8 nstep = 5 minigrid_ppo_ngu_config = dict( exp_name='minigrid_doorkey_ngu_seed0', env=dict( collector_env_num=collector_env_num, evaluator_env_num=evaluator_env_num, n_evaluator_episode=evaluator_env_num, # typical MiniGrid env id: # {'MiniGrid-Empty-8x8-v0', 'MiniGrid-FourRooms-v0', 'MiniGrid-DoorKey-8x8-v0','MiniGrid-DoorKey-16x16-v0'}, # please refer to https://github.com/Farama-Foundation/MiniGrid for details. env_id='MiniGrid-DoorKey-16x16-v0', obs_plus_prev_action_reward=True, # use specific env wrapper for ngu policy max_step=300, stop_value=0.96, ), rnd_reward_model=dict( intrinsic_reward_type='add', learning_rate=5e-4, obs_shape=2835, action_shape=7, batch_size=320, # transitions update_per_collect=10, # 32*100/320=10 only_use_last_five_frames_for_icm_rnd=False, clear_buffer_per_iters=10, nstep=nstep, hidden_size_list=[128, 128, 64], type='rnd-ngu', ), episodic_reward_model=dict( # means if using rescale trick to the last non-zero reward # when combing extrinsic and intrinsic reward. # the rescale trick only used in: # 1. sparse reward env minigrid, in which the last non-zero reward is a strong positive signal # 2. the last reward of each episode directly reflects the agent's completion of the task, e.g. lunarlander # Note that the ngu intrinsic reward is a positive value (max value is 5), in these envs, # the last non-zero reward should not be overwhelmed by intrinsic rewards, so we need rescale the # original last nonzero extrinsic reward. # please refer to ngu_reward_model for details. last_nonzero_reward_rescale=True, # means the rescale value for the last non-zero reward, only used when last_nonzero_reward_rescale is True # please refer to ngu_reward_model for details. last_nonzero_reward_weight=100, intrinsic_reward_type='add', learning_rate=5e-4, obs_shape=2739, action_shape=7, batch_size=320, # transitions update_per_collect=10, # 32*100/64=50 only_use_last_five_frames_for_icm_rnd=False, clear_buffer_per_iters=10, nstep=nstep, hidden_size_list=[128, 128, 64], type='episodic', ), policy=dict( cuda=True, priority=True, priority_IS_weight=True, discount_factor=0.997, nstep=nstep, burnin_step=2, # (int) is the total length of [sequence sample] minus # the length of burnin part in [sequence sample], # i.e., = = + learn_unroll_len=298, # set this key according to the episode length model=dict( obs_shape=2739, action_shape=7, encoder_hidden_size_list=[128, 128, 512], collector_env_num=collector_env_num, ), learn=dict( update_per_collect=16, batch_size=64, learning_rate=1e-4, target_update_theta=0.001, ), collect=dict( # NOTE: It is important that set key traj_len_inf=True here, # to make sure self._traj_len=INF in serial_sample_collector.py. # In sequence-based policy, for each collect_env, # we want to collect data of length self._traj_len=INF # unless the episode enters the 'done' state. # In each collect phase, we collect a total of sequence samples. n_sample=32, traj_len_inf=True, env_num=collector_env_num, ), eval=dict(env_num=evaluator_env_num, ), other=dict( eps=dict( type='exp', start=0.95, end=0.05, decay=1e5, ), replay_buffer=dict( replay_buffer_size=30000, # (Float type) How much prioritization is used: 0 means no prioritization while 1 means full alpha=0.6, # (Float type) How much correction is used: 0 means no correction while 1 means full correction beta=0.4, ) ), ), ) minigrid_ppo_ngu_config = EasyDict(minigrid_ppo_ngu_config) main_config = minigrid_ppo_ngu_config minigrid_ppo_ngu_create_config = dict( env=dict( type='minigrid', import_names=['dizoo.minigrid.envs.minigrid_env'], ), env_manager=dict(type='subprocess'), policy=dict(type='ngu'), rnd_reward_model=dict(type='rnd-ngu'), episodic_reward_model=dict(type='episodic'), ) minigrid_ppo_ngu_create_config = EasyDict(minigrid_ppo_ngu_create_config) create_config = minigrid_ppo_ngu_create_config if __name__ == "__main__": # or you can enter `ding -m serial_ngu -c minigrid_ngu_config.py -s 0` from ding.entry import serial_pipeline_ngu serial_pipeline_ngu([main_config, create_config], seed=0)