Stack of estimators with a final classifier.
Stacked generalization consists in stacking the output of individual estimator and use a classifier to compute the final prediction. Stacking allows to use the strength of each individual estimator by using their output as input of a final estimator.
Note that estimators_ are fitted on the full X while final_estimator_ is trained using cross-validated predictions of the base estimators using cross_val_predict.
Read more in the User Guide.
Added in version 0.22.
Base estimators which will be stacked together. Each element of the list is defined as a tuple of string (i.e. name) and an estimator instance. An estimator can be set to ‘drop’ using set_params.
The type of estimator is generally expected to be a classifier. However, one can pass a regressor for some use case (e.g. ordinal regression).
A classifier which will be used to combine the base estimators. The default classifier is a LogisticRegression.
Determines the cross-validation splitting strategy used in cross_val_predict to train final_estimator. Possible inputs for cv are:
"prefit", to assume the estimators are prefit. In this case, the estimators will not be refitted.For integer/None inputs, if the estimator is a classifier and y is either binary or multiclass, StratifiedKFold is used. In all other cases, KFold is used. These splitters are instantiated with shuffle=False so the splits will be the same across calls.
Refer User Guide for the various cross-validation strategies that can be used here.
If “prefit” is passed, it is assumed that all estimators have been fitted already. The final_estimator_ is trained on the estimators predictions on the full training set and are not cross validated predictions. Please note that if the models have been trained on the same data to train the stacking model, there is a very high risk of overfitting.
Added in version 1.1: The ‘prefit’ option was added in 1.1
Note
A larger number of split will provide no benefits if the number of training samples is large enough. Indeed, the training time will increase. cv is not used for model evaluation but for prediction.
Methods called for each base estimator. It can be:
'predict_proba', 'decision_function' or 'predict' in that order.'predict_proba', 'decision_function' or 'predict'. If the method is not implemented by the estimator, it will raise an error.The number of jobs to run in parallel for fit of all estimators. None means 1 unless in a joblib.parallel_backend context. -1 means using all processors. See Glossary for more details.
When False, only the predictions of estimators will be used as training data for final_estimator. When True, the final_estimator is trained on the predictions as well as the original training data.
Verbosity level.
y is of type "multilabel-indicator".
Class labels.
The elements of the estimators parameter, having been fitted on the training data. If an estimator has been set to 'drop', it will not appear in estimators_. When cv="prefit", estimators_ is set to estimators and is not fitted again.
Bunch
Attribute to access any fitted sub-estimators by name.
n_features_in_int
Number of features seen during fit.
n_features_in_,)
Names of features seen during fit. Only defined if the underlying estimators expose such an attribute when fit.
Added in version 1.0.
The classifier fit on the output of estimators_ and responsible for final predictions.
The method used by each base estimator.
See also
StackingRegressorStack of estimators with a final regressor.
When predict_proba is used by each estimator (i.e. most of the time for stack_method='auto' or specifically for stack_method='predict_proba'), the first column predicted by each estimator will be dropped in the case of a binary classification problem. Indeed, both feature will be perfectly collinear.
In some cases (e.g. ordinal regression), one can pass regressors as the first layer of the StackingClassifier. However, note that y will be internally encoded in a numerically increasing order or lexicographic order. If this ordering is not adequate, one should manually numerically encode the classes in the desired order.
Wolpert, David H. “Stacked generalization.” Neural networks 5.2 (1992): 241-259.
>>> from sklearn.datasets import load_iris
>>> from sklearn.ensemble import RandomForestClassifier
>>> from sklearn.svm import LinearSVC
>>> from sklearn.linear_model import LogisticRegression
>>> from sklearn.preprocessing import StandardScaler
>>> from sklearn.pipeline import make_pipeline
>>> from sklearn.ensemble import StackingClassifier
>>> X, y = load_iris(return_X_y=True)
>>> estimators = [
... ('rf', RandomForestClassifier(n_estimators=10, random_state=42)),
... ('svr', make_pipeline(StandardScaler(),
... LinearSVC(random_state=42)))
... ]
>>> clf = StackingClassifier(
... estimators=estimators, final_estimator=LogisticRegression()
... )
>>> from sklearn.model_selection import train_test_split
>>> X_train, X_test, y_train, y_test = train_test_split(
... X, y, stratify=y, random_state=42
... )
>>> clf.fit(X_train, y_train).score(X_test, y_test)
0.9...
Decision function for samples in X using the final estimator.
Training vectors, where n_samples is the number of samples and n_features is the number of features.
The decision function computed the final estimator.
Fit the estimators.
Training vectors, where n_samples is the number of samples and n_features is the number of features.
Target values. Note that y will be internally encoded in numerically increasing order or lexicographic order. If the order matter (e.g. for ordinal regression), one should numerically encode the target y before calling fit.
Sample weights. If None, then samples are equally weighted. Note that this is supported only if all underlying estimators support sample weights.
Parameters to pass to the underlying estimators.
Added in version 1.6: Only available if enable_metadata_routing=True, which can be set by using sklearn.set_config(enable_metadata_routing=True). See Metadata Routing User Guide for more details.
Returns a fitted instance of estimator.
Fit to data, then transform it.
Fits transformer to X and y with optional parameters fit_params and returns a transformed version of X.
Input samples.
Target values (None for unsupervised transformations).
Additional fit parameters.
Transformed array.
Get output feature names for transformation.
Input features. The input feature names are only used when passthrough is True.
input_features is None, then feature_names_in_ is used as feature names in. If feature_names_in_ is not defined, then names are generated: [x0, x1, ..., x(n_features_in_ - 1)].input_features is an array-like, then input_features must match feature_names_in_ if feature_names_in_ is defined.If passthrough is False, then only the names of estimators are used to generate the output feature names.
Transformed feature names.
Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
Added in version 1.6.
A MetadataRouter encapsulating routing information.
Get the parameters of an estimator from the ensemble.
Returns the parameters given in the constructor as well as the estimators contained within the estimators parameter.
Setting it to True gets the various estimators and the parameters of the estimators as well.
Parameter and estimator names mapped to their values or parameter names mapped to their values.
Number of features seen during fit.
Dictionary to access any fitted sub-estimators by name.
Predict target for X.
Training vectors, where n_samples is the number of samples and n_features is the number of features.
Parameters to the predict called by the final_estimator. Note that this may be used to return uncertainties from some estimators with return_std or return_cov. Be aware that it will only account for uncertainty in the final estimator.
enable_metadata_routing=False (default): Parameters directly passed to the predict method of the final_estimator.enable_metadata_routing=True: Parameters safely routed to the predict method of the final_estimator. See Metadata Routing User Guide for more details.Changed in version 1.6: **predict_params can be routed via metadata routing API.
Predicted targets.
Predict class probabilities for X using the final estimator.
Training vectors, where n_samples is the number of samples and n_features is the number of features.
The class probabilities of the input samples.
Return the mean accuracy on the given test data and labels.
In multi-label classification, this is the subset accuracy which is a harsh metric since you require for each sample that each label set be correctly predicted.
Test samples.
True labels for X.
Sample weights.
Mean accuracy of self.predict(X) w.r.t. y.
Request metadata passed to the fit method.
Note that this method is only relevant if enable_metadata_routing=True (see sklearn.set_config). Please see User Guide on how the routing mechanism works.
The options for each parameter are:
True: metadata is requested, and passed to fit if provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it to fit.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.The default (sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.
Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a Pipeline. Otherwise it has no effect.
Metadata routing for sample_weight parameter in fit.
The updated object.
Set output container.
See Introducing the set_output API for an example on how to use the API.
Configure output of transform and fit_transform.
"default": Default output format of a transformer"pandas": DataFrame output"polars": Polars outputNone: Transform configuration is unchangedAdded in version 1.4: "polars" option was added.
Estimator instance.
Set the parameters of an estimator from the ensemble.
Valid parameter keys can be listed with get_params(). Note that you can directly set the parameters of the estimators contained in estimators.
Specific parameters using e.g. set_params(parameter_name=new_value). In addition, to setting the parameters of the estimator, the individual estimator of the estimators can also be set, or can be removed by setting them to ‘drop’.
Estimator instance.
Request metadata passed to the score method.
Note that this method is only relevant if enable_metadata_routing=True (see sklearn.set_config). Please see User Guide on how the routing mechanism works.
The options for each parameter are:
True: metadata is requested, and passed to score if provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it to score.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.The default (sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.
Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a Pipeline. Otherwise it has no effect.
Metadata routing for sample_weight parameter in score.
The updated object.
Return class labels or probabilities for X for each estimator.
Training vectors, where n_samples is the number of samples and n_features is the number of features.
Prediction outputs for each estimator.
© 2007–2025 The scikit-learn developers
Licensed under the 3-clause BSD License.
https://scikit-learn.org/1.6/modules/generated/sklearn.ensemble.StackingClassifier.html