Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 687 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 687 Bytes

House Price Prediction

this is a the source code to my submission to the kaggle content House Prices - Advanced Regression Techniques

All the code can be found in the jupyter notebook HousePrices.ipynb.

Setup:

if you want to run the code on a local machine for some reason, you can set up the project by doing:

pip install -r requirements.txt

it's always good practice to install libraries in a virtual environment instead of system wide:

python3 -m venv .venv

source .venv/bin/activate # linux
.\.venv/scripts/activate # windows

pip install -r requirements.txt