openai / maddpg

Code for the MADDPG algorithm from the paper "Multi-Agent Actor-Critic for Mixed Cooperative-Competitive Environments"
https://arxiv.org/pdf/1706.02275.pdf
MIT License
1.6k stars 484 forks source link

Remove pycache and add gitignore #1

Closed himanshub16 closed 6 years ago

himanshub16 commented 6 years ago

The gitignore has been used from https://github.com/github/gitignore/blob/master/Python.gitignore.

Directory tree before commit

.
├── experiments
│   ├── __pycache__
│   │   └── model.cpython-35.pyc
│   └── train.py
├── maddpg
│   ├── common
│   │   ├── distributions.py
│   │   ├── __pycache__
│   │   │   ├── distributions.cpython-35.pyc
│   │   │   └── tf_util.cpython-35.pyc
│   │   └── tf_util.py
│   ├── __init__.py
│   ├── __pycache__
│   │   └── __init__.cpython-35.pyc
│   └── trainer
│       ├── maddpg.py
│       ├── __pycache__
│       │   ├── ddpg.cpython-35.pyc
│       │   ├── maddpg.cpython-35.pyc
│       │   ├── maddpg_recurrent.cpython-35.pyc
│       │   ├── pg.cpython-35.pyc
│       │   ├── qac.cpython-35.pyc
│       │   └── replay_buffer.cpython-35.pyc
│       └── replay_buffer.py
├── README.md
└── setup.py

8 directories, 18 files

Directory tree after commit

.
├── experiments
│   └── train.py
├── maddpg
│   ├── common
│   │   ├── distributions.py
│   │   └── tf_util.py
│   ├── __init__.py
│   └── trainer
│       ├── maddpg.py
│       └── replay_buffer.py
├── README.md
└── setup.py

4 directories, 8 files