[mlpack-git] master: Add more documentation of mlpack_approx_kfn program. (b89ae3a)

gitdub at mlpack.org gitdub at mlpack.org
Sun Oct 30 09:08:30 EDT 2016


Repository : https://github.com/mlpack/mlpack
On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/81fce4edfc8bfb4c26b48ed388f559ec1cee26dd...b89ae3a65afe8510757ed64ed2a5a89e0c43bb23

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

commit b89ae3a65afe8510757ed64ed2a5a89e0c43bb23
Author: Ryan Curtin <ryan at ratml.org>
Date:   Sun Oct 30 22:08:30 2016 +0900

    Add more documentation of mlpack_approx_kfn program.


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

b89ae3a65afe8510757ed64ed2a5a89e0c43bb23
 CMakeLists.txt              | 1 +
 HISTORY.md                  | 4 ++++
 doc/tutorials/tutorials.txt | 1 +
 src/mlpack/core.hpp         | 1 +
 4 files changed, 7 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 58da8cc..4c3ae5b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -450,6 +450,7 @@ if (UNIX)
           ${CMAKE_BINARY_DIR}/bin
         DEPENDS
           mlpack_adaboost
+          mlpack_approx_kfn
           mlpack_kfn
           mlpack_knn
           mlpack_krann
diff --git a/HISTORY.md b/HISTORY.md
index 21b4e19..12f46fd 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -16,6 +16,10 @@
   * Added simple Gradient Descent optimizer, found in
     src/mlpack/core/optimizers/gradient_descent/ (#792).
 
+  * Added approximate furthest neighbor search algorithms QDAFN and
+    DrusillaSelect in src/mlpack/methods/approx_kfn/, with command-line program
+    mlpack_approx_kfn.
+
 ### mlpack 2.0.3
 ###### 2016-07-21
   * Added multiprobe LSH (#691).  The parameter 'T' to LSHSearch::Search() can
diff --git a/doc/tutorials/tutorials.txt b/doc/tutorials/tutorials.txt
index 4e8f80f..a262863 100644
--- a/doc/tutorials/tutorials.txt
+++ b/doc/tutorials/tutorials.txt
@@ -34,6 +34,7 @@ progress to complex, extensible uses.
  - \ref emst_tutorial
  - \ref amftutorial
  - \ref cftutorial
+ - \ref akfntutorial
 
 @section policy_tut Policy Class Documentation
 
diff --git a/src/mlpack/core.hpp b/src/mlpack/core.hpp
index a5bca73..38c1c81 100644
--- a/src/mlpack/core.hpp
+++ b/src/mlpack/core.hpp
@@ -51,6 +51,7 @@
  * A full list of executables is given below:
  *
  * - mlpack_adaboost
+ * - mlpack_approx_kfn
  * - mlpack_cf
  * - mlpack_decision_stump
  * - mlpack_det




More information about the mlpack-git mailing list