-
-
Notifications
You must be signed in to change notification settings - Fork 212
Closed
Labels
Good First IssueIssues suitable for people new to contributing to openml-python!Issues suitable for people new to contributing to openml-python!
Description
The flow names are currently very descriptive - which is good - but is often also troublesome to read.
E.g. if I try to plot an overview of sklearn pipelines on a task I get this:

Maybe we can implement a simple 'short name' for pipelines? E.g. this:
sklearn.pipeline.Pipeline(imputation=openmlstudy14.preprocessing.ConditionalImputer,hotencoding=sklearn.preprocessing.data.OneHotEncoder,variencethreshold=sklearn.feature_selection.variance_threshold.VarianceThreshold,classifier=sklearn.ensemble.forest.RandomForestClassifier)
could become this (only show the names of the components):
ConditionalImputer-OneHotEncoder-VarianceThreshold-RandomForestClassifier
Metadata
Metadata
Assignees
Labels
Good First IssueIssues suitable for people new to contributing to openml-python!Issues suitable for people new to contributing to openml-python!