Giter Club home page Giter Club logo

tape's Introduction

TAPE: Topology-based Multi-Agent Policy Gradient

This is the code repository for AAAI 2024 paper TAPE: Leveraging Agent Topology for Cooperative Multi-Agent Policy Gradient.

This repo is built upon SMAC, DOP and PAC.

To run experiments:

First install SMAC, then

for stochastic TAPE,

cd stochastic  
bash runalgo.sh  

for deterministic TAPE,

cd deterministic  
bash runalgo.sh

To kill running processes:

pkill -u ($youruser) python
pkill -u ($youruser) Main_Thread

To run with other graph models:

You can use networkx package to generate graphs and use the adjcency matrix for the agent topology

import networkx as nx
import matplotlib.pyplot as plt
import numpy as np

# Create a Watts-Strogatz small-world network
n = 20
k = 4 
p = 0.1 
G = nx.watts_strogatz_graph(n, k, p)

# plot
nx.draw(G, with_labels=True)
plt.show()

A = nx.adjacency_matrix(G)
for i in range(n):
    A[i,i]=1
print(A.todense())

Citation

Please cite

@article{lou2023tape,
  title={TAPE: Leveraging Agent Topology for Cooperative Multi-Agent Policy Gradient},
  author={Lou, Xingzhou and Zhang, Junge and Norman, Timothy J and Huang, Kaiqi and Du, Yali},
  journal={arXiv preprint arXiv:2312.15667},
  year={2023}
}

tape's People

Contributors

lxzgordon avatar

Stargazers

Jeff Carpenter avatar Hanhan avatar  avatar

Watchers

 avatar

Forkers

beaulolve

tape's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.