Computational Techniques for Machine Learning course repository
Go to file
gregorio 2a78474f46 Delete 'assignment5/datasets/ecoli-0-6-7_vs_5/ecoli-0-6-7_vs_5-5-1tst.dat' 2021-11-02 17:26:00 +00:00
assignment5 Delete 'assignment5/datasets/ecoli-0-6-7_vs_5/ecoli-0-6-7_vs_5-5-1tst.dat' 2021-11-02 17:26:00 +00:00
LICENSE Initial commit 2021-10-30 17:40:45 +00:00
README.md Update 'README.md' 2021-11-02 16:58:12 +00:00
setup.py Update 'setup.py' 2021-11-02 16:36:40 +00:00

README.md

CTML

Computational Techniques for Machine Learning course repository

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.