Create a python virtual environment :
python3 -m venv venvActivate the virtual env :
source ./venv/bin/activateInstall the requirements
python3 -m pip install -r requirements.txtBuild the project with :
python3 setup.py installIf you get an error of the sort :
ModuleNotFoundError: No module named 'setuptools'
Install setuptools
python3 -m pip install -U pip setuptoolsThe main entrypoint to the project is : main.ipynb
However the second iteration (an improvement from main.ipynb is revised_main.ipynb.
If you're interested in the preprocessing steps these will be in the /src folder.