├── DRL ├── DQNAgent.py ├── ReplayMemory.py └── __init__.py ├── GenCUEandDUE.py ├── GraphMatcher.py ├── GraphResourceAllocator.py ├── HighwayChannel.py ├── README.md ├── RESOURCE ALLOCATION FOR VEHICULAR COMMUNICATIONS.pdf ├── RLEnvironment.py ├── ResourceAllocator.py ├── marl_train.py ├── plot_result.py ├── simulation_entry_Graph.py ├── simulation_entry_delayCSI.py ├── simulation_entry_large_scale.py └── utils.py /DRL/DQNAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/DRL/DQNAgent.py -------------------------------------------------------------------------------- /DRL/ReplayMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/DRL/ReplayMemory.py -------------------------------------------------------------------------------- /DRL/__init__.py: -------------------------------------------------------------------------------- 1 | from . import DQNAgent, ReplayMemory -------------------------------------------------------------------------------- /GenCUEandDUE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/GenCUEandDUE.py -------------------------------------------------------------------------------- /GraphMatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/GraphMatcher.py -------------------------------------------------------------------------------- /GraphResourceAllocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/GraphResourceAllocator.py -------------------------------------------------------------------------------- /HighwayChannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/HighwayChannel.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCE ALLOCATION FOR VEHICULAR COMMUNICATIONS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/RESOURCE ALLOCATION FOR VEHICULAR COMMUNICATIONS.pdf -------------------------------------------------------------------------------- /RLEnvironment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/RLEnvironment.py -------------------------------------------------------------------------------- /ResourceAllocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/ResourceAllocator.py -------------------------------------------------------------------------------- /marl_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/marl_train.py -------------------------------------------------------------------------------- /plot_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/plot_result.py -------------------------------------------------------------------------------- /simulation_entry_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/simulation_entry_Graph.py -------------------------------------------------------------------------------- /simulation_entry_delayCSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/simulation_entry_delayCSI.py -------------------------------------------------------------------------------- /simulation_entry_large_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/simulation_entry_large_scale.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiwei-roy-0803/RAV2X/HEAD/utils.py --------------------------------------------------------------------------------