├── README.md ├── envs ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── config1.cpython-38.pyc │ ├── dataStruct.cpython-38.pyc │ └── env1.cpython-38.pyc ├── config1.py ├── dataStruct.py └── env1.py ├── methods ├── __pycache__ │ ├── min_delay.cpython-38.pyc │ ├── min_delay_algo.cpython-38.pyc │ ├── ppo2.cpython-38.pyc │ └── ppo_task1.cpython-38.pyc ├── max_reward.py ├── max_reward_algo.py ├── ppo2.py └── ppo_task1.py ├── run_this ├── .pytest_cache │ ├── .gitignore │ ├── CACHEDIR.TAG │ ├── README.md │ └── v │ │ └── cache │ │ ├── lastfailed │ │ ├── nodeids │ │ └── stepwise ├── __init__.py └── 运行实验代码 │ ├── weight1_ppo.py │ └── 对比实验 在config1里面要设置一下weight1 = 0.3.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/README.md -------------------------------------------------------------------------------- /envs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /envs/__pycache__/config1.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/__pycache__/config1.cpython-38.pyc -------------------------------------------------------------------------------- /envs/__pycache__/dataStruct.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/__pycache__/dataStruct.cpython-38.pyc -------------------------------------------------------------------------------- /envs/__pycache__/env1.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/__pycache__/env1.cpython-38.pyc -------------------------------------------------------------------------------- /envs/config1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/config1.py -------------------------------------------------------------------------------- /envs/dataStruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/dataStruct.py -------------------------------------------------------------------------------- /envs/env1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/envs/env1.py -------------------------------------------------------------------------------- /methods/__pycache__/min_delay.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/__pycache__/min_delay.cpython-38.pyc -------------------------------------------------------------------------------- /methods/__pycache__/min_delay_algo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/__pycache__/min_delay_algo.cpython-38.pyc -------------------------------------------------------------------------------- /methods/__pycache__/ppo2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/__pycache__/ppo2.cpython-38.pyc -------------------------------------------------------------------------------- /methods/__pycache__/ppo_task1.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/__pycache__/ppo_task1.cpython-38.pyc -------------------------------------------------------------------------------- /methods/max_reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/max_reward.py -------------------------------------------------------------------------------- /methods/max_reward_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/max_reward_algo.py -------------------------------------------------------------------------------- /methods/ppo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/ppo2.py -------------------------------------------------------------------------------- /methods/ppo_task1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/methods/ppo_task1.py -------------------------------------------------------------------------------- /run_this/.pytest_cache/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_this/.pytest_cache/CACHEDIR.TAG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_this/.pytest_cache/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_this/.pytest_cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | { 2 | "run1.py::test": true 3 | } -------------------------------------------------------------------------------- /run_this/.pytest_cache/v/cache/nodeids: -------------------------------------------------------------------------------- 1 | [ 2 | "run1.py::test" 3 | ] -------------------------------------------------------------------------------- /run_this/.pytest_cache/v/cache/stepwise: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_this/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_this/运行实验代码/weight1_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/run_this/运行实验代码/weight1_ppo.py -------------------------------------------------------------------------------- /run_this/运行实验代码/对比实验 在config1里面要设置一下weight1 = 0.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/run_this/运行实验代码/对比实验 在config1里面要设置一下weight1 = 0.3.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZWLab23/Delay-and-Battery-Degradation-Optimization-based-on-PPO-for-Task-Offloading-in-RSU-assisted-IoV/HEAD/utils.py --------------------------------------------------------------------------------