Update HISTORY.

This commit is contained in:
Ryan Curtin
2016-06-02 09:50:42 -04:00
parent 8ed22ce675
commit e3a23c256f
+3 -6
View File
@@ -1,15 +1,12 @@
### mlpack 2.0.2
###### 2016-??-??
* LSHSearch::Projection(size_t) that returned a single projection matrix has
been removed. In its place, LSHSearch::Projections() has been added, which
returns an arma::cube with each projection table in a slice (#663).
* Added the function LSHSearch::Projections(), which returns an arma::cube
with each projection table in a slice (#663). Instead of Projection(i), you
should now use Projections().slice(i).
* A new constructor has been added to LSHSearch that creates objects using
projection tables provided in an arma::cube (#663).
* LSHSearch::Projections(arma::cube) has been added that allows users to
change the projection tables of an LSHSearch object (#663).
* Handle zero-variance dimensions in DET (#515).
* Add MiniBatchSGD optimizer (src/mlpack/core/optimizers/minibatch_sgd/) and