Transformer that performs Sequential Feature Selection.
This Sequential Feature Selector adds (forward selection) or removes (backward selection) features to form a feature subset in a greedy fashion. At each stage, this estimator chooses the best feature to add or remove based on the cross-validation score of an estimator. In the case of unsupervised learning, this Sequential Feature Selector looks only at the features (X), not the desired outputs (y).
Read more in the User Guide.
Added in version 0.24.
An unfitted estimator.
If "auto", the behaviour depends on the tol parameter:
tol is not None, then features are selected while the score change does not exceed tol.If integer, the parameter is the absolute number of features to select. If float between 0 and 1, it is the fraction of features to select.
Added in version 1.1: The option "auto" was added in version 1.1.
Changed in version 1.3: The default changed from "warn" to "auto" in 1.3.
If the score is not incremented by at least tol between two consecutive feature additions or removals, stop adding or removing.
tol can be negative when removing features using direction="backward". tol is required to be strictly positive when doing forward selection. It can be useful to reduce the number of features at the cost of a small decrease in the score.
tol is enabled only when n_features_to_select is "auto".
Added in version 1.1.
Whether to perform forward selection or backward selection.
A single str (see The scoring parameter: defining model evaluation rules) or a callable (see Callable scorers) to evaluate the predictions on the test set.
NOTE that when using a custom scorer, it should return a single value.
If None, the estimator’s score method is used.
Determines the cross-validation splitting strategy. Possible inputs for cv are:
(Stratified)KFold,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.
Number of jobs to run in parallel. When evaluating a new feature to add or remove, the cross-validation procedure is parallel over the folds. None means 1 unless in a joblib.parallel_backend context. -1 means using all processors. See Glossary for more details.
Number of features seen during fit. Only defined if the underlying estimator exposes such an attribute when fit.
Added in version 0.24.
n_features_in_,)
Names of features seen during fit. Defined only when X has feature names that are all strings.
Added in version 1.0.
The number of features that were selected.
The mask of selected features.
See also
GenericUnivariateSelectUnivariate feature selector with configurable strategy.
RFERecursive feature elimination based on importance weights.
RFECVRecursive feature elimination based on importance weights, with automatic selection of the number of features.
SelectFromModelFeature selection based on thresholds of importance weights.
>>> from sklearn.feature_selection import SequentialFeatureSelector
>>> from sklearn.neighbors import KNeighborsClassifier
>>> from sklearn.datasets import load_iris
>>> X, y = load_iris(return_X_y=True)
>>> knn = KNeighborsClassifier(n_neighbors=3)
>>> sfs = SequentialFeatureSelector(knn, n_features_to_select=3)
>>> sfs.fit(X, y)
SequentialFeatureSelector(estimator=KNeighborsClassifier(n_neighbors=3),
n_features_to_select=3)
>>> sfs.get_support()
array([ True, False, True, True])
>>> sfs.transform(X).shape
(150, 3)
Learn the features to select from X.
Training vectors, where n_samples is the number of samples and n_features is the number of predictors.
Target values. This parameter may be ignored for unsupervised learning.
Parameters to be passed to the underlying estimator, cv and scorer objects.
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 the instance itself.
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.
Mask feature names according to selected features.
Input features.
input_features is None, then feature_names_in_ is used as feature names in. If feature_names_in_ is not defined, then the following input feature 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.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 parameters for this estimator.
If True, will return the parameters for this estimator and contained subobjects that are estimators.
Parameter names mapped to their values.
Get a mask, or integer index, of the features selected.
If True, the return value will be an array of integers, rather than a boolean mask.
An index that selects the retained features from a feature vector. If indices is False, this is a boolean array of shape [# input features], in which an element is True iff its corresponding feature is selected for retention. If indices is True, this is an integer array of shape [# output features] whose values are indices into the input feature vector.
Reverse the transformation operation.
The input samples.
X with columns of zeros inserted where features would have been removed by transform.
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 this estimator.
The method works on simple estimators as well as on nested objects (such as Pipeline). The latter have parameters of the form <component>__<parameter> so that it’s possible to update each component of a nested object.
Estimator parameters.
Estimator instance.
Reduce X to the selected features.
The input samples.
The input samples with only the selected features.
© 2007–2025 The scikit-learn developers
Licensed under the 3-clause BSD License.
https://scikit-learn.org/1.6/modules/generated/sklearn.feature_selection.SequentialFeatureSelector.html