├── LICENSE ├── README.md ├── app └── app.py ├── data └── train_v1.csv ├── model_comparison.md ├── models ├── label_encoders.pkl ├── model_info.pkl ├── scaler.pkl ├── stroke_model.pkl └── train_model.py ├── project_documentation.md ├── requirements.txt ├── static ├── S.png ├── confusion_matrix.png ├── feature_importance.png └── feature_names.txt └── test_cases.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/app/app.py -------------------------------------------------------------------------------- /data/train_v1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/data/train_v1.csv -------------------------------------------------------------------------------- /model_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/model_comparison.md -------------------------------------------------------------------------------- /models/label_encoders.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/models/label_encoders.pkl -------------------------------------------------------------------------------- /models/model_info.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/models/model_info.pkl -------------------------------------------------------------------------------- /models/scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/models/scaler.pkl -------------------------------------------------------------------------------- /models/stroke_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/models/stroke_model.pkl -------------------------------------------------------------------------------- /models/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/models/train_model.py -------------------------------------------------------------------------------- /project_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/project_documentation.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/static/S.png -------------------------------------------------------------------------------- /static/confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/static/confusion_matrix.png -------------------------------------------------------------------------------- /static/feature_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/static/feature_importance.png -------------------------------------------------------------------------------- /static/feature_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/static/feature_names.txt -------------------------------------------------------------------------------- /test_cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahfayed6/Stroke-Risk-Prediction/HEAD/test_cases.txt --------------------------------------------------------------------------------