Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scikit-learn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ian Johnson
scikit-learn
Commits
c9f1b619
Commit
c9f1b619
authored
14 years ago
by
Olivier Grisel
Browse files
Options
Downloads
Patches
Plain Diff
better parameter ordering
parent
6f6b2f8a
Loading
Loading
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
scikits/learn/datasets/mlcomp.py
+3
-3
3 additions, 3 deletions
scikits/learn/datasets/mlcomp.py
with
3 additions
and
3 deletions
scikits/learn/datasets/mlcomp.py
+
3
−
3
View file @
c9f1b619
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment