├── .gitignore ├── Cloud ├── cloud.py ├── seeder.py └── storage │ ├── data │ ├── data.csv │ ├── data_description.txt │ └── seeder_data_template.csv │ └── model.joblib ├── Edges ├── Cloudlet.py ├── Master.py └── workers │ ├── Worker.py │ ├── Worker1.py │ ├── Worker2.py │ └── Worker3.py ├── LICENSE ├── README.md └── figure 1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/.gitignore -------------------------------------------------------------------------------- /Cloud/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Cloud/cloud.py -------------------------------------------------------------------------------- /Cloud/seeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Cloud/seeder.py -------------------------------------------------------------------------------- /Cloud/storage/data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Cloud/storage/data/data.csv -------------------------------------------------------------------------------- /Cloud/storage/data/data_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Cloud/storage/data/data_description.txt -------------------------------------------------------------------------------- /Cloud/storage/data/seeder_data_template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Cloud/storage/data/seeder_data_template.csv -------------------------------------------------------------------------------- /Cloud/storage/model.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Cloud/storage/model.joblib -------------------------------------------------------------------------------- /Edges/Cloudlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Edges/Cloudlet.py -------------------------------------------------------------------------------- /Edges/Master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Edges/Master.py -------------------------------------------------------------------------------- /Edges/workers/Worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Edges/workers/Worker.py -------------------------------------------------------------------------------- /Edges/workers/Worker1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Edges/workers/Worker1.py -------------------------------------------------------------------------------- /Edges/workers/Worker2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Edges/workers/Worker2.py -------------------------------------------------------------------------------- /Edges/workers/Worker3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/Edges/workers/Worker3.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/README.md -------------------------------------------------------------------------------- /figure 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faramarzQ/resource_allocation_using_machine_learning/HEAD/figure 1.png --------------------------------------------------------------------------------