├── LICENSE ├── README.md ├── application.py ├── hiring.csv ├── model.pkl ├── model.py ├── static └── css │ └── style.css └── templates └── index.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/README.md -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/application.py -------------------------------------------------------------------------------- /hiring.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/hiring.csv -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/model.pkl -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/model.py -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaajidKhan/DeployMLModel-Flask/HEAD/templates/index.html --------------------------------------------------------------------------------