[mlpack-git] master: Add changes to HISTORY and document new program. (c992568)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Nov 19 16:19:40 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/a1dada8ba0f88f14653f09ea8c3ec8b04d982434...c99256848a352da3c59610c8e37a21d0d5be9736

>---------------------------------------------------------------

commit c99256848a352da3c59610c8e37a21d0d5be9736
Author: Ryan Curtin <ryan at ratml.org>
Date:   Thu Nov 19 13:19:25 2015 -0800

    Add changes to HISTORY and document new program.


>---------------------------------------------------------------

c99256848a352da3c59610c8e37a21d0d5be9736
 CMakeLists.txt      | 3 ++-
 HISTORY.md          | 3 +++
 src/mlpack/core.hpp | 7 ++++---
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8eddc98..0684b4b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -337,7 +337,8 @@ if (UNIX)
           allkfn allknn allkrann cf decision_stump det emst fastmks gmm
           hmm_generate hmm_loglik hmm_train hmm_viterbi kernel_pca kmeans lars
           linear_regression local_coordinate_coding logistic_regression lsh nbc
-          nca nmf pca perceptron radical range_search sparse_coding
+          nca nmf pca perceptron radical range_search softmax_regression
+          sparse_coding
         COMMENT "Generating man pages from built executables."
     )
 
diff --git a/HISTORY.md b/HISTORY.md
index 71d5159..677ff60 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -33,6 +33,9 @@
 
   * Add serialization support for Perceptron and LogisticRegression.
 
+  * Refactor SoftmaxRegression to predict into an arma::Row<size_t> object, and
+    add a softmax_regression program.
+
 ### mlpack 1.0.11
 ###### 2014-12-11
   * Proper handling of dimension calculation in PCA.
diff --git a/src/mlpack/core.hpp b/src/mlpack/core.hpp
index c79c67b..3d5264d 100644
--- a/src/mlpack/core.hpp
+++ b/src/mlpack/core.hpp
@@ -49,9 +49,10 @@
  *
  * A full list of executables is given below:
  *
- * allkfn, allknn, emst, gmm, hmm_train, hmm_loglik, hmm_viterbi, hmm_generate,
- * kernel_pca, kmeans, lars, linear_regression, local_coordinate_coding, mvu,
- * nbc, nca, pca, radical, sparse_coding
+ * allkfn, allknn, det, emst, gmm, hmm_train, hmm_loglik, hmm_viterbi,
+ * hmm_generate, kernel_pca, kmeans, lars, linear_regression,
+ * local_coordinate_coding, logistic_regression, lsh, mvu, nbc, nca, pca,
+ * radical, range_search, softmax_regression, sparse_coding
  *
  * @section tutorial Tutorials
  *



More information about the mlpack-git mailing list