Project: Bangalore House Price Prediction (end-to-end supervised regression pipeline)
Created an end-to-end regression pipeline for predicting residential property prices using a Bengaluru House dataset. The workflow involved cleaning and transforming the dataset into a model-ready labeled training format, followed by training and evaluating regression models to select the best performer. The final preprocessing and model steps were serialized for consistent inference during deployment. • Performed data cleaning: handled missing values, extracted BHK from text, converted sqft ranges to numeric averages, and removed implausible records • Engineered categorical location features with OneHotEncoder and standardized numerical columns with StandardScaler inside a single sklearn Pipeline • Evaluated Linear Regression, Lasso, and Ridge models and selected Ridge Regression based on R² performance • Serialized the trained pipeline with pickle to support deployment-ready inference