├── Images ├── gif.gif ├── gif2.gif └── screenshot.png ├── Model.py ├── Procfile ├── README.md ├── Stroke.ipynb ├── Stroke.pkl ├── Stroke_data.csv ├── app.py ├── requirements.txt ├── static ├── no.gif └── yes.webp ├── stroke.jpg ├── stroke2.jpg └── templates ├── index.html ├── result.html └── test.html /Images/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Images/gif.gif -------------------------------------------------------------------------------- /Images/gif2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Images/gif2.gif -------------------------------------------------------------------------------- /Images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Images/screenshot.png -------------------------------------------------------------------------------- /Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Model.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/README.md -------------------------------------------------------------------------------- /Stroke.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Stroke.ipynb -------------------------------------------------------------------------------- /Stroke.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Stroke.pkl -------------------------------------------------------------------------------- /Stroke_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/Stroke_data.csv -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/static/no.gif -------------------------------------------------------------------------------- /static/yes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/static/yes.webp -------------------------------------------------------------------------------- /stroke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/stroke.jpg -------------------------------------------------------------------------------- /stroke2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/stroke2.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/templates/result.html -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SagarDhandare/Stroke-Prediction-Project/HEAD/templates/test.html --------------------------------------------------------------------------------