-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
executable file
·25 lines (24 loc) · 923 Bytes
/
__init__.py
File metadata and controls
executable file
·25 lines (24 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from .load import load_adult, load_credit, load_magic, load_diabetes, load_iris, load_vehicle, load_satellite, load_redwine, load_forestcov
from .load import load_glass, load_haberman, load_mammographic, load_indian_liver, load_segment, load_ecoli, load_optdigits, load_letterrecog, load_heart, load_liver_disorder, load_sonar, load_svmguide3, load_german_numer
__all__ = ['load_adult',
'load_iris',
'load_optdigits',
'load_satellite',
'load_vehicle',
'load_segment',
'load_redwine',
'load_letterrecog',
'load_forestcov',
'load_ecoli',
'load_credit',
'load_magic',
'load_diabetes',
'load_glass',
'load_haberman',
'load_mammographic',
'load_indian_liver',
'load_heart',
'load_sonar',
'load_svmguide3',
'load_liver_disorder',
'load_german_numer']