@@ -29,8 +29,8 @@ Changelog
29
29
:mod: `sklearn.cluster `
30
30
......................
31
31
32
- - |Fix | Fixed a bug in :class: `cluster.KMeans ` where computation was single
33
- threaded when `n_jobs > 1 ` or `n_jobs = -1 `.
32
+ - |Fix | Fixed a bug in :class: `cluster.KMeans ` where computation with
33
+ ` init='random' ` was single threaded for `n_jobs > 1 ` or `n_jobs = -1 `.
34
34
:pr: `12955 ` by :user: `Prabakaran Kumaresshan <nixphix> `.
35
35
36
36
- |Fix | Fixed a bug in :class: `cluster.OPTICS ` where users were unable to pass
@@ -54,11 +54,18 @@ Changelog
54
54
:func: `datasets.fetch_covtype `,
55
55
:func: `datasets.fetch_kddcup99 `, :func: `datasets.fetch_olivetti_faces `,
56
56
:func: `datasets.fetch_rcv1 `, and :func: `datasets.fetch_species_distributions `
57
- try to persist the previously cache using the new ``joblib `` if the cahced
57
+ try to persist the previously cache using the new ``joblib `` if the cached
58
58
data was persisted using the deprecated ``sklearn.externals.joblib ``. This
59
59
behavior is set to be deprecated and removed in v0.23.
60
60
:pr: `14197 ` by `Adrin Jalali `_.
61
61
62
+ :mod: `sklearn.ensemble `
63
+ .......................
64
+
65
+ - |Fix | Fix zero division error in :func: `HistGradientBoostingClassifier ` and
66
+ :func: `HistGradientBoostingRegressor `.
67
+ :pr: `14024 ` by `Nicolas Hug <NicolasHug> `.
68
+
62
69
:mod: `sklearn.impute `
63
70
.....................
64
71
@@ -100,6 +107,10 @@ Changelog
100
107
- |Fix | Fixed bug in :func: `tree.export_text ` when the tree has one feature and
101
108
a single feature name is passed in. :pr: `14053 ` by `Thomas Fan `.
102
109
110
+ - |Fix | Fixed an issue with :func: `plot_tree ` where it displayed
111
+ entropy calculations even for `gini ` criterion in DecisionTreeClassifiers.
112
+ :pr: `13947 ` by :user: `Frank Hoang <fhoang7> `.
113
+
103
114
.. _changes_0_21_2 :
104
115
105
116
Version 0.21.2
@@ -131,12 +142,6 @@ Changelog
131
142
`drop ` parameter was not reflected in `get_feature_names `. :pr: `13894 `
132
143
by :user: `James Myatt <jamesmyatt> `.
133
144
134
- :mod: `sklearn.tree `
135
- ...................
136
-
137
- - |Fix | Fixed an issue with :func: `plot_tree ` where it display
138
- entropy calculations even for `gini ` criterion in DecisionTreeClassifiers.
139
- :pr: `13947 ` by :user: `Frank Hoang <fhoang7> `.
140
145
141
146
:mod: `sklearn.utils.sparsefuncs `
142
147
................................
0 commit comments