File size: 2,622 Bytes
079c32c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
from easydict import EasyDict
agent_num = 8
collector_env_num = 8
evaluator_env_num = 8
special_global_state = True
smac_3s5zvs3s6z_masac_default_config = dict(
exp_name='smac_3s5z_vs_3s6z_masac_seed0',
env=dict(
map_name='3s5z_vs_3s6z',
difficulty=7,
reward_only_positive=True,
mirror_opponent=False,
agent_num=agent_num,
collector_env_num=collector_env_num,
evaluator_env_num=evaluator_env_num,
n_evaluator_episode=32,
stop_value=0.99,
death_mask=True,
special_global_state=special_global_state,
# save_replay_episodes = 1,
manager=dict(
shared_memory=False,
reset_timeout=6000,
),
),
policy=dict(
cuda=True,
on_policy=False,
random_collect_size=0,
model=dict(
agent_obs_shape=159,
global_obs_shape=314,
action_shape=15,
twin_critic=True,
actor_head_hidden_size=512,
critic_head_hidden_size=1024,
),
learn=dict(
update_per_collect=50,
batch_size=320,
learning_rate_q=5e-4,
learning_rate_policy=5e-4,
learning_rate_alpha=5e-5,
ignore_done=False,
target_theta=0.005,
discount_factor=0.99,
alpha=0.2,
auto_alpha=True,
log_space=True,
),
collect=dict(
env_num=collector_env_num,
n_sample=1600,
unroll_len=1,
),
command=dict(),
eval=dict(
evaluator=dict(eval_freq=2000, ),
env_num=evaluator_env_num,
),
other=dict(
eps=dict(
type='linear',
start=1,
end=0.05,
decay=100000,
),
replay_buffer=dict(replay_buffer_size=1000000, ),
),
),
)
smac_3s5zvs3s6z_masac_default_config = EasyDict(smac_3s5zvs3s6z_masac_default_config)
main_config = smac_3s5zvs3s6z_masac_default_config
smac_3s5zvs3s6z_masac_default_create_config = dict(
env=dict(
type='smac',
import_names=['dizoo.smac.envs.smac_env'],
),
env_manager=dict(type='subprocess'),
policy=dict(type='sac_discrete', ),
)
smac_3s5zvs3s6z_masac_default_create_config = EasyDict(smac_3s5zvs3s6z_masac_default_create_config)
create_config = smac_3s5zvs3s6z_masac_default_create_config
if __name__ == '__main__':
from ding.entry import serial_pipeline
serial_pipeline((main_config, create_config), seed=0)
|