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.