项目作者: xiangyu-liu

项目描述 :
Ablation Analysis on Three Main Components in Actor-Attention-Critic for Multi-Agent Reinforcement Learning
高级语言: Python
项目地址: git://github.com/xiangyu-liu/MAAC.git
创建时间: 2019-11-12T10:14:33Z
项目社区:https://github.com/xiangyu-liu/MAAC

开源协议:MIT License

下载


Multi-Actor-Attention-Critic

Code for Actor-Attention-Critic for Multi-Agent Reinforcement Learning (Iqbal and Sha, ICML 2019)

Requirements

The versions are just what I used and not necessarily strict requirements.

How to Run

All training code is contained within main.py. To view options simply run:

  1. python main.py --help

The “Cooperative Treasure Collection” environment from our paper is referred to as fullobs_collect_treasure in this repo, and “Rover-Tower” is referred to as multi_speaker_listener.

In order to match our experiments, the maximum episode length should be set to 100 for Cooperative Treasure Collection and 25 for Rover-Tower.

Citing our work

If you use this repo in your work, please consider citing the corresponding paper:

  1. @InProceedings{pmlr-v97-iqbal19a,
  2. title = {Actor-Attention-Critic for Multi-Agent Reinforcement Learning},
  3. author = {Iqbal, Shariq and Sha, Fei},
  4. booktitle = {Proceedings of the 36th International Conference on Machine Learning},
  5. pages = {2961--2970},
  6. year = {2019},
  7. editor = {Chaudhuri, Kamalika and Salakhutdinov, Ruslan},
  8. volume = {97},
  9. series = {Proceedings of Machine Learning Research},
  10. address = {Long Beach, California, USA},
  11. month = {09--15 Jun},
  12. publisher = {PMLR},
  13. pdf = {http://proceedings.mlr.press/v97/iqbal19a/iqbal19a.pdf},
  14. url = {http://proceedings.mlr.press/v97/iqbal19a.html},
  15. }