Skip to content
Snippets Groups Projects
Commit c9f1b619 authored by Olivier Grisel's avatar Olivier Grisel
Browse files

better parameter ordering

parent 6f6b2f8a
No related merge requests found
......@@ -37,7 +37,7 @@ LOADERS = {
}
def load_mlcomp(name_or_id, mlcomp_root=None, set_="raw", **kwargs):
def load_mlcomp(name_or_id, set_="raw", mlcomp_root=None, **kwargs):
"""Load a datasets as downloaded from http://mlcomp.org
Parameters
......@@ -46,12 +46,12 @@ def load_mlcomp(name_or_id, mlcomp_root=None, set_="raw", **kwargs):
name_or_id : the integer id or the string name metadata of the MLComp
dataset to load
set_ : select the portion to load: 'train', 'test' or 'raw'
mlcomp_root : the filesystem path to the root folder where MLComp datasets
are stored, if mlcomp_root is None, the MLCOMP_DATASETS_HOME
environment variable is looked up instead.
set_ : select the portion to load: 'train', 'test' or 'raw'
**kwargs : domain specific kwargs to be passed to the dataset loader.
Returns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment