8000 Redesign of datasets API from functional to OO by daniel-cortez-stevenson · Pull Request #13120 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

Redesign of datasets API from functional to OO #13120

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions sklearn/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
including methods to load and fetch popular reference datasets. It also
features some artificial data generators.
"""
from .base import Boston
from .base import BreastCancer
from .base import Diabetes
from .base import Digits
from .base import Iris
from .base import Linnerud
from .base import Wine
from .base import SampleImages
from .base import load_breast_cancer
from .base import load_boston
from .base import load_diabetes
Expand Down Expand Up @@ -52,7 +60,11 @@
from .rcv1 import fetch_rcv1


__all__ = ['clear_data_home',
__all__ = ['Boston',
'BreastCancer',
'clear_data_home',
'Diabetes',
'Digits',
'dump_svmlight_file',
'fetch_20newsgroups',
'fetch_20newsgroups_vectorized',
Expand All @@ -67,6 +79,8 @@
'fetch_kddcup99',
'fetch_openml',
'get_data_home',
'Iris',
'Linnerud',
'load_boston',
'load_diabetes',
'load_digits',
Expand Down Expand Up @@ -99,4 +113,6 @@
'make_sparse_uncorrelated',
'make_spd_matrix',
'make_swiss_roll',
'mldata_filename']
'mldata_filename',
'SampleImages',
'Wine']
Loading
0