-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
19 lines (13 loc) · 839 Bytes
/
example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
Author: Benjamin M. Sainz-Tinajero @ Tecnologico de Monterrey, 2022.
"""
from gen import *
ds = ['absenteeism-at-work', 'arrhythmia', 'breast-cancer-wisconsin', 'breast-tissue', 'car-evaluation', 'dermatology',
'echocardiogram', 'ecoli', 'forest-fires', 'forest', 'german-credit', 'glass', 'hepatitis', 'image-segmentation',
'ionosphere', 'iris', 'leaf', 'liver', 'parkinsons', 'seeds', 'segment', 'sonar', 'soybean-large',
'student-performance', 'tic-tac-toe', 'transfusion', 'user-knowledge-modeling', 'wine', 'yeast', 'zoo']
nature = ['canada', 'coast', 'highway-in-the-desert', 'london', 'parking-lot', 'port-city', 'port', 'road-with-trees',
'varadero', 'white-containers']
if __name__ == "__main__":
for d in ds:
ecacs_run(data=d, n_clusters=3, pop_size=200, max_gens=200, runs=10)