Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fatimaafzaal/diabetes-prediction-web-app
This repository contains the code for a web-based diabetes prediction application using a machine learning model. The application is built using Flask and allows users to input various health parameters to predict the likelihood of diabetes using ensemble voting classifier.
https://github.com/fatimaafzaal/diabetes-prediction-web-app
diabetes diabetes-prediction ensemble-classifier ensemble-learning ensemble-model flask flask-application logistic-regression machine-learning python random-forest support-vector-machines svm voting-classifier vscode
Last synced: 1 day ago
JSON representation
This repository contains the code for a web-based diabetes prediction application using a machine learning model. The application is built using Flask and allows users to input various health parameters to predict the likelihood of diabetes using ensemble voting classifier.
- Host: GitHub
- URL: https://github.com/fatimaafzaal/diabetes-prediction-web-app
- Owner: fatimaAfzaal
- Created: 2023-09-13T15:24:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-02T14:01:16.000Z (about 1 year ago)
- Last Synced: 2023-10-02T17:57:21.095Z (about 1 year ago)
- Topics: diabetes, diabetes-prediction, ensemble-classifier, ensemble-learning, ensemble-model, flask, flask-application, logistic-regression, machine-learning, python, random-forest, support-vector-machines, svm, voting-classifier, vscode
- Language: HTML
- Homepage:
- Size: 866 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Diabetes Prediction Flask Web App
This repository contains the code for a web-based diabetes prediction application using a machine learning model. The application is built using Flask and allows users to input various health parameters to predict the likelihood of diabetes.
## OverviewThe web app utilizes a machine learning model, specifically an ensemble model combining RandomForestClassifier, LogisticRegression, and Support Vector Machine (SVM), to provide predictions. The model was trained on the diabetes dataset from kaggle.
## Features
- Users can input their health parameters such as Glucose level, Blood Pressure, Skin Thickness, Insulin level, BMI, Diabetes Pedigree Function (DPF), and Age.
- The ensemble machine learning model predicts the likelihood of diabetes based on the input.
- The app displays the prediction result, indicating whether the user is likely to have diabetes or not.
- Users can receive accurate and quick predictions for early diabetes detection.## Model
The machine learning model used in this app is an ensemble of RandomForestClassifier, LogisticRegression, and Support Vector Machine (SVM). The ensemble approach combines the strengths of these classifiers to improve prediction accuracy.