├── .gitignore ├── README.md ├── animation.gif ├── requirements.txt ├── src ├── animate.py ├── confidence_bound.py ├── custom_components.py ├── helpers.py ├── images │ ├── cloud-black.png │ ├── cloud-red.png │ ├── rsu-black-transparent.png │ └── rsu-red-transparent.png ├── movement.py ├── plot_figures.py ├── results │ ├── out-10-Cloud.txt │ ├── out-10-Greedy.txt │ ├── out-10-RL.txt │ ├── out-10-RSU.txt │ ├── out-10-Random.txt │ ├── out-20-Cloud.txt │ ├── out-20-Greedy.txt │ ├── out-20-RL.txt │ ├── out-20-Random.txt │ ├── out-5-Cloud.txt │ ├── out-5-Greedy.txt │ ├── out-5-RL.txt │ ├── out-5-RSU.txt │ └── out-5-Random.txt ├── trained_models │ ├── env10-300000.zip │ ├── env20-300000.zip │ └── env5-300000.zip ├── vfcenv.py ├── vfcenv10.py └── vfcenv20.py └── system-model-visual.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/animation.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/animate.py -------------------------------------------------------------------------------- /src/confidence_bound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/confidence_bound.py -------------------------------------------------------------------------------- /src/custom_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/custom_components.py -------------------------------------------------------------------------------- /src/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/helpers.py -------------------------------------------------------------------------------- /src/images/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/images/cloud-black.png -------------------------------------------------------------------------------- /src/images/cloud-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/images/cloud-red.png -------------------------------------------------------------------------------- /src/images/rsu-black-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/images/rsu-black-transparent.png -------------------------------------------------------------------------------- /src/images/rsu-red-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/images/rsu-red-transparent.png -------------------------------------------------------------------------------- /src/movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/movement.py -------------------------------------------------------------------------------- /src/plot_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/plot_figures.py -------------------------------------------------------------------------------- /src/results/out-10-Cloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-10-Cloud.txt -------------------------------------------------------------------------------- /src/results/out-10-Greedy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-10-Greedy.txt -------------------------------------------------------------------------------- /src/results/out-10-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-10-RL.txt -------------------------------------------------------------------------------- /src/results/out-10-RSU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-10-RSU.txt -------------------------------------------------------------------------------- /src/results/out-10-Random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-10-Random.txt -------------------------------------------------------------------------------- /src/results/out-20-Cloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-20-Cloud.txt -------------------------------------------------------------------------------- /src/results/out-20-Greedy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-20-Greedy.txt -------------------------------------------------------------------------------- /src/results/out-20-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-20-RL.txt -------------------------------------------------------------------------------- /src/results/out-20-Random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-20-Random.txt -------------------------------------------------------------------------------- /src/results/out-5-Cloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-5-Cloud.txt -------------------------------------------------------------------------------- /src/results/out-5-Greedy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-5-Greedy.txt -------------------------------------------------------------------------------- /src/results/out-5-RL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-5-RL.txt -------------------------------------------------------------------------------- /src/results/out-5-RSU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-5-RSU.txt -------------------------------------------------------------------------------- /src/results/out-5-Random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/results/out-5-Random.txt -------------------------------------------------------------------------------- /src/trained_models/env10-300000.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/trained_models/env10-300000.zip -------------------------------------------------------------------------------- /src/trained_models/env20-300000.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/trained_models/env20-300000.zip -------------------------------------------------------------------------------- /src/trained_models/env5-300000.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/trained_models/env5-300000.zip -------------------------------------------------------------------------------- /src/vfcenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/vfcenv.py -------------------------------------------------------------------------------- /src/vfcenv10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/vfcenv10.py -------------------------------------------------------------------------------- /src/vfcenv20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/src/vfcenv20.py -------------------------------------------------------------------------------- /system-model-visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Procedurally-Generated-Human/VFC-Offloading-RL/HEAD/system-model-visual.png --------------------------------------------------------------------------------