From 498fd8b05062e33b297286300d8652eb9fe305cb Mon Sep 17 00:00:00 2001 From: Lorenzo Volpi Date: Wed, 24 Apr 2024 17:23:01 +0200 Subject: [PATCH] datasets removed from ucimulti --- examples/ucimulti_experiments.py | 2 +- quapy/data/datasets.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/ucimulti_experiments.py b/examples/ucimulti_experiments.py index 16144cd..aae8c88 100644 --- a/examples/ucimulti_experiments.py +++ b/examples/ucimulti_experiments.py @@ -62,7 +62,7 @@ if __name__ == '__main__': 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 []: continue diff --git a/quapy/data/datasets.py b/quapy/data/datasets.py index 2e56b48..d197717 100644 --- a/quapy/data/datasets.py +++ b/quapy/data/datasets.py @@ -59,7 +59,7 @@ UCI_MULTICLASS_DATASETS = [ 'letter', 'abalone', 'obesity', - 'covertype', + # 'covertype', --> very slow, skipped 'nursery', # 'diabetes', --> very slow, skipped 'yeast', @@ -70,17 +70,17 @@ UCI_MULTICLASS_DATASETS = [ 'isolet', 'waveform.v1', 'molecular', - 'poker_hand', + # 'poker_hand', --> very slow, skipped 'connect-4', - 'cardiotocography', + # 'cardiotocography', --> multiple labels, skipped 'mhr', - 'chess2', + 'chess', 'page_block', - 'room', + # 'room', --> very slow, skipped 'phishing2', - 'rt-iot22', + # 'rt-iot22', --> very slow, skipped 'image_seg', - 'steel_plates', + # 'steel_plates', --> multiple labels, skipped 'hcv', ] @@ -697,7 +697,7 @@ def fetch_UCIMulticlassLabelledCollection(dataset_name, data_home=None, min_clas 'connect-4': 26, 'cardiotocography': 193, 'mhr': 863, - 'chess2': 23, + 'chess': 23, 'page_block': 78, 'room': 864, 'phishing2': 379, @@ -730,7 +730,7 @@ def fetch_UCIMulticlassLabelledCollection(dataset_name, data_home=None, min_clas 'connect-4': 'Connect-4', 'cardiotocography': 'Cardiotocography', 'mhr': 'Maternal Health Risk', - 'chess2': 'Chess (King-Rook vs. King)', + 'chess': 'Chess (King-Rook vs. King)', 'page_block': 'Page Blocks Classification', 'room': 'Room Occupancy Estimation', 'phishing2': 'Website Phishing',