Home

Awesome

- If you want high sample efficiency, please use qmix_high_sample_efficiency.yaml
- which uses 4 processes for training, slower but higher sample efficiency.
- Performance is *not* comparable of models trained with different number of processes. 

PyMARL2

Open-source code for Rethinking the Implementation Tricks and Monotonicity Constraint in Cooperative Multi-Agent Reinforcement Learning.

This repository is fine-tuned for StarCraft Multi-agent Challenge (SMAC). For other multi-agent tasks, we also recommend an optimized implementation of QMIX: https://github.com/marlbenchmark/off-policy.

StarCraft 2 version: SC2.4.10. difficulty: 7.

2022.10.10 update: add qmix_high_sample_efficiency.yaml, which uses 4 processes for training, slower but higher sample efficiency.

2021.10.28 update: add Google Football Environments [vdn_gfootball.yaml] (use `simple115 features`).

2021.10.4 update: add QMIX with attention (qmix_att.yaml) as a baseline for Communication tasks.

Finetuned-QMIX

There are so many code-level tricks in the Multi-agent Reinforcement Learning (MARL), such as:

Related Works

Using a few of tricks above (bold texts), we enabled QMIX (qmix.yaml) to solve almost all hard scenarios of SMAC (Fine-tuned hyperparameters for each scenarios).

SenariosDifficultyQMIX (batch_size=128)Finetuned-QMIX
8mEasy-100%
2c_vs_1scEasy-100%
2s3zEasy-100%
1c3s5zEasy-100%
3s5zEasy-100%
8m_vs_9mHard84%100%
5m_vs_6mHard84%90%
3s_vs_5zHard96%100%
bane_vs_baneHard100%100%
2c_vs_64zgHard100%100%
corridorSuper Hard0%100%
MMM2Super Hard98%100%
3s5z_vs_3s6zSuper Hard3%93%(hidden_size = 256, qmix_large.yaml)
27m_vs_30mSuper Hard56%100%
6h_vs_8zSuper Hard0%93%($\lambda$ = 0.3, epsilon_anneal_time = 500000)

Re-Evaluation

Afterwards, we re-evaluate numerous QMIX variants with normalized the tricks (a general set of hyperparameters), and find that QMIX achieves the SOTA.

ScenariosDifficultyValue-basedPolicy-based
QMIXVDNsQattenQPLEXWQMIXLICAVMIXDOPRIIT
2c_vs_64zgHard100%100%100%100%100%100%98%84%100%
8m_vs_9mHard100%100%100%95%95%48%75%96%95%
3s_vs_5zHard100%100%100%100%100%96%96%100%96%
5m_vs_6mHard90%90%90%90%90%53%9%63%67%
3s5z_vs_3s6zS-Hard75%43%62%68%56%0%56%0%75%
corridorS-Hard100%98%100%96%96%0%0%0%100%
6h_vs_8zS-Hard84%87%82%78%75%4%80%0%19%
MMM2S-Hard100%96%100%100%96%0%70%3%100%
27m_vs_30mS-Hard100%100%100%100%100%9%93%0%93%
Discrete PP-4039-393930393838
Avg. ScoreHard+94.9%91.2%92.7%92.5%90.5%29.2%67.4%44.1%84.0%

Communication

We also tested our QMIX-with-attention (qmix_att.yaml, $\lambda=0.3$, attention_heads=4) on some maps (from NDQ) that require communication.

Senarios (200w steps)DifficultyFinetuned-QMIX (No Communication)QMIX-with-attention ( Communication)
1o_10b_vs_1r-56%87%
1o_2r_vs_4r-50%95%
bane_vs_hM-0%0%

Google Football

We also tested VDN (vdn_gfootball.yaml) on some maps (from Google Football). Specially, we use simple115 features to train the model (The Google Football original paper use complex CNN features). We did not test QMIX because this environment does not provide global status information.

SenariosDifficultyVDN ($\lambda=1.0$)
academy_counterattack_hard-0.71 (Test Score)
academy_counterattack_easy-0.87 (Test Score)

Usage

PyMARL is WhiRL's framework for deep multi-agent reinforcement learning and includes implementations of the following algorithms:

Value-based Methods:

Actor Critic Methods:

Installation instructions

Install Python packages

# require Anaconda 3 or Miniconda 3
conda create -n pymarl python=3.8 -y
conda activate pymarl

bash install_dependecies.sh

Set up StarCraft II (2.4.10) and SMAC:

bash install_sc2.sh

This will download SC2.4.10 into the 3rdparty folder and copy the maps necessary to run over.

Set up Google Football:

bash install_gfootball.sh

Command Line Tool

Run an experiment

# For SMAC
python3 src/main.py --config=qmix --env-config=sc2 with env_args.map_name=corridor
# For Difficulty-Enhanced Predator-Prey
python3 src/main.py --config=qmix_predator_prey --env-config=stag_hunt with env_args.map_name=stag_hunt
# For Communication tasks
python3 src/main.py --config=qmix_att --env-config=sc2 with env_args.map_name=1o_10b_vs_1r
# For Google Football (Insufficient testing)
# map_name: academy_counterattack_easy, academy_counterattack_hard, five_vs_five...
python3 src/main.py --config=vdn_gfootball --env-config=gfootball with env_args.map_name=academy_counterattack_hard env_args.num_agents=4

The config files act as defaults for an algorithm or environment.

They are all located in src/config. --config refers to the config files in src/config/algs --env-config refers to the config files in src/config/envs

Run n parallel experiments

# bash run.sh config_name env_config_name map_name_list (arg_list threads_num gpu_list experinments_num)
bash run.sh qmix sc2 6h_vs_8z epsilon_anneal_time=500000,td_lambda=0.3 2 0 5

xxx_list is separated by ,.

All results will be stored in the Results folder and named with map_name.

Kill all training processes

# all python and game processes of current user will quit.
bash clean.sh

Citation

@article{hu2021rethinking,
      title={Rethinking the Implementation Tricks and Monotonicity Constraint in Cooperative Multi-Agent Reinforcement Learning}, 
      author={Jian Hu and Siyang Jiang and Seth Austin Harding and Haibin Wu and Shih-wei Liao},
      year={2021},
      eprint={2102.03479},
      archivePrefix={arXiv},
      primaryClass={cs.LG}
}