Computational Techniques for Machine Learning course repository
Go to file
gregorio e74d30ac14 Update 'README.md' 2021-11-02 17:42:50 +00:00
assignment5 Delete 'assignment5/assignment5_v2.py' 2021-11-02 17:26:54 +00:00
LICENSE
README.md Update 'README.md' 2021-11-02 17:42:50 +00:00
setup.py

README.md

CTML

Computational Techniques for Machine Learning course repository

Authors: Gregorio, Jessica, Alejandro

Instructions to run the three experiments in three steps:

1- install repository with:

pip install git+https://git.disroot.org/gregorio/ctml.git#egg=CTML

2- import assignment 5 library with:

from assignment5 import assignment5

3- run the experiments with:

assignment5.run_experiments(n_datasets = 60, data_transformation = None)

assignment5.run_experiments(n_datasets = 60, data_transformation = 'MinMax')

assignment5.run_experiments(n_datasets = 60, data_transformation = 'Standard')

Note: The run_experiments function downloads the necessary datasets to run the experiments.