Stanford's MS&E 226 class project [Pierre-Amaury Laforcade & Axel Durand-Allizé]
This project uses Poetry to manage its dependencies. To set the project up if you haven't used poetry before, run the following commands, after making sure you use a version of python that's compatible with the project (see pyproject.toml)
pip install poetry
poetry install --no-rootAfter that, you need to activate the virtual environment to run the python tasks with the poetry shell. For that, run the following command:
poetry shellTo run the different tasks, you can use the following commands - you put the data folder at the root of the repo
Preprocessing
python core/__main__.py --task preprocessing --data-folder dataExploration
python core/__main__.py --task exploration --data-folder dataRegression
python core/__main__.py --task regression --data-folder dataClassification
python core/__main__.py --task classification --data-folder data