https://github.com/msikorski93/heart-failure-prediction
The subject of this repository was to perform binary classification based on respondent's collected features (age, cholesterol level, fasting blood sugar, thallium stress test results, etc.).
https://github.com/msikorski93/heart-failure-prediction
classification knn-classifier logistic-regression random-forest-classifier roc-curves scikit-learn svm-classifier
Last synced: 8 months ago
JSON representation
The subject of this repository was to perform binary classification based on respondent's collected features (age, cholesterol level, fasting blood sugar, thallium stress test results, etc.).
- Host: GitHub
- URL: https://github.com/msikorski93/heart-failure-prediction
- Owner: msikorski93
- Created: 2022-10-16T11:50:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-16T12:07:20.000Z (almost 3 years ago)
- Last Synced: 2025-01-09T07:51:52.144Z (9 months ago)
- Topics: classification, knn-classifier, logistic-regression, random-forest-classifier, roc-curves, scikit-learn, svm-classifier
- Language: Jupyter Notebook
- Homepage:
- Size: 685 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Heart-Failure-Prediction
The subject of this repository was to perform binary classification based on patient's collected features (age, cholesterol level, fasting blood sugar, thallium stress test results, etc.). We implemented different machine learning models which can categorize these labels. We used supervised learning with the scikit-learn library. These algorithms were developed to classify target labels:
* logistic regression,
* k-nearest neighbors,
* support vector machines,
* random forest ensemble,
* Gaussian Naïve Bayes,
* gradient boosting ensemble,
* stochastic gradient descent,
* multi-layer perceptron.
![]()
![]()
We achieved such results while evaluating the models. The top classifier with highest performance was the **k-nearest neighbors**. We prooved that forecasting heart disease events with this dataset is possible.