8000 FEA Add metadata routing for RFE and RFECV by OmarManzoor · Pull Request #29312 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content
8000

FEA Add metadata routing for RFE and RFECV #29312

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/metadata_routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,8 @@ Meta-estimators and functions supporting metadata routing:
- :class:`sklearn.ensemble.VotingRegressor`
- :class:`sklearn.ensemble.BaggingClassifier`
- :class:`sklearn.ensemble.BaggingRegressor`
- :class:`sklearn.feature_selection.RFE`
- :class:`sklearn.feature_selection.RFECV`
- :class:`sklearn.feature_selection.SelectFromModel`
- :class:`sklearn.feature_selection.SequentialFeatureSelector`
- :class:`sklearn.impute.IterativeImputer`
Expand Down Expand Up @@ -323,5 +325,3 @@ Meta-estimators and tools not supporting metadata routing yet:

- :class:`sklearn.ensemble.AdaBoostClassifier`
- :class:`sklearn.ensemble.AdaBoostRegressor`
- :class:`sklearn.feature_selection.RFE`
- :class:`sklearn.feature_selection.RFECV`
4 changes: 4 additions & 0 deletions doc/whats_new/v1.6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ more details.
for the `fit` method of its estimator and for its underlying CV splitter and scorer.
:pr:`29266` by :user:`Adam Li <adam2392>`.

- |Feature| :class:`feature_selection.RFE` and :class:`feature_selection.RFECV`
now support metadata routing.
:pr:`29312` by :user:`Omar Salman <OmarManzoor>`.

Dropping support for building with setuptools
---------------------------------------------

Expand Down
Loading
Loading
0