Skip to content

RFE

Module with tools to perform feature selection.

This module contains the following classes:

  • FeliminationRFECV: base class for feature selection.
  • PermutationImportanceRFECV: recursive feature elimination with cross-validation based on permutation importance.

FeliminationRFECV(estimator, *, step=1, min_features_to_select=1, cv=None, scoring=None, random_state=None, verbose=0, n_jobs=None, importance_getter='auto', callbacks=None, best_iteration_selection_criteria='mean_test_score')

Bases: RFECV

Perform recursive feature elimination with cross-validation following scikit-learn standards.

It has the following differences with RFECV from scikit-learn:

  • It supports an importance_getter function that also uses a validation set to compute the feature importances. This allows to use importance measures like permutation importance or shap.
  • Instead of using Cross Validation to select the number of features, it uses cross validation to get a more accurate estimate of the feature importances. This means that the number of features to select has to be set during initialization, similarly to RFE.
  • When step is a float value it is removes a percentage of the number of remaining features, not total like in RFE/RFECV. This allows to drop big chunks of feature at the beginning of the RFE process and to slow down towards the end of the process.
  • Has a plotting function
  • Adds information about the number of features selected at each step in the attribute cv_results_
  • Allows to change the number of features to be selected after fitting.

Rater than that, it is a copy-paste of RFE, so credit goes to scikit-learn.

The algorithm of feature selection goes as follows:

while n_features > min_features_to_select:
    - The estimator is trained on the selected features and the score is
      computed using cross validation.
    - feature importance is computed for each validation fold on the validation
      set and then averaged.
    - The least important features are pruned.
    - The pruned features are removed from the dataset.

Parameters:

  • estimator (``Estimator`` instance) –

    A supervised learning estimator with a fit method.

  • step (int or float, default: 1 ) –

    If greater than or equal to 1, then step corresponds to the (integer) number of features to remove at each iteration. If within (0.0, 1.0), then step corresponds to the percentage (rounded down) of remaining features to remove at each iteration. Note that the last iteration may remove fewer than step features in order to reach min_features_to_select.

  • min_features_to_select (int or float, default: None ) –

    The number of features to select. If None, half of the features are selected. If integer, the parameter is the absolute number of features to select. If float between 0 and 1, it is the fraction of the features to select.

  • cv (int, cross-validation generator or an iterable, default: None ) –

    Determines the cross-validation splitting strategy. Possible inputs for cv are:

    - None, to use the default 5-fold cross-validation,
    - integer, to specify the number of folds.
    - :term:`CV splitter`,
    - An iterable yielding (train, test) splits as arrays of indices.
    

    For integer/None inputs, if y is binary or multiclass, ~sklearn.model_selection.StratifiedKFold is used. If the estimator is a classifier or if y is neither binary nor multiclass, ~sklearn.model_selection.KFold is used.

    Refer :ref:User Guide <cross_validation> for the various cross-validation strategies that can be used here.

  • scoring ((str, callable or None), default: None ) –

    A string (see model evaluation documentation) or a scorer callable object / function with signature scorer(estimator, X, y).

  • verbose (int, default: 0 ) –

    Controls verbosity of output.

  • n_jobs (int or None, default: None ) –

    Number of cores to run in parallel while fitting across folds. None means 1 unless in a :obj:joblib.parallel_backend context. -1 means using all processors.

  • importance_getter (str or callable, default: 'auto' ) –

    If 'auto', uses the feature importance either through a coef_ or feature_importances_ attributes of estimator.

    Also accepts a string that specifies an attribute name/path for extracting feature importance. For example, give regressor_.coef_ in case of ~sklearn.compose.TransformedTargetRegressor or named_steps.clf.feature_importances_ in case of ~sklearn.pipeline.Pipeline with its last step named clf.

    If callable, overrides the default feature importance getter. The callable is passed with the fitted estimator and the validation set (X_val, y_val, estimator) and it should return importance for each feature.

  • callbacks (list of callable, default: None ) –

    List of callables to be called at the end of each step of the feature selection. Each callable should accept two parameters: the selector and the importances computed at that step. See an example of callbacks in the callbacks module.

  • best_iteration_selection_criteria (str or callable, default: 'mean_test_score' ) –

    The criteria to select the best number of features. If a string, it should be one of the keys in the cv_results_ attribute. If a callable, it should accept the cv_results_ dictionary and return the best number of features. Best number of features must be one of the values in the cv_results_["n_features"] array. See select_best_by_mean_test_score_and_overfit for an example of a custom criteria.

