├── README.md ├── agent.py ├── common ├── __pycache__ │ ├── arguments.cpython-36.pyc │ ├── replay_buffer.cpython-36.pyc │ └── utils.cpython-36.pyc ├── arguments.py ├── replay_buffer.py └── utils.py ├── maddpg ├── __pycache__ │ ├── actor_critic.cpython-36.pyc │ └── maddpg.cpython-36.pyc ├── actor_critic.py └── maddpg.py ├── main.py ├── model └── simple_tag │ ├── agent_0 │ ├── actor_params.pkl │ └── critic_params.pkl │ ├── agent_1 │ ├── actor_params.pkl │ └── critic_params.pkl │ └── agent_2 │ ├── actor_params.pkl │ └── critic_params.pkl └── runner.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/agent.py -------------------------------------------------------------------------------- /common/__pycache__/arguments.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/common/__pycache__/arguments.cpython-36.pyc -------------------------------------------------------------------------------- /common/__pycache__/replay_buffer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/common/__pycache__/replay_buffer.cpython-36.pyc -------------------------------------------------------------------------------- /common/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/common/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /common/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/common/arguments.py -------------------------------------------------------------------------------- /common/replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/common/replay_buffer.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/common/utils.py -------------------------------------------------------------------------------- /maddpg/__pycache__/actor_critic.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/maddpg/__pycache__/actor_critic.cpython-36.pyc -------------------------------------------------------------------------------- /maddpg/__pycache__/maddpg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/maddpg/__pycache__/maddpg.cpython-36.pyc -------------------------------------------------------------------------------- /maddpg/actor_critic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/maddpg/actor_critic.py -------------------------------------------------------------------------------- /maddpg/maddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/maddpg/maddpg.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/main.py -------------------------------------------------------------------------------- /model/simple_tag/agent_0/actor_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/model/simple_tag/agent_0/actor_params.pkl -------------------------------------------------------------------------------- /model/simple_tag/agent_0/critic_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/model/simple_tag/agent_0/critic_params.pkl -------------------------------------------------------------------------------- /model/simple_tag/agent_1/actor_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/model/simple_tag/agent_1/actor_params.pkl -------------------------------------------------------------------------------- /model/simple_tag/agent_1/critic_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/model/simple_tag/agent_1/critic_params.pkl -------------------------------------------------------------------------------- /model/simple_tag/agent_2/actor_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/model/simple_tag/agent_2/actor_params.pkl -------------------------------------------------------------------------------- /model/simple_tag/agent_2/critic_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/model/simple_tag/agent_2/critic_params.pkl -------------------------------------------------------------------------------- /runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starry-sky6688/MADDPG/HEAD/runner.py --------------------------------------------------------------------------------