├── .gitignore ├── 2000_epoch_position.py ├── README.md ├── accumulated_reward_contrast.py ├── coverage_rate_boxplot.py ├── coverage_rate_contrast.py ├── env ├── define.py ├── environment.py ├── space_def │ ├── __init__.py │ ├── circle_space.py │ ├── onehot_space.py │ └── sum_space.py └── traffic.py ├── last_2000_epoch_position.py ├── logs ├── position │ ├── uav_x0.npy │ ├── uav_x0_last.npy │ ├── uav_x1.npy │ ├── uav_x1_last.npy │ ├── uav_x2.npy │ ├── uav_x2_last.npy │ ├── uav_x3.npy │ ├── uav_x3_last.npy │ ├── uav_y0.npy │ ├── uav_y0_last.npy │ ├── uav_y1.npy │ ├── uav_y1_last.npy │ ├── uav_y2.npy │ ├── uav_y2_last.npy │ ├── uav_y3.npy │ └── uav_y3_last.npy └── tensorboard_result │ ├── FL_0.25.json │ ├── FL_0.5.json │ ├── FL_0.75.json │ ├── FL_0.json │ ├── FL_1.json │ ├── reward_0.25.json │ ├── reward_0.5.json │ ├── reward_0.75.json │ ├── reward_0.json │ └── reward_1.json ├── mec_rl_with_uav.py ├── run.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/.gitignore -------------------------------------------------------------------------------- /2000_epoch_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/2000_epoch_position.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/README.md -------------------------------------------------------------------------------- /accumulated_reward_contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/accumulated_reward_contrast.py -------------------------------------------------------------------------------- /coverage_rate_boxplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/coverage_rate_boxplot.py -------------------------------------------------------------------------------- /coverage_rate_contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/coverage_rate_contrast.py -------------------------------------------------------------------------------- /env/define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/define.py -------------------------------------------------------------------------------- /env/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/environment.py -------------------------------------------------------------------------------- /env/space_def/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/space_def/__init__.py -------------------------------------------------------------------------------- /env/space_def/circle_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/space_def/circle_space.py -------------------------------------------------------------------------------- /env/space_def/onehot_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/space_def/onehot_space.py -------------------------------------------------------------------------------- /env/space_def/sum_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/space_def/sum_space.py -------------------------------------------------------------------------------- /env/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/env/traffic.py -------------------------------------------------------------------------------- /last_2000_epoch_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/last_2000_epoch_position.py -------------------------------------------------------------------------------- /logs/position/uav_x0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x0.npy -------------------------------------------------------------------------------- /logs/position/uav_x0_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x0_last.npy -------------------------------------------------------------------------------- /logs/position/uav_x1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x1.npy -------------------------------------------------------------------------------- /logs/position/uav_x1_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x1_last.npy -------------------------------------------------------------------------------- /logs/position/uav_x2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x2.npy -------------------------------------------------------------------------------- /logs/position/uav_x2_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x2_last.npy -------------------------------------------------------------------------------- /logs/position/uav_x3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x3.npy -------------------------------------------------------------------------------- /logs/position/uav_x3_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_x3_last.npy -------------------------------------------------------------------------------- /logs/position/uav_y0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y0.npy -------------------------------------------------------------------------------- /logs/position/uav_y0_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y0_last.npy -------------------------------------------------------------------------------- /logs/position/uav_y1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y1.npy -------------------------------------------------------------------------------- /logs/position/uav_y1_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y1_last.npy -------------------------------------------------------------------------------- /logs/position/uav_y2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y2.npy -------------------------------------------------------------------------------- /logs/position/uav_y2_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y2_last.npy -------------------------------------------------------------------------------- /logs/position/uav_y3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y3.npy -------------------------------------------------------------------------------- /logs/position/uav_y3_last.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/position/uav_y3_last.npy -------------------------------------------------------------------------------- /logs/tensorboard_result/FL_0.25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/FL_0.25.json -------------------------------------------------------------------------------- /logs/tensorboard_result/FL_0.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/FL_0.5.json -------------------------------------------------------------------------------- /logs/tensorboard_result/FL_0.75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/FL_0.75.json -------------------------------------------------------------------------------- /logs/tensorboard_result/FL_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/FL_0.json -------------------------------------------------------------------------------- /logs/tensorboard_result/FL_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/FL_1.json -------------------------------------------------------------------------------- /logs/tensorboard_result/reward_0.25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/reward_0.25.json -------------------------------------------------------------------------------- /logs/tensorboard_result/reward_0.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/reward_0.5.json -------------------------------------------------------------------------------- /logs/tensorboard_result/reward_0.75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/reward_0.75.json -------------------------------------------------------------------------------- /logs/tensorboard_result/reward_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/reward_0.json -------------------------------------------------------------------------------- /logs/tensorboard_result/reward_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/logs/tensorboard_result/reward_1.json -------------------------------------------------------------------------------- /mec_rl_with_uav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/mec_rl_with_uav.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/run.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhuzhongzhi-50/MEC_RL_UAV/HEAD/test.py --------------------------------------------------------------------------------