This repository contains all components of the summative assignment for BSE Machine Learning and Mathematics for Machine Learning. The project addresses a specific use case with linear regression and includes a comparison with other machine learning models, API deployment, and a Flutter-based mobile app for predictions.
To empower young women in STEAM (Science, Technology, Engineering, Arts, and Mathematics) fields, foster DEI (Diversity, Equity, and Inclusion), and drive environmental sustainability for a better future.
The project aims to predict an individual's carbon footprint based on their daily habits, such as electronic usage, meal consumption, transportation, grocery expenditure, and clothing purchases. This use case is unique and specific, aligning with my mission to drive environmental sustainability for a better future.
-
Dataset: The dataset contains variables representing daily habits and corresponding carbon footprint. Variables include:
- Electronic devices owned (integer)
- Screen time (hours/day) (float)
- Monthly grocery bill (float, in USD)
- Monthly transportation expenditure (float, in USD)
- New clothes bought monthly (integer)
- Meals consumed weekly (integer)
-
Source: Retrieved from Kaggle, titled Daily Habits and Carbon Footprint Dataset.
-
Dataset Link: https://www.kaggle.com/datasets/dumanmesut/individual-carbon-footprint-calculation
- Correlation Heatmap: Shows relationships among variables.
- Variable Distribution: Histograms for each feature to understand spread and outliers.
- Implemented Linear Regression, Decision Trees, and Random Forest models.
- Optimized Linear Regression using Gradient Descent.
- Evaluated all models using metrics such as Mean Squared Error (MSE) and R² score.
- Saved the best-performing model (Random Forest) as
model.pkl
.
- Developed a FastAPI-based prediction API with:
- POST endpoint:
/predict
- Pydantic validation: Ensures proper input types and ranges.
- CORS middleware: For cross-origin access.
- POST endpoint:
- Hosted the API on Render with Swagger UI available at:
- Developed a mobile app with Flutter to interact with the API.
- Input Fields: Text boxes for all input variables.
- Button: "Predict" button to send data to the API.
- Output Display: Shows predicted carbon footprint or error messages.
- The app fetches predictions using the deployed API.
- YouTube Demo: A 2-minute video showcasing:
- API functionality via Swagger UI.
- Mobile app making predictions using the API.
- Video Link
- Clone the repository.
- Navigate to the
summative/linear_regression/
directory. - Open
multivariate.ipynb
and run all cells in a Jupyter Notebook environment.
- Navigate to
summative/API/
directory. - Install dependencies:
pip install -r requirements.txt
- Run the API locally for testing:
uvicorn prediction:app --reload
- Access Swagger UI at
http://127.0.0.1:8000/docs
or use the deployed API link.
- Navigate to
summative/FlutterApp/
. - Install dependencies:
flutter pub get
- Run the app:
flutter run
- Ensure the app connects to the API via the provided endpoint.
- Mean Squared Error (MSE): Evaluated on test data.
- R² Score: Indicates goodness-of-fit.
- Validated inputs using Pydantic models.
- Implemented error handling for invalid input ranges.
- Tested with multiple scenarios for prediction and error handling.
- Ensured seamless communication with the deployed API.
- Swagger UI: https://linear-regression-model-pjjl.onrender.com/docs
- YouTube Video: https://youtu.be/0cbiCNLjREA