Skip to content

Commit

Permalink
DOC Add sections to whats new 0.20.1 (#12183)
Browse files Browse the repository at this point in the history
  • Loading branch information
qinhanmin2014 authored and jnothman committed Oct 15, 2018
1 parent e2a7b31 commit 0444def
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions doc/whats_new/v0.20.rst
Expand Up @@ -12,21 +12,36 @@ Version 0.20.1
This is a bug-fix release with some minor documentation improvements and
enhancements to features released in 0.20.0.

Changelog
---------

:mod:`sklearn.cluster`
......................

- |Efficiency| make :class:`cluster.MeanShift` no longer try to do nested
parallelism as the overhead would hurt performance significantly when
``n_jobs > 1``.
:issue:`12159` by :user:`Olivier Grisel <ogrisel>`.

:mod:`sklearn.ensemble`
.......................

- |Fix| Fixed a bug mostly affecting :class:`ensemble.RandomForestClassifier`
where ``class_weight='balanced_subsample'`` failed with more than 32 classes.
:issue:`12165` by `Joel Nothman`_.

:mod:`sklearn.linear_model`
...........................

- |Fix| :func:`linear_model.SGDClassifier` and variants
with ``early_stopping=True`` would not use a consistent validation
split in the multiclass case and this would cause a crash when using
those estimators as part of parallel parameter search or cross-validation.
:issue:`12122` by :user:`Olivier Grisel <ogrisel>`.

:mod:`sklearn.neighbors`
........................

- |Fix| force the parallelism backend to :code:`threading` for
:class:`neighbors.KDTree` and :class:`neighbors.BallTree` in Python 2.7 to
avoid pickling errors caused by the serialization of their methods.
Expand Down

0 comments on commit 0444def

Please sign in to comment.