|
21 | 21 | from pathlib import Path
|
22 | 22 | from typing import Callable, Dict
|
23 | 23 |
|
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) |
29 | 30 |
|
30 | 31 |
|
31 | 32 | dataset_loaders: Dict[str, Callable[[Path], bool]] = {
|
|
51 | 52 | "santander": santander,
|
52 | 53 | "sensit": sensit,
|
53 | 54 | "skin_segmentation": skin_segmentation,
|
54 |
| - "year": year, |
| 55 | + "year_prediction_msd": year_prediction_msd, |
55 | 56 | }
|
56 | 57 |
|
57 | 58 |
|
|
0 commit comments