├── .idea ├── .gitignore ├── 2022.4.16.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml └── vagrant.xml ├── DRL_SAC.py ├── Data ├── SAC_policy │ ├── V_0 │ │ └── reward.npy │ ├── V_10 │ │ └── reward.npy │ ├── V_100 │ │ └── reward.npy │ └── V_50 │ │ └── reward.npy ├── v_0_action1.npy ├── v_0_action_sum.npy ├── v_0_delay1.npy ├── v_0_delay2.npy ├── v_0_delay3.npy ├── v_0_length1.npy ├── v_0_length2.npy ├── v_0_length3.npy ├── v_0_utility.npy ├── v_1000_delay1.npy ├── v_1000_delay2.npy ├── v_1000_delay3.npy ├── v_1000_length1.npy ├── v_1000_length2.npy ├── v_1000_length3.npy ├── v_1000_utility.npy ├── v_100_action1.npy ├── v_100_action_sum.npy ├── v_100_delay1.npy ├── v_100_delay2.npy ├── v_100_delay3.npy ├── v_100_length1.npy ├── v_100_length2.npy ├── v_100_length3.npy ├── v_100_utility.npy ├── v_10_action1.npy ├── v_10_action_sum.npy ├── v_10_delay1.npy ├── v_10_delay2.npy ├── v_10_delay3.npy ├── v_10_length1.npy ├── v_10_length2.npy ├── v_10_length3.npy ├── v_10_utility.npy ├── v_200_delay1.npy ├── v_200_delay2.npy ├── v_200_delay3.npy ├── v_200_length1.npy ├── v_200_length2.npy ├── v_200_length3.npy ├── v_200_utility.npy ├── v_500_delay1.npy ├── v_500_delay2.npy ├── v_500_delay3.npy ├── v_500_length1.npy ├── v_500_length2.npy ├── v_500_length3.npy ├── v_500_utility.npy ├── v_50_action1.npy ├── v_50_action_sum.npy ├── v_50_delay1.npy ├── v_50_delay2.npy ├── v_50_delay3.npy ├── v_50_length1.npy ├── v_50_length2.npy ├── v_50_length3.npy └── v_50_utility.npy ├── Env.py ├── Env_SAC.py ├── SNC_RL.py ├── __pycache__ ├── DRL.cpython-36.pyc ├── DRL.cpython-37.pyc ├── DRL_SAC.cpython-36.pyc ├── DRL_SAC.cpython-37.pyc ├── DRL_SAC.cpython-38.pyc ├── Env.cpython-36.pyc ├── Env.cpython-37.pyc ├── Env_RL.cpython-37.pyc ├── Env_SAC.cpython-36.pyc ├── Env_SAC.cpython-37.pyc ├── Env_SAC.cpython-38.pyc ├── SNC_RL.cpython-36.pyc ├── SNC_RL.cpython-37.pyc ├── SNC_RL.cpython-38.pyc ├── applications.cpython-36.pyc ├── applications.cpython-37.pyc ├── applications.cpython-38.pyc ├── constants.cpython-36.pyc ├── constants.cpython-37.pyc ├── constants.cpython-38.pyc ├── cost_functions.cpython-36.pyc ├── cost_functions.cpython-37.pyc └── cost_functions.cpython-38.pyc ├── applications.py ├── constants.py ├── cost_functions.py ├── main_Average.py ├── main_Random.py ├── main_SAC.py ├── nn_function ├── __pycache__ │ ├── core.cpython-36.pyc │ ├── core.cpython-37.pyc │ ├── core.cpython-38.pyc │ ├── distributions.cpython-36.pyc │ ├── distributions.cpython-37.pyc │ ├── distributions.cpython-38.pyc │ ├── eval_util.cpython-36.pyc │ ├── eval_util.cpython-37.pyc │ ├── eval_util.cpython-38.pyc │ ├── normalization.cpython-36.pyc │ ├── normalization.cpython-37.pyc │ ├── normalization.cpython-38.pyc │ ├── pythonplusplus.cpython-36.pyc │ ├── pythonplusplus.cpython-37.pyc │ ├── pythonplusplus.cpython-38.pyc │ ├── pytorch_util.cpython-36.pyc │ ├── pytorch_util.cpython-37.pyc │ └── pytorch_util.cpython-38.pyc ├── core.py ├── distributions.py ├── eval_util.py ├── normalization.py ├── pythonplusplus.py └── pytorch_util.py ├── plot ├── Single_Network_Performance_computing_num.py ├── Single_Network_Performance_cv2i_rate.py ├── Single_Network_Performance_dsrc_rate.py ├── Single_Network_Performance_mmwave_bandwidth.py ├── Single_Network_Performance_probality.py ├── Single_Network_Performance_rho.py ├── Single_Network_Performance_sigma.py ├── Single_Network_Performance_vehicular_num.py ├── __pycache__ │ └── constants.cpython-37.pyc ├── constants.py ├── performance_data.py ├── plot_delay.py ├── plot_length.py ├── plot_reward.py └── plot_uitility.py ├── save_data ├── Average_policy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── utility.npy ├── Random_policy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── utility.npy └── SAC_policy │ ├── V_10 │ ├── Task1_offload_comm_policy.npy │ ├── Task2_offload_comm_policy.npy │ ├── Task3_offload_comm_policy.npy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── reward.npy │ ├── V_100 │ ├── Task1_offload_comm_policy.npy │ ├── Task2_offload_comm_policy.npy │ ├── Task3_offload_comm_policy.npy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── reward.npy │ ├── V_1000 │ ├── Task1_offload_comm_policy.npy │ ├── Task2_offload_comm_policy.npy │ ├── Task3_offload_comm_policy.npy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── reward.npy │ ├── V_200 │ ├── Task1_offload_comm_policy.npy │ ├── Task2_offload_comm_policy.npy │ ├── Task3_offload_comm_policy.npy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── reward.npy │ ├── V_50 │ ├── Task1_offload_comm_policy.npy │ ├── Task2_offload_comm_policy.npy │ ├── Task3_offload_comm_policy.npy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── reward.npy │ └── V_500 │ ├── Task1_offload_comm_policy.npy │ ├── Task2_offload_comm_policy.npy │ ├── Task3_offload_comm_policy.npy │ ├── delay1.npy │ ├── delay2.npy │ ├── delay3.npy │ ├── length1.npy │ ├── length2.npy │ ├── length3.npy │ └── reward.npy ├── save_mode ├── SAC_v_0_policy_network.pth ├── SAC_v_0_qf1_network.pth ├── SAC_v_0_qf2_network.pth ├── SAC_v_0_target_qf1_network.pth ├── SAC_v_0_target_qf2_network.pth ├── SAC_v_1000_policy_network.pth ├── SAC_v_1000_qf1_network.pth ├── SAC_v_1000_qf2_network.pth ├── SAC_v_1000_target_qf1_network.pth ├── SAC_v_1000_target_qf2_network.pth ├── SAC_v_100_policy_network.pth ├── SAC_v_100_qf1_network.pth ├── SAC_v_100_qf2_network.pth ├── SAC_v_100_target_qf1_network.pth ├── SAC_v_100_target_qf2_network.pth ├── SAC_v_10_policy_network.pth ├── SAC_v_10_qf1_network.pth ├── SAC_v_10_qf2_network.pth ├── SAC_v_10_target_qf1_network.pth ├── SAC_v_10_target_qf2_network.pth ├── SAC_v_200_policy_network.pth ├── SAC_v_200_qf1_network.pth ├── SAC_v_200_qf2_network.pth ├── SAC_v_200_target_qf1_network.pth ├── SAC_v_200_target_qf2_network.pth ├── SAC_v_500_policy_network.pth ├── SAC_v_500_qf1_network.pth ├── SAC_v_500_qf2_network.pth ├── SAC_v_500_target_qf1_network.pth ├── SAC_v_500_target_qf2_network.pth ├── SAC_v_50_policy_network.pth ├── SAC_v_50_qf1_network.pth ├── SAC_v_50_qf2_network.pth ├── SAC_v_50_target_qf1_network.pth └── SAC_v_50_target_qf2_network.pth └── test.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/2022.4.16.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/2022.4.16.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vagrant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/.idea/vagrant.xml -------------------------------------------------------------------------------- /DRL_SAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/DRL_SAC.py -------------------------------------------------------------------------------- /Data/SAC_policy/V_0/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/SAC_policy/V_0/reward.npy -------------------------------------------------------------------------------- /Data/SAC_policy/V_10/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/SAC_policy/V_10/reward.npy -------------------------------------------------------------------------------- /Data/SAC_policy/V_100/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/SAC_policy/V_100/reward.npy -------------------------------------------------------------------------------- /Data/SAC_policy/V_50/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/SAC_policy/V_50/reward.npy -------------------------------------------------------------------------------- /Data/v_0_action1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_action1.npy -------------------------------------------------------------------------------- /Data/v_0_action_sum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_action_sum.npy -------------------------------------------------------------------------------- /Data/v_0_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_delay1.npy -------------------------------------------------------------------------------- /Data/v_0_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_delay2.npy -------------------------------------------------------------------------------- /Data/v_0_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_delay3.npy -------------------------------------------------------------------------------- /Data/v_0_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_length1.npy -------------------------------------------------------------------------------- /Data/v_0_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_length2.npy -------------------------------------------------------------------------------- /Data/v_0_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_length3.npy -------------------------------------------------------------------------------- /Data/v_0_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_0_utility.npy -------------------------------------------------------------------------------- /Data/v_1000_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_delay1.npy -------------------------------------------------------------------------------- /Data/v_1000_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_delay2.npy -------------------------------------------------------------------------------- /Data/v_1000_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_delay3.npy -------------------------------------------------------------------------------- /Data/v_1000_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_length1.npy -------------------------------------------------------------------------------- /Data/v_1000_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_length2.npy -------------------------------------------------------------------------------- /Data/v_1000_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_length3.npy -------------------------------------------------------------------------------- /Data/v_1000_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_1000_utility.npy -------------------------------------------------------------------------------- /Data/v_100_action1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_action1.npy -------------------------------------------------------------------------------- /Data/v_100_action_sum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_action_sum.npy -------------------------------------------------------------------------------- /Data/v_100_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_delay1.npy -------------------------------------------------------------------------------- /Data/v_100_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_delay2.npy -------------------------------------------------------------------------------- /Data/v_100_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_delay3.npy -------------------------------------------------------------------------------- /Data/v_100_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_length1.npy -------------------------------------------------------------------------------- /Data/v_100_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_length2.npy -------------------------------------------------------------------------------- /Data/v_100_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_length3.npy -------------------------------------------------------------------------------- /Data/v_100_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_100_utility.npy -------------------------------------------------------------------------------- /Data/v_10_action1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_action1.npy -------------------------------------------------------------------------------- /Data/v_10_action_sum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_action_sum.npy -------------------------------------------------------------------------------- /Data/v_10_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_delay1.npy -------------------------------------------------------------------------------- /Data/v_10_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_delay2.npy -------------------------------------------------------------------------------- /Data/v_10_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_delay3.npy -------------------------------------------------------------------------------- /Data/v_10_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_length1.npy -------------------------------------------------------------------------------- /Data/v_10_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_length2.npy -------------------------------------------------------------------------------- /Data/v_10_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_length3.npy -------------------------------------------------------------------------------- /Data/v_10_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_10_utility.npy -------------------------------------------------------------------------------- /Data/v_200_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_delay1.npy -------------------------------------------------------------------------------- /Data/v_200_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_delay2.npy -------------------------------------------------------------------------------- /Data/v_200_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_delay3.npy -------------------------------------------------------------------------------- /Data/v_200_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_length1.npy -------------------------------------------------------------------------------- /Data/v_200_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_length2.npy -------------------------------------------------------------------------------- /Data/v_200_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_length3.npy -------------------------------------------------------------------------------- /Data/v_200_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_200_utility.npy -------------------------------------------------------------------------------- /Data/v_500_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_delay1.npy -------------------------------------------------------------------------------- /Data/v_500_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_delay2.npy -------------------------------------------------------------------------------- /Data/v_500_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_delay3.npy -------------------------------------------------------------------------------- /Data/v_500_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_length1.npy -------------------------------------------------------------------------------- /Data/v_500_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_length2.npy -------------------------------------------------------------------------------- /Data/v_500_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_length3.npy -------------------------------------------------------------------------------- /Data/v_500_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_500_utility.npy -------------------------------------------------------------------------------- /Data/v_50_action1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_action1.npy -------------------------------------------------------------------------------- /Data/v_50_action_sum.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_action_sum.npy -------------------------------------------------------------------------------- /Data/v_50_delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_delay1.npy -------------------------------------------------------------------------------- /Data/v_50_delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_delay2.npy -------------------------------------------------------------------------------- /Data/v_50_delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_delay3.npy -------------------------------------------------------------------------------- /Data/v_50_length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_length1.npy -------------------------------------------------------------------------------- /Data/v_50_length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_length2.npy -------------------------------------------------------------------------------- /Data/v_50_length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_length3.npy -------------------------------------------------------------------------------- /Data/v_50_utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Data/v_50_utility.npy -------------------------------------------------------------------------------- /Env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Env.py -------------------------------------------------------------------------------- /Env_SAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/Env_SAC.py -------------------------------------------------------------------------------- /SNC_RL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/SNC_RL.py -------------------------------------------------------------------------------- /__pycache__/DRL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/DRL.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/DRL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/DRL.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/DRL_SAC.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/DRL_SAC.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/DRL_SAC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/DRL_SAC.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/DRL_SAC.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/DRL_SAC.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/Env.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/Env.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/Env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/Env.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Env_RL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/Env_RL.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Env_SAC.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/Env_SAC.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/Env_SAC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/Env_SAC.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Env_SAC.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/Env_SAC.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/SNC_RL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/SNC_RL.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/SNC_RL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/SNC_RL.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/SNC_RL.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/SNC_RL.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/applications.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/applications.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/applications.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/applications.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/applications.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/applications.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/constants.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/constants.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/constants.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/constants.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/cost_functions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/cost_functions.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/cost_functions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/cost_functions.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/cost_functions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/__pycache__/cost_functions.cpython-38.pyc -------------------------------------------------------------------------------- /applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/applications.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/constants.py -------------------------------------------------------------------------------- /cost_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/cost_functions.py -------------------------------------------------------------------------------- /main_Average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/main_Average.py -------------------------------------------------------------------------------- /main_Random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/main_Random.py -------------------------------------------------------------------------------- /main_SAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/main_SAC.py -------------------------------------------------------------------------------- /nn_function/__pycache__/core.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/core.cpython-36.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/distributions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/distributions.cpython-36.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/distributions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/distributions.cpython-37.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/distributions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/distributions.cpython-38.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/eval_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/eval_util.cpython-36.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/eval_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/eval_util.cpython-37.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/eval_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/eval_util.cpython-38.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/normalization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/normalization.cpython-36.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/normalization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/normalization.cpython-37.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/normalization.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/normalization.cpython-38.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/pythonplusplus.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/pythonplusplus.cpython-36.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/pythonplusplus.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/pythonplusplus.cpython-37.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/pythonplusplus.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/pythonplusplus.cpython-38.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/pytorch_util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/pytorch_util.cpython-36.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/pytorch_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/pytorch_util.cpython-37.pyc -------------------------------------------------------------------------------- /nn_function/__pycache__/pytorch_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/__pycache__/pytorch_util.cpython-38.pyc -------------------------------------------------------------------------------- /nn_function/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/core.py -------------------------------------------------------------------------------- /nn_function/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/distributions.py -------------------------------------------------------------------------------- /nn_function/eval_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/eval_util.py -------------------------------------------------------------------------------- /nn_function/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/normalization.py -------------------------------------------------------------------------------- /nn_function/pythonplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/pythonplusplus.py -------------------------------------------------------------------------------- /nn_function/pytorch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/nn_function/pytorch_util.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_computing_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_computing_num.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_cv2i_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_cv2i_rate.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_dsrc_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_dsrc_rate.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_mmwave_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_mmwave_bandwidth.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_probality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_probality.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_rho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_rho.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_sigma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_sigma.py -------------------------------------------------------------------------------- /plot/Single_Network_Performance_vehicular_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/Single_Network_Performance_vehicular_num.py -------------------------------------------------------------------------------- /plot/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /plot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/constants.py -------------------------------------------------------------------------------- /plot/performance_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/performance_data.py -------------------------------------------------------------------------------- /plot/plot_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/plot_delay.py -------------------------------------------------------------------------------- /plot/plot_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/plot_length.py -------------------------------------------------------------------------------- /plot/plot_reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/plot_reward.py -------------------------------------------------------------------------------- /plot/plot_uitility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/plot/plot_uitility.py -------------------------------------------------------------------------------- /save_data/Average_policy/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/delay1.npy -------------------------------------------------------------------------------- /save_data/Average_policy/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/delay2.npy -------------------------------------------------------------------------------- /save_data/Average_policy/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/delay3.npy -------------------------------------------------------------------------------- /save_data/Average_policy/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/length1.npy -------------------------------------------------------------------------------- /save_data/Average_policy/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/length2.npy -------------------------------------------------------------------------------- /save_data/Average_policy/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/length3.npy -------------------------------------------------------------------------------- /save_data/Average_policy/utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Average_policy/utility.npy -------------------------------------------------------------------------------- /save_data/Random_policy/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/delay1.npy -------------------------------------------------------------------------------- /save_data/Random_policy/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/delay2.npy -------------------------------------------------------------------------------- /save_data/Random_policy/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/delay3.npy -------------------------------------------------------------------------------- /save_data/Random_policy/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/length1.npy -------------------------------------------------------------------------------- /save_data/Random_policy/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/length2.npy -------------------------------------------------------------------------------- /save_data/Random_policy/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/length3.npy -------------------------------------------------------------------------------- /save_data/Random_policy/utility.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/Random_policy/utility.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/Task1_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/Task1_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/Task2_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/Task2_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/Task3_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/Task3_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/delay1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/delay2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/delay3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/length1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/length2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/length3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_10/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_10/reward.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/Task1_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/Task1_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/Task2_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/Task2_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/Task3_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/Task3_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/delay1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/delay2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/delay3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/length1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/length2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/length3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_100/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_100/reward.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/Task1_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/Task1_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/Task2_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/Task2_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/Task3_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/Task3_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/delay1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/delay2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/delay3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/length1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/length2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/length3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_1000/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_1000/reward.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/Task1_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/Task1_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/Task2_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/Task2_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/Task3_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/Task3_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/delay1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/delay2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/delay3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/length1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/length2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/length3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_200/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_200/reward.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/Task1_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/Task1_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/Task2_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/Task2_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/Task3_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/Task3_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/delay1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/delay2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/delay3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/length1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/length2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/length3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_50/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_50/reward.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/Task1_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/Task1_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/Task2_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/Task2_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/Task3_offload_comm_policy.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/Task3_offload_comm_policy.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/delay1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/delay1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/delay2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/delay2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/delay3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/delay3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/length1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/length1.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/length2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/length2.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/length3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/length3.npy -------------------------------------------------------------------------------- /save_data/SAC_policy/V_500/reward.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_data/SAC_policy/V_500/reward.npy -------------------------------------------------------------------------------- /save_mode/SAC_v_0_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_0_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_0_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_0_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_0_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_0_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_0_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_0_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_0_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_0_target_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_1000_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_1000_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_1000_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_1000_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_1000_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_1000_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_1000_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_1000_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_1000_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_1000_target_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_100_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_100_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_100_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_100_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_100_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_100_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_100_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_100_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_100_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_100_target_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_10_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_10_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_10_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_10_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_10_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_10_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_10_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_10_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_10_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_10_target_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_200_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_200_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_200_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_200_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_200_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_200_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_200_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_200_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_200_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_200_target_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_500_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_500_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_500_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_500_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_500_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_500_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_500_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_500_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_500_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_500_target_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_50_policy_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_50_policy_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_50_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_50_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_50_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_50_qf2_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_50_target_qf1_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_50_target_qf1_network.pth -------------------------------------------------------------------------------- /save_mode/SAC_v_50_target_qf2_network.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/save_mode/SAC_v_50_target_qf2_network.pth -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiongwu86/URLLC-Awared-Resource-Allocation-for-Heterogeneous-Vehicular-Edge-Computing/HEAD/test.py --------------------------------------------------------------------------------