Commit 1c1c7708 authored by Davis King's avatar Davis King

updated docs

parent ce55c4f1
......@@ -70,6 +70,7 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
<item>svm_nu_trainer</item>
<item>svm_c_trainer</item>
<item>svm_c_linear_trainer</item>
<item>svm_c_linear_dcd_trainer</item>
<item>svm_c_ekm_trainer</item>
<item>rvm_trainer</item>
<item>svm_pegasos</item>
......@@ -1103,6 +1104,30 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
</component>
<!-- ************************************************************************* -->
<component>
<name>svm_c_linear_dcd_trainer</name>
<file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/svm_c_linear_dcd_trainer_abstract.h</spec_file>
<description>
This object represents a tool for training the C formulation of
a support vector machine to solve binary classification problems.
It is optimized for the case where linear kernels are used and
is implemented using the method described in the
following paper:
<blockquote>
A Dual Coordinate Descent Method for Large-scale Linear SVM
by Cho-Jui Hsieh, Kai-Wei Chang, and Chih-Jen Lin
</blockquote>
This trainer has the ability to disable the bias term and also
to force the last element of the learned weight vector to be 1.
Additionally, it can be warm-started from the solution to a previous
training run.
</description>
</component>
<!-- ************************************************************************* -->
<component>
......@@ -1121,6 +1146,9 @@ Davis E. King. <a href="http://jmlr.csail.mit.edu/papers/volume10/king09a/king09
by Vojtech Franc, Soren Sonnenburg; Journal of Machine Learning
Research, 10(Oct):2157--2192, 2009.
</blockquote>
This trainer has the ability to restrict the learned weights to non-negative
values.
</description>
<examples>
<example>svm_sparse_ex.cpp.html</example>
......
......@@ -280,6 +280,7 @@
<term file="ml.html" name="svm_c_trainer"/>
<term file="ml.html" name="svm_one_class_trainer"/>
<term file="ml.html" name="svm_c_linear_trainer"/>
<term file="ml.html" name="svm_c_linear_dcd_trainer"/>
<term file="ml.html" name="svm_rank_trainer"/>
<term file="ml.html" name="ranking_pair"/>
<term file="ml.html" name="is_ranking_problem"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment