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: .. code-block:: sh $ git clone git@gitlab.idiap.ch:lstel/m05-naderi-stel.git Move inside of the main folder of the repository: .. code-block:: sh $ cd m05-naderi-stel/ Using the file miniprojectenv.yml, create a conda environment that contain all the libraries required to run the project: .. code-block:: sh $ conda env create -f miniprojectenv.yml Move to the folder wich contain the code and datasets .. code-block:: sh $ cd m05-naderi-stel/src/ Execute main.py with arguments: [-] -d: boston, whitewine or redwine [-] -m: linear, tree For example: .. code-block:: sh $ python3 main.py -d boston -m linear To run the tests: .. code-block:: sh $ pytest