Flow
sklearn.pipeline.Pipeline(pca=sklearn.decomposition.pca.PCA,randomforestclassifier=sklearn.ensemble.forest.RandomForestClassifier)

sklearn.pipeline.Pipeline(pca=sklearn.decomposition.pca.PCA,randomforestclassifier=sklearn.ensemble.forest.RandomForestClassifier)

Visibility: public Uploaded 13-08-2021 by Sergey Redyuk sklearn==0.18.1 numpy>=1.6.1 scipy>=0.9 33 runs
0 likes downloaded by 1 people 0 issues 0 downvotes , 1 total downloads
  • openml-python python scikit-learn sklearn sklearn_0.18.1
Issue #Downvotes for this reason By


Loading wiki
Help us complete this description Edit
Pipeline of transforms with a final estimator. Sequentially apply a list of transforms and a final estimator. Intermediate steps of the pipeline must be 'transforms', that is, they must implement fit and transform methods. The final estimator only needs to implement fit. The purpose of the pipeline is to assemble several steps that can be cross-validated together while setting different parameters. For this, it enables setting parameters of the various steps using their names and the parameter name separated by a '__', as in the example below. A step's estimator may be replaced entirely by setting the parameter with its name to another estimator, or a transformer removed by setting to None.

Parameters

stepsList of (name, transform) tuples (implementing fit/transform) that are chained, in the order in which they are chained, with the last object an estimator.default: [{"oml-python:serialized_object": "component_reference", "value": {"key": "pca", "step_name": "pca"}}, {"oml-python:serialized_object": "component_reference", "value": {"key": "randomforestclassifier", "step_name": "randomforestclassifier"}}]

0
Runs

List all runs
Parameter:
Rendering chart
Rendering table