Skip to content

Commit 873754b

Browse files
author
Igor Rukhovich
committed
Split dataset loading to different files
1 parent f64ae68 commit 873754b

File tree

5 files changed

+931
-859
lines changed

5 files changed

+931
-859
lines changed

datasets/load_datasets.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121
from pathlib import Path
2222
from typing import Callable, Dict
2323

24-
from .loader import (a_nine_a, airline, airline_ohe, bosch, codrnanorm,
25-
connect, covertype, covtype, epsilon, fraud, gisette,
26-
higgs, higgs_one_m, ijcnn, klaverjas, mnist,
27-
mortgage_first_q, msrank, plasticc, santander, sensit,
28-
skin_segmentation, year)
24+
25+
from .loader_clf import (
26+
a_nine_a, airline, airline_ohe, bosch, codrnanorm, epsilon, fraud, gisette, higgs, higgs_one_m,
27+
ijcnn, klaverjas, santander, skin_segmentation)
28+
from .loader_reg import (mortgage_first_q, year_prediction_msd)
29+
from .loader_mul import (connect, covertype, covtype, mnist, msrank, plasticc, sensit)
2930

3031

3132
dataset_loaders: Dict[str, Callable[[Path], bool]] = {
@@ -51,7 +52,7 @@
5152
"santander": santander,
5253
"sensit": sensit,
5354
"skin_segmentation": skin_segmentation,
54-
"year": year,
55+
"year_prediction_msd": year_prediction_msd,
5556
}
5657

5758

0 commit comments

Comments
 (0)