Closed himanshub16 closed 6 years ago
The gitignore has been used from https://github.com/github/gitignore/blob/master/Python.gitignore.
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
The
gitignore
has been used from https://github.com/github/gitignore/blob/master/Python.gitignore.Directory tree before commit
Directory tree after commit