diff --git a/doc/whats_new/v1.1.rst b/doc/whats_new/v1.1.rst index 87a52595ce6c2..6a66ba4024c6c 100644 --- a/doc/whats_new/v1.1.rst +++ b/doc/whats_new/v1.1.rst @@ -24,6 +24,13 @@ Changelog - |Fix| Avoid timeouts in :func:`datasets.fetch_openml` by not passing a `timeout` argument, :pr:`23358` by `Loïc Estève `. +:mod:`sklearn.feature_selection` +................................ + +- |Fix| The `partial_fit` method of :class:`feature_selection.SelectFromModel` + now conducts validation for `max_features` and `feature_names_in` parameters. + :pr:`23299` by :user:`Long Bao `. + :mod:`sklearn.metrics` ...................... diff --git a/doc/whats_new/v1.2.rst b/doc/whats_new/v1.2.rst index 71a7532b250e0..4d33499fcadf4 100644 --- a/doc/whats_new/v1.2.rst +++ b/doc/whats_new/v1.2.rst @@ -64,13 +64,6 @@ Changelog - |Efficiency| Improve runtime performance of :class:`ensemble.IsolationForest` by avoiding data copies. :pr:`23252` by :user:`Zhehao Liu `. -:mod:`sklearn.feature_selection` -................................ - -- |Fix| The `partial_fit` method of :class:`feature_selection.SelectFromModel` - now conducts validation for `max_features` and `feature_names_in` parameters. - :pr:`23299` by :user:`Long Bao `. - :mod:`sklearn.metrics` ......................