├── LICENSE ├── README.md ├── diabetes.csv ├── diabetes.ipynb ├── flask ├── app.py ├── diabetes.csv ├── model.pkl ├── model.py ├── static │ └── css │ │ └── style.css └── templates │ └── index.html ├── requirements.txt └── screenshot.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/diabetes.csv -------------------------------------------------------------------------------- /diabetes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/diabetes.ipynb -------------------------------------------------------------------------------- /flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/flask/app.py -------------------------------------------------------------------------------- /flask/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/flask/diabetes.csv -------------------------------------------------------------------------------- /flask/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/flask/model.pkl -------------------------------------------------------------------------------- /flask/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/flask/model.py -------------------------------------------------------------------------------- /flask/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/flask/static/css/style.css -------------------------------------------------------------------------------- /flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/flask/templates/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aditya-Mankar/Diabetes-Prediction/HEAD/screenshot.jpg --------------------------------------------------------------------------------