|
from easydict import EasyDict |
|
|
|
agent_num = 3 |
|
obs_dim = 26 |
|
collector_env_num = 8 |
|
evaluator_env_num = 32 |
|
|
|
main_config = dict( |
|
exp_name='gfootball_keeper_mappo_seed0', |
|
env=dict( |
|
env_name='academy_3_vs_1_with_keeper', |
|
agent_num=agent_num, |
|
obs_dim=obs_dim, |
|
n_evaluator_episode=32, |
|
stop_value=1, |
|
collector_env_num=collector_env_num, |
|
evaluator_env_num=evaluator_env_num, |
|
manager=dict( |
|
shared_memory=False, |
|
reset_timeout=6000, |
|
), |
|
), |
|
policy=dict( |
|
cuda=True, |
|
multi_agent=True, |
|
model=dict( |
|
|
|
|
|
agent_obs_shape=obs_dim, |
|
global_obs_shape=int(obs_dim * 2), |
|
|
|
action_shape=19, |
|
), |
|
learn=dict( |
|
epoch_per_collect=10, |
|
batch_size=3200, |
|
learning_rate=5e-4, |
|
|
|
|
|
|
|
|
|
value_weight=0.5, |
|
|
|
entropy_weight=0.01, |
|
|
|
clip_ratio=0.05, |
|
|
|
adv_norm=False, |
|
value_norm=True, |
|
ppo_param_init=True, |
|
grad_clip_type='clip_norm', |
|
grad_clip_value=10, |
|
ignore_done=False, |
|
), |
|
collect=dict(env_num=collector_env_num, n_sample=3200), |
|
eval=dict(env_num=evaluator_env_num, evaluator=dict(eval_freq=50, )), |
|
), |
|
) |
|
main_config = EasyDict(main_config) |
|
create_config = dict( |
|
env=dict( |
|
type='gfootball-academy', |
|
import_names=['dizoo.gfootball.envs.gfootball_academy_env'], |
|
), |
|
env_manager=dict(type='subprocess'), |
|
policy=dict(type='ppo'), |
|
) |
|
create_config = EasyDict(create_config) |
|
|
|
if __name__ == "__main__": |
|
|
|
from ding.entry import serial_pipeline_onpolicy |
|
serial_pipeline_onpolicy([main_config, create_config], seed=0) |
|
|