├── .DS_Store ├── .gcloudignore ├── .gitignore ├── .theia └── settings.json ├── Makefile ├── README.md ├── Salary_Data.csv ├── Screen Shot 2021-04-22 at 1.42.12 AM.png ├── US_Gold_Medals.csv ├── app.yaml ├── cloudbuild.yaml ├── cloudbuild.yaml~ ├── main.py ├── model.pkl ├── model.py ├── requirements.txt ├── static └── css │ ├── Page-1.css │ ├── images │ └── 21bd8219a00d9cd8344fa2aff64eb7e1e0d54cba4811642c8b4f5a8ed237a3915139825dab9723d9a0a6d75f0f73648967a5b7b8dd937e16b4b373_12802.jpg │ ├── nicepage.css │ └── style.css └── templates ├── index.html ├── jquery.js └── nicepage.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/.gitignore -------------------------------------------------------------------------------- /.theia/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.autoSave": "off" 3 | } -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/README.md -------------------------------------------------------------------------------- /Salary_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/Salary_Data.csv -------------------------------------------------------------------------------- /Screen Shot 2021-04-22 at 1.42.12 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/Screen Shot 2021-04-22 at 1.42.12 AM.png -------------------------------------------------------------------------------- /US_Gold_Medals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/US_Gold_Medals.csv -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python37 -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cloudbuild.yaml~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/main.py -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/model.pkl -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/Page-1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/static/css/Page-1.css -------------------------------------------------------------------------------- /static/css/images/21bd8219a00d9cd8344fa2aff64eb7e1e0d54cba4811642c8b4f5a8ed237a3915139825dab9723d9a0a6d75f0f73648967a5b7b8dd937e16b4b373_12802.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/static/css/images/21bd8219a00d9cd8344fa2aff64eb7e1e0d54cba4811642c8b4f5a8ed237a3915139825dab9723d9a0a6d75f0f73648967a5b7b8dd937e16b4b373_12802.jpg -------------------------------------------------------------------------------- /static/css/nicepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/static/css/nicepage.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/templates/jquery.js -------------------------------------------------------------------------------- /templates/nicepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YisongZou/Flask-Salary-Predictor-with-Random-Forest-Algorithm/HEAD/templates/nicepage.js --------------------------------------------------------------------------------