Attributes:

  • classes_ (ndarray of shape (n_classes,)) –

    The classes labels. Only available when estimator is a classifier.

  • estimator_ (``Estimator`` instance) –

    The fitted estimator used to select features.

  • cv_results_ (dict of ndarrays) –

    A dict with keys: n_features : ndarray of shape (n_subsets_of_features,) The number of features used at that step. split(k)_test_score : ndarray of shape (n_subsets_of_features,) The cross-validation scores across (k)th fold. mean_test_score : ndarray of shape (n_subsets_of_features,) Mean of scores over the folds. std_test_score : ndarray of shape (n_subsets_of_features,) Standard deviation of scores over the folds. split(k)_train_score : ndarray of shape (n_subsets_of_features,) The cross-validation scores across (k)th fold. mean_train_score : ndarray of shape (n_subsets_of_features,) Mean of scores over the folds. std_train_score : ndarray of shape (n_subsets_of_features,) Standard deviation of scores over the folds.

  • n_features_ (int) –

    The number of selected features.

  • n_features_in_ (int) –

    Number of features seen during :term:fit. Only defined if the underlying estimator exposes such an attribute when fit.

  • feature_names_in_ (ndarray of shape (`n_features_in_`,)) –

    Names of features seen during :term:fit. Defined only when X has feature names that are all strings.

  • ranking_ (ndarray of shape (n_features,)) –

    The feature ranking, such that ranking_[i] corresponds to the ranking position of the i-th feature. Selected (i.e., estimated best) features are assigned rank 1.

  • support_ (ndarray of shape (n_features,)) –

    The mask of selected features.

Examples:

The following example shows how to retrieve the 5 most informative features in the Friedman #1 dataset.

>>> from felimination.rfe import FeliminationRFECV
>>> from felimination.importance import PermutationImportance
>>> from sklearn.datasets import make_friedman1
>>> from sklearn.svm import SVR
>>> X, y = make_friedman1(n_samples=50, n_features=10, random_state=0)
>>> estimator = SVR(kernel="linear")
>>> selector = selector = FeliminationRFECV(
    estimator,
    step=1,
    cv=5,
    min_features_to_select=5,
    importance_getter=PermutationImportance()
)
>>> selector = selector.fit(X, y)
>>> selector.support_
array([ True,  True,  True,  True,  True, False, False, False, False,
       False])
>>> selector.ranking_
array([1, 1, 1, 1, 1, 6, 3, 4, 2, 5])
Source code in felimination/rfe.py
def __init__(
    self,
    estimator,
    *,
    step=1,
    min_features_to_select=1,
    cv=None,
    scoring=None,
    random_state=None,
    verbose=0,
    n_jobs=None,
    importance_getter="auto",
    callbacks=None,
    best_iteration_selection_criteria="mean_test_score",
) -> None:
    self.random_state = random_state
    self.callbacks = callbacks
    self.best_iteration_selection_criteria = best_iteration_selection_criteria
    super().__init__(
        estimator,
        min_features_to_select=min_features_to_select,
        cv=cv,
        scoring=scoring,
        n_jobs=n_jobs,
        step=step,
        verbose=verbose,
        importance_getter=importance_getter,
    )

fit(X, y, groups=None, **fit_params)

Fit the RFE model and then the underlying estimator on the selected features.

Parameters:

  • X (array-like, sparse matrix, default: array-like ) –

    The training input samples.

  • y (array-like of shape (n_samples,)) –

    The target values.

  • **fit_params (dict, default: {} ) –

    Additional parameters passed to the fit method of the underlying estimator.

Returns:

  • self ( object ) –

    Fitted estimator.

Source code in felimination/rfe.py
def fit(self, X, y, groups=None, **fit_params):
    """Fit the RFE model and then the underlying estimator on the selected features.

    Parameters
    ----------
    X : {array-like, sparse matrix} of shape (n_samples, n_features)
        The training input samples.
    y : array-like of shape (n_samples,)
        The target values.
    **fit_params : dict
        Additional parameters passed to the `fit` method of the underlying
        estimator.

    Returns
    -------
    self : object
        Fitted estimator.
    """
    if _routing_enabled():
        routed_params = process_routing(self, "fit", **fit_params)
    else:
        routed_params = Bunch(estimator=Bunch(fit=fit_params))

    return self._fit(X, y, groups, **routed_params.estimator.fit)

