|
2 | 2 |
|
3 | 3 | .. currentmodule:: sklearn |
4 | 4 |
|
| 5 | + .. _changes_0_20_4: |
| 6 | + |
| 7 | +Version 0.20.4 |
| 8 | +============== |
| 9 | + |
| 10 | +**July 30, 2019** |
| 11 | + |
| 12 | +This is a bug-fix release with some bug fixes applied to version 0.20.3. |
| 13 | + |
| 14 | +Changelog |
| 15 | +--------- |
| 16 | + |
| 17 | +The bundled version of joblib was upgraded from 0.13.0 to 0.13.2. |
| 18 | + |
| 19 | +:mod:`sklearn.cluster` |
| 20 | +.............................. |
| 21 | + |
| 22 | +- |Fix| Fixed a bug in :class:`cluster.KMeans` where KMeans++ initialisation |
| 23 | + could rarely result in an IndexError. :issue:`11756` by `Joel Nothman`_. |
| 24 | + |
| 25 | +:mod:`sklearn.compose` |
| 26 | +..................... |
| 27 | + |
| 28 | +- |Fix| Fixed an issue in :class:`compose.ColumnTransformer` where using |
| 29 | + DataFrames whose column order differs between :func:``fit`` and |
| 30 | + :func:``transform`` could lead to silently passing incorrect columns to the |
| 31 | + ``remainder`` transformer. |
| 32 | + :pr:`14237` by `Andreas Schuderer <schuderer>`. |
| 33 | + |
| 34 | +:mod:`sklearn.model_selection` |
| 35 | +.............................. |
| 36 | + |
| 37 | +- |Fix| Fixed a bug where :class:`model_selection.StratifiedKFold` |
| 38 | + shuffles each class's samples with the same ``random_state``, |
| 39 | + making ``shuffle=True`` ineffective. |
| 40 | + :issue:`13124` by :user:`Hanmin Qin <qinhanmin2014>`. |
| 41 | + |
| 42 | +:mod:`sklearn.neighbors` |
| 43 | +...................... |
| 44 | + |
| 45 | +- |Fix| Fixed a bug in :class:`neighbors.KernelDensity` which could not be |
| 46 | + restored from a pickle if ``sample_weight`` had been used. |
| 47 | + :issue:`13772` by :user:`Aditya Vyas <aditya1702>`. |
| 48 | + |
5 | 49 | .. _changes_0_20_3: |
6 | 50 |
|
7 | 51 | Version 0.20.3 |
@@ -30,7 +74,7 @@ Changelog |
30 | 74 | :issue:`12946` by :user:`Pierre Tallotte <pierretallotte>`. |
31 | 75 |
|
32 | 76 | :mod:`sklearn.covariance` |
33 | | -...................... |
| 77 | +......................... |
34 | 78 |
|
35 | 79 | - |Fix| Fixed a regression in :func:`covariance.graphical_lasso` so that |
36 | 80 | the case `n_features=2` is handled correctly. :issue:`13276` by |
|
0 commit comments