datasets removed from ucimulti

This commit is contained in:
Lorenzo Volpi 2024-04-24 17:23:01 +02:00
parent f74b048e2d
commit 498fd8b050
2 changed files with 10 additions and 10 deletions

View File

@ -62,7 +62,7 @@ if __name__ == '__main__':
with open(global_result_path + '.csv', 'at') as csv: with open(global_result_path + '.csv', 'at') as csv:
for dataset in qp.datasets.UCI_MULTICLASS_DATASETS[:12]: for dataset in qp.datasets.UCI_MULTICLASS_DATASETS:
if dataset in []: if dataset in []:
continue continue

View File

@ -59,7 +59,7 @@ UCI_MULTICLASS_DATASETS = [
'letter', 'letter',
'abalone', 'abalone',
'obesity', 'obesity',
'covertype', # 'covertype', --> very slow, skipped
'nursery', 'nursery',
# 'diabetes', --> very slow, skipped # 'diabetes', --> very slow, skipped
'yeast', 'yeast',
@ -70,17 +70,17 @@ UCI_MULTICLASS_DATASETS = [
'isolet', 'isolet',
'waveform.v1', 'waveform.v1',
'molecular', 'molecular',
'poker_hand', # 'poker_hand', --> very slow, skipped
'connect-4', 'connect-4',
'cardiotocography', # 'cardiotocography', --> multiple labels, skipped
'mhr', 'mhr',
'chess2', 'chess',
'page_block', 'page_block',
'room', # 'room', --> very slow, skipped
'phishing2', 'phishing2',
'rt-iot22', # 'rt-iot22', --> very slow, skipped
'image_seg', 'image_seg',
'steel_plates', # 'steel_plates', --> multiple labels, skipped
'hcv', 'hcv',
] ]
@ -697,7 +697,7 @@ def fetch_UCIMulticlassLabelledCollection(dataset_name, data_home=None, min_clas
'connect-4': 26, 'connect-4': 26,
'cardiotocography': 193, 'cardiotocography': 193,
'mhr': 863, 'mhr': 863,
'chess2': 23, 'chess': 23,
'page_block': 78, 'page_block': 78,
'room': 864, 'room': 864,
'phishing2': 379, 'phishing2': 379,
@ -730,7 +730,7 @@ def fetch_UCIMulticlassLabelledCollection(dataset_name, data_home=None, min_clas
'connect-4': 'Connect-4', 'connect-4': 'Connect-4',
'cardiotocography': 'Cardiotocography', 'cardiotocography': 'Cardiotocography',
'mhr': 'Maternal Health Risk', 'mhr': 'Maternal Health Risk',
'chess2': 'Chess (King-Rook vs. King)', 'chess': 'Chess (King-Rook vs. King)',
'page_block': 'Page Blocks Classification', 'page_block': 'Page Blocks Classification',
'room': 'Room Occupancy Estimation', 'room': 'Room Occupancy Estimation',
'phishing2': 'Website Phishing', 'phishing2': 'Website Phishing',