Commit f3efbc31 authored by Davis King's avatar Davis King

updated docs

parent 565e63f2
......@@ -84,6 +84,7 @@ Davis E. King. <a href="http://www.jmlr.org/papers/volume10/king09a/king09a.pdf"
<name>Regression</name>
<item>mlp</item>
<item>krls</item>
<item>rls</item>
<item>krr_trainer</item>
<item>rr_trainer</item>
<item>svr_trainer</item>
......@@ -531,6 +532,25 @@ Davis E. King. <a href="http://www.jmlr.org/papers/volume10/king09a/king09a.pdf"
</component>
<!-- ************************************************************************* -->
<component>
<name>rls</name>
<file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/rls_abstract.h</spec_file>
<description>
This is an implementation of the linear version of the recursive least
squares algorithm. It accepts training points incrementally and, at
each step, maintains the solution to the following optimization problem:
<blockquote>
find w minimizing: 0.5*dot(w,w) + C*sum_i(y_i - trans(x_i)*w)^2
</blockquote>
Where (x_i,y_i) are training pairs. x_i is some vector and y_i is a target
scalar value.
</description>
</component>
<!-- ************************************************************************* -->
<component>
......
......@@ -258,6 +258,7 @@
<term link="ml.html#krr_trainer" name="regularized least squares"/>
<term link="ml.html#krr_trainer" name="least squares SVM"/>
<term file="ml.html" name="krls"/>
<term file="ml.html" name="rls"/>
<term file="ml.html" name="kcentroid"/>
<term file="ml.html" name="linearly_independent_subset_finder"/>
<term file="ml.html" name="fill_lisf"/>
......
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