This project intends to build a ML Model to predict House Prices in California bsaed on dataset California housing dataset. Exploratory Data Analysis was performed on this dataset to identify possible outliers and to understand the relation between the given independant features. A linear regression model was trained to fit through the dataset. A webpage with an interface which demands input values of independent features to predict the possible house price is also included in the scope of this project.
create conda environment will all requirements by command:
conda env create -f environment.yml
CaliforniaHousePricing
│ .gitignore
│ app.py
│ environment.yml
│ LICENSE
│ README.md
│ regmodel.pkl
│ Regression_Impl.ipynb
│ scaling.pkl
├───templates
│ debug.log
│ index.html
Regression_Impl.ipynb
Jupyter notebook implementing EDA and Linear Regressionapp.py
Webpage backendtemplates\index.html
Webpage Frontend