This project predicts the likelihood of diabetes in a person based on health parameters using a machine learning model integrated with a Django web application.
- β Predicts diabetes status using input medical data
- π§ Machine Learning model trained on the Pima Indian Diabetes dataset (
diabetes.csv
) - π User-friendly web interface built with Django
- π Organized folder structure with separate modules for the ML model, app views, and static assets
βββ DiabetesPrediction # Django project directory
βββ app # Django app with views, templates, and forms
βββ static # Static files (CSS, JS)
βββ diabetes.csv # Dataset used for training the model
βββ manage.py # Django management script
βββ README.md # Project description
- π₯ Clone the repository
- π§© Install dependencies
- π§ Run migrations
βΆοΈ Start the server- π Access the web interface at
http://127.0.0.1:8000/
This project uses the Pima Indian Diabetes Dataset, which includes features such as:
- Pregnancies
- Glucose
- Blood Pressure
- Skin Thickness
- Insulin
- BMI
- Diabetes Pedigree Function
- Age
Ensure all dependencies (like scikit-learn
, pandas
, Django
, etc.) are installed in your environment.