An open API service indexing awesome lists of open source software.

https://github.com/djdurga/bengaluru-house-price-data


https://github.com/djdurga/bengaluru-house-price-data

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# Bengaluru-House-Price-Data

This data science project series walks through the step-by-step process of how to build a real estate price prediction website. We will first build a model using sklearn and linear regression using the Banglore home prices dataset from kaggle.com. The second step would be to write a Python flask server that uses the saved model to serve http requests. The third component is the website built in HTML, CSS and JavaScript that allows the user to enter their home square ft area, bedrooms etc and it will call Python flask server to retrieve the predicted price. During model building, we will cover almost all data science concepts such as data load and cleaning, outlier detection and removal, feature engineering, dimensionality reduction, gridsearchcv for hyperparameter tunning, k fold cross validation etc. Technology and tools this project covers,

Python

Numpy and Pandas for data cleaning

Matplotlib for data visualization

Sklearn for model building

Jupyter notebook, visual studio code and pycharm as IDE

Python flask for http server

HTML/CSS/Javascript for UI