plot(**kwargs)

Plot a feature selection plot with number of features

Parameters:

  • **kwargs (dict, default: {} ) –

    Additional parameters passed to seaborn.lineplot. For a list of possible options, please visit seaborn.lineplot # noqa

Returns:

  • Axes

    The axis where the plot has been plotted.

Source code in felimination/rfe.py
def plot(self, **kwargs):
    """Plot a feature selection plot with number of features

    Parameters
    ----------
    **kwargs : dict
        Additional parameters passed to seaborn.lineplot. For a list
        of possible options, please visit
        [seaborn.lineplot](https://seaborn.pydata.org/generated/seaborn.lineplot.html)  # noqa

    Returns
    -------
    matplotlib.axes.Axes
        The axis where the plot has been plotted.
    """
    check_is_fitted(self)
    best_n_of_features = self.select_best_iteration(self.cv_results_)
    best_index = self.cv_results_["n_features"].index(best_n_of_features)
    best_train_score = self.cv_results_["mean_train_score"][best_index]
    best_test_score = self.cv_results_["mean_test_score"][best_index]
    df = pd.DataFrame(self.cv_results_)
    split_score_cols = [col for col in df if "split" in col]
    df_long_form = df[split_score_cols + ["n_features"]].melt(
        id_vars=["n_features"],
        value_vars=split_score_cols,
        var_name="split",
        value_name="score",
    )
    df_long_form["set"] = np.where(
        df_long_form["split"].str.contains("train"), "train", "validation"
    )
    lineplot_kwargs = dict(
        x="n_features",
        y="score",
        hue="set",
        markers=True,
        style="set",
        hue_order=["validation", "train"],
        style_order=["validation", "train"],
        seed=self.random_state,
        zorder=0,
    )
    lineplot_kwargs.update(**kwargs)
    ax = sns.lineplot(data=df_long_form, **lineplot_kwargs)
    ax.set_xticks(df.n_features)
    ax.plot(
        best_n_of_features,
        best_test_score,
        color="red",
        label=f"Best Iteration",
        zorder=1,
        marker="*",
        markersize=10,
        markeredgewidth=2,
        markeredgecolor="red",
        fillstyle="none",
    )
    ax.legend()
    ax.set_title(
        "\n".join(
            (
                "RFECV Plot",
                f"Best Number of Features: {best_n_of_features}",
                f"Best Test Score: {best_test_score:.3f}",
                f"Best Train Score: {best_train_score:.3f}",
            )
        )
    )
    return ax

select_best_iteration(cv_results)

Selects the best number of features based on the cv_results.

Parameters:

  • cv_results (dict) –

    Dictionary with the results of the cross-validation. It should have the following keys: - "mean_test_score": Mean of scores over the folds. - "n_features": The number of features used at that step.

Returns:

  • int

    The number of features that maximizes the mean test score.

Source code in felimination/rfe.py
def select_best_iteration(self, cv_results):
    """Selects the best number of features based on the cv_results.

    Parameters
    ----------
    cv_results : dict
        Dictionary with the results of the cross-validation. It should have
        the following keys:
        - "mean_test_score": Mean of scores over the folds.
        - "n_features": The number of features used at that step.

    Returns
    -------
    int
        The number of features that maximizes the mean test score.
    """
    if callable(self.best_iteration_selection_criteria):
        return self.best_iteration_selection_criteria(cv_results)
    else:
        return cv_results["n_features"][
            np.argmax(cv_results[self.best_iteration_selection_criteria])
        ]

set_n_features_to_select(min_features_to_select)

Changes the number of features to select after fitting.

The underlying estimator will not be retrained. So this method will not alter the behavior of predict/predict_proba but it will change the behavior of transform and get_feature_names_out.

Parameters:

  • min_features_to_select (int) –

    The number of features to select. Must be a value among cv_results_["n_features"]

Returns:

  • self ( object ) –

    Fitted estimator.

