├── .DS_Store ├── Conv MLP DQN Prioritised .ipynb ├── DRQN with Episodic Replay .ipynb ├── MARL DQN Prioritised.ipynb ├── MARL DRQN Distributed Vanilla.ipynb ├── MARL DRQN RIAL.ipynb ├── README.md ├── __pycache__ ├── agent_trainer.cpython-37.pyc ├── dqn_agent.cpython-37.pyc ├── drqn_agent.cpython-37.pyc ├── logic_controller.cpython-37.pyc └── pcb_envs.cpython-37.pyc ├── agents ├── __init__.py ├── dqn_agent.py ├── dqn_agent_target.py └── drqn_agent.py ├── learning_history.csv ├── pcb_twin ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── board.cpython-37.pyc │ ├── connector.cpython-37.pyc │ └── multipath_grid_env.cpython-37.pyc ├── board.py ├── connector.py └── multipath_grid_env.py ├── replay_buffers.py └── thesis_img.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/.DS_Store -------------------------------------------------------------------------------- /Conv MLP DQN Prioritised .ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/Conv MLP DQN Prioritised .ipynb -------------------------------------------------------------------------------- /DRQN with Episodic Replay .ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/DRQN with Episodic Replay .ipynb -------------------------------------------------------------------------------- /MARL DQN Prioritised.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/MARL DQN Prioritised.ipynb -------------------------------------------------------------------------------- /MARL DRQN Distributed Vanilla.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/MARL DRQN Distributed Vanilla.ipynb -------------------------------------------------------------------------------- /MARL DRQN RIAL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/MARL DRQN RIAL.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/agent_trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/__pycache__/agent_trainer.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/dqn_agent.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/__pycache__/dqn_agent.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/drqn_agent.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/__pycache__/drqn_agent.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/logic_controller.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/__pycache__/logic_controller.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/pcb_envs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/__pycache__/pcb_envs.cpython-37.pyc -------------------------------------------------------------------------------- /agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/agents/__init__.py -------------------------------------------------------------------------------- /agents/dqn_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/agents/dqn_agent.py -------------------------------------------------------------------------------- /agents/dqn_agent_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/agents/dqn_agent_target.py -------------------------------------------------------------------------------- /agents/drqn_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/agents/drqn_agent.py -------------------------------------------------------------------------------- /learning_history.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/learning_history.csv -------------------------------------------------------------------------------- /pcb_twin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/.DS_Store -------------------------------------------------------------------------------- /pcb_twin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/__init__.py -------------------------------------------------------------------------------- /pcb_twin/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /pcb_twin/__pycache__/board.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/__pycache__/board.cpython-37.pyc -------------------------------------------------------------------------------- /pcb_twin/__pycache__/connector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/__pycache__/connector.cpython-37.pyc -------------------------------------------------------------------------------- /pcb_twin/__pycache__/multipath_grid_env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/__pycache__/multipath_grid_env.cpython-37.pyc -------------------------------------------------------------------------------- /pcb_twin/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/board.py -------------------------------------------------------------------------------- /pcb_twin/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/connector.py -------------------------------------------------------------------------------- /pcb_twin/multipath_grid_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/pcb_twin/multipath_grid_env.py -------------------------------------------------------------------------------- /replay_buffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/replay_buffers.py -------------------------------------------------------------------------------- /thesis_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrinderRai/MARL-Cooperative-Path-Planning/HEAD/thesis_img.png --------------------------------------------------------------------------------