|
| 1 | +.. include:: _contributors.rst |
| 2 | + |
| 3 | +.. currentmodule:: sklearn |
| 4 | + |
| 5 | +.. _changes_1_1: |
| 6 | + |
| 7 | +Version 1.1.0 |
| 8 | +============= |
| 9 | + |
| 10 | +**In Development** |
| 11 | + |
| 12 | + |
| 13 | +.. include:: changelog_legend.inc |
| 14 | + |
| 15 | +Minimal dependencies |
| 16 | +-------------------- |
| 17 | + |
| 18 | +Version 1.1.0 of scikit-learn requires python 3.7+, numpy 1.14.6+ and |
| 19 | +scipy 1.1.0+. Optional minimal dependency is matplotlib 2.2.2+. |
| 20 | + |
| 21 | +Put the changes in their relevant module. |
| 22 | + |
| 23 | +Changed models |
| 24 | +-------------- |
| 25 | + |
| 26 | + |
| 27 | +Changelog |
| 28 | +--------- |
| 29 | + |
| 30 | +.. |
| 31 | + Entries should be grouped by module (in alphabetic order) and prefixed with |
| 32 | + one of the labels: |MajorFeature|, |Feature|, |Efficiency|, |Enhancement|, |
| 33 | + |Fix| or |API| (see whats_new.rst for descriptions). |
| 34 | + Entries should be ordered by those labels (e.g. |Fix| after |Efficiency|). |
| 35 | + Changes not specific to a module should be listed under *Multiple Modules* |
| 36 | + or *Miscellaneous*. |
| 37 | + Entries should end with: |
| 38 | + :pr:`123456` by :user:`Joe Bloggs <joeongithub>`. |
| 39 | + where 123456 is the *pull request* number, not the issue number. |
| 40 | +
|
| 41 | +:mod:`sklearn.linear_model` |
| 42 | +........................... |
| 43 | + |
| 44 | +- |Fix| :class:`linear_model.LogisticRegression` now raises a better error |
| 45 | + message when the solver does not support sparse matrices with int64 indices. |
| 46 | + :pr:`21093` by `Tom Dupre la Tour`_. |
| 47 | + |
| 48 | +:mod:`sklearn.utils` |
| 49 | +.................... |
| 50 | + |
| 51 | +- |Enhancement| :func:`utils.validation._check_sample_weight` can perform a |
| 52 | + non-negativity check on the sample weights. It can be turned on |
| 53 | + using the only_non_negative bool parameter. |
| 54 | + Estimators that check for non-negative weights are updated: |
| 55 | + :func:`linear_model.LinearRegression` (here the previous |
| 56 | + error message was misleading), |
| 57 | + :func:`ensemble.AdaBoostClassifier`, |
| 58 | + :func:`ensemble.AdaBoostRegressor`, |
| 59 | + :func:`neighbors.KernelDensity`. |
| 60 | + :pr:`20880` by :user:`Guillaume Lemaitre <glemaitre>` |
| 61 | + and :user:`András Simon <simonandras>`. |
| 62 | + |
| 63 | +:mod:`sklearn.pipeline` |
| 64 | +....................... |
| 65 | + |
| 66 | +- |Enhancement| Added support for "passthrough" in :class:`FeatureUnion`. |
| 67 | + Setting a transformer to "passthrough" will pass the features unchanged. |
| 68 | + :pr:`20860` by :user:`Shubhraneel Pal <shubhraneel>`. |
| 69 | + |
| 70 | +Code and Documentation Contributors |
| 71 | +----------------------------------- |
| 72 | + |
| 73 | +Thanks to everyone who has contributed to the maintenance and improvement of |
| 74 | +the project since version 1.0, including: |
| 75 | + |
| 76 | +TODO: update at the time of the release. |
0 commit comments