Raises:

  • ValueError

    When the number of features to select has not been tried during the feature selection procedure.

Source code in felimination/rfe.py
def set_n_features_to_select(self, min_features_to_select):
    """Changes the number of features to select after fitting.

    The underlying estimator **will not be retrained**. So this method will not
    alter the behavior of predict/predict_proba but it will change the behavior
    of transform and get_feature_names_out.

    Parameters
    ----------
    min_features_to_select : int
        The number of features to select. Must be a value among
        `cv_results_["n_features"]`

    Returns
    -------
    self : object
        Fitted estimator.

    Raises
    ------
    ValueError
        When the number of features to select has not been tried during the
        feature selection procedure.
    """
    check_is_fitted(self)
    if min_features_to_select not in self.cv_results_["n_features"]:
        raise ValueError(
            f"This selector has not been fitted up with {min_features_to_select}, "
            f"please select a value in {set(self.cv_results_['n_features'])} or "
            "refit the selector changing the step parameter of the min_features_to_select"
        )
    support_ = np.zeros_like(self.support_, dtype=bool)
    support_[np.argsort(self.ranking_)[:min_features_to_select]] = True
    self.support_ = support_
    return self

PermutationImportanceRFECV(estimator, *, step=1, min_features_to_select=1, cv=None, scoring=None, verbose=0, n_jobs=None, n_repeats=5, random_state=None, sample_weight=None, max_samples=1.0, callbacks=None, best_iteration_selection_criteria='mean_test_score')

Bases: FeliminationRFECV

Preset of FeliminationRFECV using permutation importance as importance getter.

It has the following differences with RFECV from scikit-learn:

  • It supports an importance_getter function that also uses a validation set to compute the feature importances. This allows to use importance measures like permutation importance or shap.
  • Instead of using Cross Validation to select the number of features, it uses cross validation to get a more accurate estimate of the feature importances. This means that the number of features to select has to be set during initialization, similarly to RFE.
  • When step is a float value it is removes a percentage of the number of remaining features, not total like in RFE/RFECV. This allows to drop big chunks of feature at the beginning of the RFE process and to slow down towards the end of the process.
  • Has a plotting function
  • Adds information about the number of features selected at each step in the attribute cv_results_
  • Allows to change the number of features to be selected after fitting.

Rater than that, it is a copy-paste of RFE, so credit goes to scikit-learn.

The algorithm of feature selection goes as follows:

while n_features > min_features_to_select:
    - The estimator is trained on the selected features and the score is
      computed using cross validation.
    - feature importance is computed for each validation fold on the validation
      set and then averaged.
    - The least important features are pruned.
    - The pruned features are removed from the dataset.

Parameters:

  • estimator (``Estimator`` instance) –

    A supervised learning estimator with a fit method.

  • step (int or float, default: 1 ) –

    If greater than or equal to 1, then step corresponds to the (integer) number of features to remove at each iteration. If within (0.0, 1.0), then step corresponds to the percentage (rounded down) of remaining features to remove at each iteration. Note that the last iteration may remove fewer than step features in order to reach min_features_to_select.

  • min_features_to_select (int or float, default: None ) –

    The number of features to select. If None, half of the features are selected. If integer, the parameter is the absolute number of features to select. If float between 0 and 1, it is the fraction of the features to select.

  • cv (int, cross-validation generator or an iterable, default: None ) –

    Determines the cross-validation splitting strategy. Possible inputs for cv are:

    • None, to use the default 5-fold cross-validation,
    • integer, to specify the number of folds.
    • :term:CV splitter,
    • An iterable yielding (train, test) splits as arrays of indices.

    For integer/None inputs, if y is binary or multiclass, ~sklearn.model_selection.StratifiedKFold is used. If the estimator is a classifier or if y is neither binary nor multiclass, ~sklearn.model_selection.KFold is used.

    Refer :ref:User Guide <cross_validation> for the various cross-validation strategies that can be used here.

  • scoring ((str, callable or None), default: None ) –

    A string (see model evaluation documentation) or a scorer callable object / function with signature scorer(estimator, X, y).

  • verbose (int, default: 0 ) –

    Controls verbosity of output.

  • n_jobs (int or None, default: None ) –

    Number of cores to run in parallel while fitting across folds. None means 1 unless in a :obj:joblib.parallel_backend context. -1 means using all processors.

  • n_repeats (int, default: 5 ) –

    Number of times to permute a feature.

  • random_state (int, RandomState instance, default: None ) –

    Pseudo-random number generator to control the permutations of each feature. Pass an int to get reproducible results across function calls.

  • sample_weight (array-like of shape (n_samples,), default: None ) –

    Sample weights used in scoring.

  • max_samples (int or float, default: 1.0 ) –

    The number of samples to draw from X to compute feature importance in each repeat (without replacement). - If int, then draw max_samples samples. - If float, then draw max_samples * X.shape[0] samples. - If max_samples is equal to 1.0 or X.shape[0], all samples will be used. While using this option may provide less accurate importance estimates, it keeps the method tractable when evaluating feature importance on large datasets. In combination with n_repeats, this allows to control the computational speed vs statistical accuracy trade-off of this method.

  • callbacks (list of callable, default: None ) –

    List of callables to be called at the end of each step of the feature selection. Each callable should accept two parameters: the selector and the importances computed at that step. See an example of callbacks in the callbacks module.

  • best_iteration_selection_criteria (str or callable, default: 'mean_test_score' ) –

    The criteria to select the best number of features. If a string, it should be one of the keys in the cv_results_ attribute. If a callable, it should accept the cv_results_ dictionary and return the best number of features. Best number of features must be one of the values in the cv_results_["n_features"] array. See select_best_by_mean_test_score_and_overfit for an example of a custom criteria.

