An open API service indexing awesome lists of open source software.

https://github.com/chandadiya2004/diabetes-prediction

The Diabetes Prediction project utilizes machine learning techniques to determine the probability of an individual having diabetes based on various health metrics like age, BMI, and blood pressure. The prediction model is developed using the Support Vector Machine (SVM) algorithm, which classifies individuals based on these parameters.
https://github.com/chandadiya2004/diabetes-prediction

column-transformer machine-learning pipeline python streamlit svm-model

Last synced: about 1 month ago
JSON representation

The Diabetes Prediction project utilizes machine learning techniques to determine the probability of an individual having diabetes based on various health metrics like age, BMI, and blood pressure. The prediction model is developed using the Support Vector Machine (SVM) algorithm, which classifies individuals based on these parameters.

Awesome Lists containing this project

README

          

# Diabetes Prediction using Machine Learning
This project focuses on predicting whether an individual has diabetes using machine learning techniques based on various health parameters. The dataset includes features like age, BMI, blood pressure, and other health-related factors. The Support Vector Machine (SVM) algorithm is utilized to build an efficient classification model.

# Features:
1. Data Preprocessing: Missing values are handled using SimpleImputer.
Categorical variables are encoded using OneHotEncoder.
2. Modeling: The SVM classifier is implemented for accurate diabetes prediction.
3. Pipeline: A streamlined Pipeline integrates preprocessing and model training, ensuring scalability and simplicity.
4. Evaluation: The model's performance is assessed through metrics such as accuracy and classification reports.
5. Deployment: The project incorporates Streamlit for user-friendly deployment, enabling users to input health details and instantly receive predictions.

# Technologies Used:
Python for development

scikit-learn for machine learning tasks

Streamlit for building an interactive web application

Pickle for saving and reusing the trained model