diff --git a/docs/docs/algorithms.xml b/docs/docs/algorithms.xml index 6e1068375..f6c5c6660 100644 --- a/docs/docs/algorithms.xml +++ b/docs/docs/algorithms.xml @@ -112,6 +112,7 @@ probabilistic_decision_function krls kcentroid + kkmeans svm_nu_train svm_nu_train_prob svm_nu_cross_validate @@ -790,6 +791,23 @@ + + + + kkmeans + dlib/svm.h + dlib/svm/kkmeans_abstract.h + + This is an implementation of a kernelized k-means clustering algorithm. + It performs k-means clustering by using the kcentroid object. + + + + kkmeans_ex.cpp.html + + + + diff --git a/docs/docs/index.xml b/docs/docs/index.xml index cac152fb6..bac4db2b9 100644 --- a/docs/docs/index.xml +++ b/docs/docs/index.xml @@ -119,6 +119,7 @@
  • nu support vector machines for classification
  • An online kernel RLS regression algorithm
  • An online kernelized centroid estimator
  • +
  • A kernelized k-means clustering algorithm
  • Bayesian Network inference algorithms such as the join tree algorithm and Gibbs sampler Markov Chain Monte Carlo algorithm
  • diff --git a/docs/docs/main_menu.xml b/docs/docs/main_menu.xml index 1268f60e3..a5ddd49c6 100644 --- a/docs/docs/main_menu.xml +++ b/docs/docs/main_menu.xml @@ -91,6 +91,10 @@ Kernel_Centroid kcentroid_ex.cpp.html + + Kernel_K-Means_Clustering + kkmeans_ex.cpp.html + Matrix matrix_ex.cpp.html diff --git a/docs/docs/release_notes.xml b/docs/docs/release_notes.xml index 7f8db7fd3..9fe4f41e2 100644 --- a/docs/docs/release_notes.xml +++ b/docs/docs/release_notes.xml @@ -14,6 +14,7 @@ New Stuff: - Added some macros that allow dlib to create a stack trace - Added a kernel based centroid estimator/novelty detector + - Added a kernel based k-means clustering algorithm - Added an identity_matrix() function that can take a runtime defined size. - Added a bunch of unconstrained optimization stuff to the library. It now has a conjugate gradient optimization algorithm as well as diff --git a/docs/docs/term_index.xml b/docs/docs/term_index.xml index f4edb9a86..afa14d1e7 100644 --- a/docs/docs/term_index.xml +++ b/docs/docs/term_index.xml @@ -391,6 +391,7 @@ +