Attributes:

  • classes_ (ndarray of shape (n_classes,)) –

    The classes labels. Only available when estimator is a classifier.

  • estimator_ (``Estimator`` instance) –

    The fitted estimator used to select features.

  • cv_results_ (dict of ndarrays) –

    A dict with keys: n_features : ndarray of shape (n_subsets_of_features,) The number of features used at that step. split(k)_test_score : ndarray of shape (n_subsets_of_features,) The cross-validation scores across (k)th fold. mean_test_score : ndarray of shape (n_subsets_of_features,) Mean of scores over the folds. std_test_score : ndarray of shape (n_subsets_of_features,) Standard deviation of scores over the folds. split(k)_train_score : ndarray of shape (n_subsets_of_features,) The cross-validation scores across (k)th fold. mean_train_score : ndarray of shape (n_subsets_of_features,) Mean of scores over the folds. std_train_score : ndarray of shape (n_subsets_of_features,) Standard deviation of scores over the folds.

  • n_features_ (int) –

    The number of selected features.

  • n_features_in_ (int) –

    Number of features seen during :term:fit. Only defined if the underlying estimator exposes such an attribute when fit.

  • feature_names_in_ (ndarray of shape (`n_features_in_`,)) –

    Names of features seen during :term:fit. Defined only when X has feature names that are all strings.

  • ranking_ (ndarray of shape (n_features,)) –

    The feature ranking, such that ranking_[i] corresponds to the ranking position of the i-th feature. Selected (i.e., estimated best) features are assigned rank 1.

  • support_ (ndarray of shape (n_features,)) –

    The mask of selected features.

Examples:

The following example shows how to retrieve the 5 most informative features in the Friedman #1 dataset.

>>> from felimination.rfe import PermutationImportanceRFECV
>>> from sklearn.datasets import make_friedman1
>>> from sklearn.svm import SVR
>>> X, y = make_friedman1(n_samples=50, n_features=10, random_state=0)
>>> estimator = SVR(kernel="linear")
>>> selector = selector = PermutationImportanceRFECV(
        estimator,
        step=1,
        cv=5,
        min_features_to_select=5,
    )
>>> selector = selector.fit(X, y)
>>> selector.support_
array([ True,  True,  True,  True,  True, False, False, False, False,
       False])
