8000 MNT fix section order of what's new v0.24 by lucyleeow · Pull Request #17437 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

MNT fix section order of what's new v0.24 #17437

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 2 commits into from
Jun 3, 2020
Merged
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
26 changes: 13 additions & 13 deletions doc/whats_new/v0.24.rst
C28B
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ Changelog
which allows monitoring of each stage.
:pr:`16985` by :user:`Hao Chun Chang <haochunchang>`.

:mod:`sklearn.feature_selection`
................................

- |Feature| A new parameter `importance_getter` was added to
:class:`feature_selection.RFE`, :class:`feature_selection.RFECV` and
:class:`feature_selection.SelectFromModel`, allowing the user to specify an
attribute name/path or a `callable` for extracting feature importance from
the estimator. :pr:`15361` by :user:`Venkatachalam N <venkyyuvy>`

:mod:`sklearn.impute`
.....................

Expand All @@ -69,6 +78,10 @@ Changelog
average of multiple MSE values.
:pr:`17309` by :user:`Swier Heeres <swierh>`

- |Enhancement| Add `sample_weight` parameter to
:class:`metrics.median_absolute_error`. :pr:`17225` by
:user:`Lucy Liu <lucyleeow>`.

:mod:`sklearn.model_selection`
..............................

Expand All @@ -78,19 +91,6 @@ Changelog
samples between the train and test set on each fold.
:pr:`13204` by :user:`Kyle Kosic <kykosic>`.

- |Feature| A new parameter `importance_getter` was added to
:class:`feature_selection.RFE`, :class:`feature_selection.RFECV` and
:class:`feature_selection.SelectFromModel`, allowing the user to specify an
attribute name/path or a `callable` for extracting feature importance from
the estimator. :pr:`15361` by :user:`Venkatachalam N <venkyyuvy>`

:mod:`sklearn.metrics`
......................

- |Enhancement| Add `sample_weight` parameter to
:class:`metrics.median_absolute_error`.
:pr:`17225` by :user:`Lucy Liu <lucyleeow>`.

:mod:`sklearn.preprocessing`
............................

Expand Down
0