This repository contains four machine learning projects completed as part of the Prasunet Internship. Each project tackles a different machine learning task, ranging from regression and clustering to image classification and food recognition.
- Task 1: House Price Prediction using Linear Regression
- Task 2: Customer Segmentation using K-Means Clustering
- Task 3: Cat vs. Dog Image Classification using SVM
- Task 4: Food Recognition and Calorie Estimation
Develop a linear regression model to predict the prices of houses based on their square footage and the number of bedrooms and bathrooms.
- Simple regression model
- Predicts house prices based on house features
- Evaluates model using mean squared error (MSE)
Create a K-Means clustering algorithm to group customers of a retail store based on their purchase history.
- K-Means clustering for customer segmentation
- Identifies groups of similar customers based on purchase behavior
- Visualizes clusters and customer data distribution
Implement a Support Vector Machine (SVM) to classify images of cats and dogs.
- SVM-based image classification
- Binary classification between two categories: cats and dogs
- Evaluates model accuracy on the test dataset
Develop a model to accurately recognize food items from images and estimate their calorie content, enabling users to track their dietary intake.
- Image classification of food items
- Calorie estimation for dietary tracking
- Recognizes various food items and provides calorie per gram estimates
- Apple Pie: ~2.5 calories per gram
- Baby Back Ribs: ~3.5 calories per gram
- Baklava: ~5 calories per gram
- Beef Carpaccio: ~2 calories per gram
-
Clone the repository:
git clone https://github.com/yourusername/prasunet-internship-tasks.git
-
Navigate to the desired task folder:
cd task_1 # For Task 1 cd task_2 # For Task 2 cd task_3 # For Task 3 cd task_4 # For Task 4
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the corresponding Python script for each task.
- Datasets from Kaggle are used for each project.
- These projects were completed as part of the Prasunet Internship Program.