>>> selector.ranking_
array([1, 1, 1, 1, 1, 6, 3, 4, 2, 5])
Source code in felimination/rfe.py
def __init__(
    self,
    estimator: BaseEstimator | LogisticRegression,
    *,
    step=1,
    min_features_to_select=1,
    cv=None,
    scoring=None,
    verbose=0,
    n_jobs=None,
    n_repeats=5,
    random_state=None,
    sample_weight=None,
    max_samples=1.0,
    callbacks=None,
    best_iteration_selection_criteria="mean_test_score",
) -> None:
    self.n_repeats = n_repeats
    self.sample_weight = sample_weight
    self.max_samples = max_samples
    super().__init__(
        estimator,
        step=step,
        min_features_to_select=min_features_to_select,
        cv=cv,
        random_state=random_state,
        scoring=scoring,
        verbose=verbose,
        n_jobs=n_jobs,
        callbacks=callbacks,
        importance_getter=PermutationImportance(
            scoring=scoring,
            n_repeats=n_repeats,
            # Better not to do double parallelization
            n_jobs=1,
            random_state=random_state,
            sample_weight=sample_weight,
            max_samples=max_samples,
        ),
        best_iteration_selection_criteria=best_iteration_selection_criteria,
    )

fit(X, y, groups=None, **fit_params)

Fit the RFE model and then the underlying estimator on the selected features.

Parameters:

  • X (array-like, sparse matrix, default: array-like ) –

    The training input samples.

  • y (array-like of shape (n_samples,)) –

    The target values.

  • **fit_params (dict, default: {} ) –

    Additional parameters passed to the fit method of the underlying estimator.

Returns:

  • self ( object ) –

    Fitted estimator.

Source code in felimination/rfe.py
def fit(self, X, y, groups=None, **fit_params):
    """Fit the RFE model and then the underlying estimator on the selected features.

    Parameters
    ----------
    X : {array-like, sparse matrix} of shape (n_samples, n_features)
        The training input samples.
    y : array-like of shape (n_samples,)
        The target values.
    **fit_params : dict
        Additional parameters passed to the `fit` method of the underlying
        estimator.

    Returns
    -------
    self : object
        Fitted estimator.
    """
    if _routing_enabled():
        routed_params = process_routing(self, "fit", **fit_params)
    else:
        routed_params = Bunch(estimator=Bunch(fit=fit_params))

    return self._fit(X, y, groups, **routed_params.estimator.fit)

plot(**kwargs)

Plot a feature selection plot with number of features

Parameters:

  • **kwargs (dict, default: {} ) –

    Additional parameters passed to seaborn.lineplot. For a list of possible options, please visit seaborn.lineplot # noqa

Returns:

  • Axes

    The axis where the plot has been plotted.

Source code in felimination/rfe.py
def plot(self, **kwargs):
    """Plot a feature selection plot with number of features

    Parameters
    ----------
    **kwargs : dict
        Additional parameters passed to seaborn.lineplot. For a list
        of possible options, please visit
        [seaborn.lineplot](https://seaborn.pydata.org/generated/seaborn.lineplot.html)  # noqa

    Returns
    -------
    matplotlib.axes.Axes
        The axis where the plot has been plotted.
    """
    check_is_fitted(self)
    best_n_of_features = self.select_best_iteration(self.cv_results_)
    best_index = self.cv_results_["n_features"].index(best_n_of_features)
    best_train_score = self.cv_results_["mean_train_score"][best_index]
    best_test_score = self.cv_results_["mean_test_score"][best_index]
    df = pd.DataFrame(self.cv_results_)
    split_score_cols = [col for col in df if "split" in col]
    df_long_form = df[split_score_cols + ["n_features"]].melt(
        id_vars=["n_features"],
        value_vars=split_score_cols,
        var_name="split",
        value_name="score",
    )
    df_long_form["set"] = np.where(
        df_long_form["split"].str.contains("train"), "train", "validation"
    )
    lineplot_kwargs = dict(
        x="n_features",
        y="score",
        hue="set",
        markers=True,
        style="set",
        hue_order=["validation", "train"],
        style_order=["validation", "train"],
        seed=self.random_state,
        zorder=0,
    )
    lineplot_kwargs.update(**kwargs)
    ax = sns.lineplot(data=df_long_form, **lineplot_kwargs)
    ax.set_xticks(df.n_features)
    ax.plot(
        best_n_of_features,
        best_test_score,
        color="red",
        label=f"Best Iteration",
        zorder=1,
        marker="*",
        markersize=10,
        markeredgewidth=2,
        markeredgecolor="red",
        fillstyle="none",
    )
    ax.legend()
    ax.set_title(
        "\n".join(
            (
                "RFECV Plot",
                f"Best Number of Features: {best_n_of_features}",
                f"Best Test Score: {best_test_score:.3f}",
                f"Best Train Score: {best_train_score:.3f}",
            )
        )
    )
    return ax

