git clone https://github.com/CIRCLECI-GWP/house-price-prediction
cd house-price-prediction
This repository is meant to be cloned as part of the steps of following the related CircleCI blog tutorial.
The circleci
branch has the CircleCI config included that aligns with the tutorial when completed.
# Create a virtual environment
python -m venv venv
# Activate the virtual environment
# On Windows
venv\Scripts\activate
# On macOS/Linux
source venv/bin/activate
pip install -r requirements.txt
python preprocess.py
python train.py
python evaluate.py