Installation

Set of instructions: first clone repo, go to the main folder, create an environment with .ymal file then go to src and run main with arguments

Clone repository:

$ git clone git@gitlab.idiap.ch:lstel/m05-naderi-stel.git

Move inside of the main folder of the repository:

$ cd m05-naderi-stel/

Using the file miniprojectenv.yml, create a conda environment that contain all the libraries required to run the project:

$ conda env create -f miniprojectenv.yml

Move to the folder wich contain the code and datasets

$ cd m05-naderi-stel/src/

Execute main.py with arguments:

[-] -d: boston, whitewine or redwine [-] -m: linear, tree

For example:

$ python3 main.py -d boston -m linear

To run the tests:

$ pytest