select_best_iteration(cv_results)

Selects the best number of features based on the cv_results.

Parameters:

  • cv_results (dict) –

    Dictionary with the results of the cross-validation. It should have the following keys: - "mean_test_score": Mean of scores over the folds. - "n_features": The number of features used at that step.

Returns:

  • int

    The number of features that maximizes the mean test score.

Source code in felimination/rfe.py
def select_best_iteration(self, cv_results):
    """Selects the best number of features based on the cv_results.

    Parameters
    ----------
    cv_results : dict
        Dictionary with the results of the cross-validation. It should have
        the following keys:
        - "mean_test_score": Mean of scores over the folds.
        - "n_features": The number of features used at that step.

    Returns
    -------
    int
        The number of features that maximizes the mean test score.
    """
    if callable(self.best_iteration_selection_criteria):
        return self.best_iteration_selection_criteria(cv_results)
    else:
        return cv_results["n_features"][
            np.argmax(cv_results[self.best_iteration_selection_criteria])
        ]

set_n_features_to_select(min_features_to_select)

Changes the number of features to select after fitting.

The underlying estimator will not be retrained. So this method will not alter the behavior of predict/predict_proba but it will change the behavior of transform and get_feature_names_out.

Parameters:

  • min_features_to_select (int) –

    The number of features to select. Must be a value among cv_results_["n_features"]

Returns:

  • self ( object ) –

    Fitted estimator.

Raises:

  • ValueError

    When the number of features to select has not been tried during the feature selection procedure.

Source code in felimination/rfe.py
def set_n_features_to_select(self, min_features_to_select):
    """Changes the number of features to select after fitting.

    The underlying estimator **will not be retrained**. So this method will not
    alter the behavior of predict/predict_proba but it will change the behavior
    of transform and get_feature_names_out.

    Parameters
    ----------
    min_features_to_select : int
        The number of features to select. Must be a value among
        `cv_results_["n_features"]`

    Returns
    -------
    self : object
        Fitted estimator.

    Raises
    ------
    ValueError
        When the number of features to select has not been tried during the
        feature selection procedure.
    """
    check_is_fitted(self)
    if min_features_to_select not in self.cv_results_["n_features"]:
        raise ValueError(
            f"This selector has not been fitted up with {min_features_to_select}, "
            f"please select a value in {set(self.cv_results_['n_features'])} or "
            "refit the selector changing the step parameter of the min_features_to_select"
        )
    support_ = np.zeros_like(self.support_, dtype=bool)
    support_[np.argsort(self.ranking_)[:min_features_to_select]] = True
    self.support_ = support_
    return self

select_best_by_mean_test_score_and_overfit(cv_results)

Selects the best number of features based on the cv_results.

It selects the number of features that maximizes the mean test score and minimizes the overfit.

Parameters:

  • cv_results (dict) –

    Dictionary with the results of the cross-validation. It should have the following keys: - "mean_test_score": Mean of scores over the folds. - "n_features": The number of features used at that step.

Returns:

  • int

    The number of features that maximizes the mean test score.

Source code in felimination/rfe.py
def select_best_by_mean_test_score_and_overfit(cv_results):
    """Selects the best number of features based on the cv_results.

    It selects the number of features that maximizes the mean test score and minimizes the overfit.

    Parameters
    ----------
    cv_results : dict
        Dictionary with the results of the cross-validation. It should have
        the following keys:
        - "mean_test_score": Mean of scores over the folds.
        - "n_features": The number of features used at that step.

    Returns
    -------
    int
        The number of features that maximizes the mean test score.
    """
    cv_df = pd.DataFrame(cv_results)
    cv_df["rank_mean_test_score"] = cv_df["mean_test_score"].rank(ascending=False)
    cv_df["overfit"] = cv_df["mean_train_score"] - cv_df["mean_test_score"]
    cv_df["rank_overfit"] = cv_df["overfit"].rank(ascending=True)
    cv_df["rank_sum"] = cv_df["rank_mean_test_score"] + cv_df["rank_overfit"]
    return cv_df.sort_values(["rank_sum", "mean_test_score"], ascending=[True, False])[
        "n_features"
    ].iloc[0]