├── README.md ├── Simulation_MATD3 ├── .idea │ ├── .gitignore │ ├── Simulation.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Classes │ ├── Environment_Platoon.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── Environment_Platoon.cpython-38.pyc │ │ ├── MDRL.cpython-38.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── buffer.cpython-38.pyc │ │ ├── networks.cpython-38.pyc │ │ ├── noise.cpython-38.pyc │ │ ├── replay_memory.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── buffer.py │ ├── networks.py │ └── tmp │ │ └── ddpg │ │ └── Readme.txt ├── __pycache__ │ ├── ddpg_torch.cpython-38.pyc │ └── global_critic.cpython-38.pyc ├── ddpg_torch.py ├── global_critic.py ├── main_train.py └── model │ └── marl_model │ └── Readme.txt ├── Simulation_Single_Agent_DDPG ├── .idea │ ├── .gitignore │ ├── Simulation.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Classes │ ├── Environment_Platoon.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── Environment_Platoon.cpython-36.pyc │ │ ├── Environment_Platoon.cpython-38.pyc │ │ ├── MDRL.cpython-38.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── buffer.cpython-36.pyc │ │ ├── buffer.cpython-38.pyc │ │ ├── networks.cpython-36.pyc │ │ ├── networks.cpython-38.pyc │ │ ├── noise.cpython-36.pyc │ │ ├── noise.cpython-38.pyc │ │ ├── replay_memory.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── buffer.py │ ├── networks.py │ ├── noise.py │ └── tmp │ │ └── ddpg │ │ └── Readme.txt ├── __pycache__ │ ├── ddpg_torch.cpython-36.pyc │ ├── ddpg_torch.cpython-38.pyc │ └── global_critic.cpython-38.pyc ├── ddpg_torch.py ├── main.py └── model │ └── marl_model │ └── Readme.txt └── license /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/README.md -------------------------------------------------------------------------------- /Simulation_MATD3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Simulation_MATD3/.idea/Simulation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/.idea/Simulation.iml -------------------------------------------------------------------------------- /Simulation_MATD3/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Simulation_MATD3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/.idea/misc.xml -------------------------------------------------------------------------------- /Simulation_MATD3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/.idea/modules.xml -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/Environment_Platoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/Environment_Platoon.py -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/Environment_Platoon.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/Environment_Platoon.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/MDRL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/MDRL.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/buffer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/buffer.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/networks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/networks.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/noise.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/noise.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/replay_memory.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/replay_memory.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/buffer.py -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/networks.py -------------------------------------------------------------------------------- /Simulation_MATD3/Classes/tmp/ddpg/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/Classes/tmp/ddpg/Readme.txt -------------------------------------------------------------------------------- /Simulation_MATD3/__pycache__/ddpg_torch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/__pycache__/ddpg_torch.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/__pycache__/global_critic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/__pycache__/global_critic.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_MATD3/ddpg_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/ddpg_torch.py -------------------------------------------------------------------------------- /Simulation_MATD3/global_critic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/global_critic.py -------------------------------------------------------------------------------- /Simulation_MATD3/main_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/main_train.py -------------------------------------------------------------------------------- /Simulation_MATD3/model/marl_model/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_MATD3/model/marl_model/Readme.txt -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/.idea/Simulation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/.idea/Simulation.iml -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/.idea/misc.xml -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/.idea/modules.xml -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/Environment_Platoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/Environment_Platoon.py -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/Environment_Platoon.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/Environment_Platoon.cpython-36.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/Environment_Platoon.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/Environment_Platoon.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/MDRL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/MDRL.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/buffer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/buffer.cpython-36.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/buffer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/buffer.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/networks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/networks.cpython-36.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/networks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/networks.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/noise.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/noise.cpython-36.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/noise.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/noise.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/replay_memory.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/replay_memory.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/buffer.py -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/networks.py -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/noise.py -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/Classes/tmp/ddpg/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/Classes/tmp/ddpg/Readme.txt -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/__pycache__/ddpg_torch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/__pycache__/ddpg_torch.cpython-36.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/__pycache__/ddpg_torch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/__pycache__/ddpg_torch.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/__pycache__/global_critic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/__pycache__/global_critic.cpython-38.pyc -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/ddpg_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/ddpg_torch.py -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/main.py -------------------------------------------------------------------------------- /Simulation_Single_Agent_DDPG/model/marl_model/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/Simulation_Single_Agent_DDPG/model/marl_model/Readme.txt -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-Parvini/AoI-V2X-ISWCS-Conference-2021/HEAD/license --------------------------------------------------------------------------------