From c9e6abda24d99b9eb26078be29e57d02261abd21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20du=20Boisberranger?= <34657725+jeremiedbb@users.noreply.github.com> Date: Wed, 18 May 2022 17:06:09 +0200 Subject: [PATCH] move 23299 to 1.1.1: fixes regression (#23399) --- doc/whats_new/v1.1.rst | 7 +++++++ doc/whats_new/v1.2.rst | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) 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` ......................