End to end lightGBM regression model to predict house prices in Beijing
β
βββ data/ <- The original, immutable data dump.
β
βββ figures/ <- Figures saved by scripts or notebooks.
β
βββ notebooks/ <- Jupyter notebooks. Naming convention is a short `-` delimited
β description, a number (for ordering), and the creator's initials,
β e.g. `initial-data-exploration-01-hg`.
β
βββ output/ <- Manipulated data, logs, etc.
β
βββ tests/ <- Unit tests.
β
βββ price_prediction_model/ <- Python module with source code of this project.
β
βββ environment.yml <- conda virtual environment definition file.
β
βββ LICENSE
β
βββ Makefile <- Makefile with commands like `make environment`
β
βββ README.md <- The top-level README for developers using this project.
β
βββ tox.ini <- tox file with settings for running tox; see tox.testrun.org
Project based on the cookiecutter data science project template.
Install the virtual environment with conda and activate it:
$ conda env create -f environment.yml
$ conda activate example-project
Install price_prediction_model
in the virtual environment:
$ pip install --editable .