@@ -41,6 +41,11 @@ New features
41
41
conditioned on a label array. By `Brian McFee `_, Jean Kossaifi and
42
42
`Gilles Louppe `_.
43
43
44
+ - :class: `decomposition.LatentDirichletAllocation ` implements the Latent
45
+ Dirichlet Allocation topic model with online variational
46
+ inference. By `Chyi-Kwei Yau `_, with code based on an implementation
47
+ by Matt Hoffman. (`#3659 <https://github.com/scikit-learn/scikit-learn/pull/3659 >`_)
48
+
44
49
45
50
Enhancements
46
51
............
@@ -161,6 +166,13 @@ Enhancements
161
166
method for retrieving the leaf indices each sample ends up in under
162
167
each try. By `Jacob Schreiber `_.
163
168
169
+ - Add ``sample_weight `` support to :class: `linear_model.LinearRegression `.
170
+ By Sonny Hu. (`#4481 <https://github.com/scikit-learn/scikit-learn/pull/4881 >`_)
171
+
172
+ - Add ``n_iter_without_progress `` to :class: `manifold.TSNE ` to control
173
+ the stopping criterion. By Santi Villalba.
174
+ (`#5185 <https://github.com/scikit-learn/scikit-learn/pull/5186 >`_)
175
+
164
176
Bug fixes
165
177
.........
166
178
@@ -194,6 +206,10 @@ Bug fixes
194
206
- Fixed :func: `cross_validation.cross_val_predict ` for estimators with
195
207
sparse predictions. By Buddha Prakash.
196
208
209
+ - Fixed the ``predict_proba `` method of :class: `linear_model.LogisticRegression `
210
+ to use soft-max instead of one-vs-rest normalization. By `Manoj Kumar `_.
211
+ (`#5182 <https://github.com/scikit-learn/scikit-learn/pull/5182 >`_)
212
+
197
213
API changes summary
198
214
-------------------
199
215
@@ -3641,3 +3657,11 @@ David Huard, Dave Morrill, Ed Schofield, Travis Oliphant, Pearu Peterson.
3641
3657
.. _Brian McFee : https://bmcfee.github.io
3642
3658
3643
3659
.. _Vighnesh Birodkar : https://github.com/vighneshbirodkar
3660
+
3661
+ .. _Chyi-Kwei Yau : https://github.com/chyikwei
3662
+ .. _Martino Sorbaro : https://github.com/martinosorb
3663
+ .. _Jaidev Deshpande : https://github.com/jaidevd
3664
+ .. _Arthur Mensch : https://github.com/arthurmensch
3665
+ .. _Daniel Galvez : https://github.com/galv
3666
+ .. _Jacob Schreiber : https://github.com/jmschrei
3667
+ .. _Ankur Ankan : https://github.com/ankurankan
0 commit comments