├── .idea ├── .gitignore ├── DiabetesDetection.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Procfile ├── README.md ├── app.py ├── debug.log ├── diabetes.csv ├── images ├── 1.PNG ├── 2.PNG ├── 3.PNG └── 4.PNG ├── requirements.txt └── setup.sh /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/DiabetesDetection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/.idea/DiabetesDetection.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/app.py -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/debug.log -------------------------------------------------------------------------------- /diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/diabetes.csv -------------------------------------------------------------------------------- /images/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/images/1.PNG -------------------------------------------------------------------------------- /images/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/images/2.PNG -------------------------------------------------------------------------------- /images/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/images/3.PNG -------------------------------------------------------------------------------- /images/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/images/4.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmadan/diabetes_prediction/HEAD/setup.sh --------------------------------------------------------------------------------