Commit 91c95e02 authored by Davis King's avatar Davis King

updated the docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402916
parent 67c6bdd2
......@@ -896,6 +896,9 @@
</p>
</description>
<examples>
<example>svm_pegasos_ex.cpp.html</example>
</examples>
</component>
......@@ -1040,7 +1043,7 @@
<description>
<p>
Trains a <a href="#probabilistic_decision_function">probabilistic_decision_function</a> using
some sort of trainer object such as the <a href="#svm_nu_trainer">svm_nu_trainer</a> or
some sort of batch trainer object such as the <a href="#svm_nu_trainer">svm_nu_trainer</a> or
<a href="#rbf_network_trainer">rbf_network_trainer</a>.
</p>
The probability model is created by using the technique described in the paper:
......@@ -1366,7 +1369,7 @@
<file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/pegasos_abstract.h</spec_file>
<description>
This is a trainer object that is meant to wrap online trainer objects
This is a batch trainer object that is meant to wrap online trainer objects
that create <a href="#decision_function">decision_functions</a>. It
turns an online learning algorithm such as <a href="#svm_pegasos">svm_pegasos</a>
into a batch learning object. This allows you to use objects like
......@@ -1397,7 +1400,7 @@
<file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/reduced_abstract.h</spec_file>
<description>
This is a trainer object that is meant to wrap other trainer objects
This is a batch trainer object that is meant to wrap other batch trainer objects
that create <a href="#decision_function">decision_function</a> objects.
It performs post processing on the output decision_function objects
with the intent of representing the decision_function with fewer
......@@ -1431,7 +1434,7 @@
<spec_file link="true">dlib/svm/reduced_abstract.h</spec_file>
<description>
<p>
This is a trainer object that is meant to wrap other trainer objects
This is a batch trainer object that is meant to wrap other batch trainer objects
that create <a href="#decision_function">decision_function</a> objects.
It performs post processing on the output decision_function objects
with the intent of representing the decision_function with fewer
......
......@@ -122,6 +122,7 @@
<li>Relevance vector machines for <a href="algorithms.html#rvm_trainer">classification</a>
and <a href="algorithms.html#rvm_regression_trainer">regression</a> </li>
<li>An online <a href="algorithms.html#krls">kernel RLS regression</a> algorithm</li>
<li>An online <a href="algorithms.html#svm_pegasos">SVM classification</a> algorithm</li>
<li>An online kernelized <a href="algorithms.html#kcentroid">centroid estimator</a>/novelty detector</li>
<li>A kernelized <a href="algorithms.html#kkmeans">k-means</a> clustering algorithm</li>
<li><a href="algorithms.html#rbf_network_trainer">Radial Basis Function Networks</a></li>
......
......@@ -131,6 +131,10 @@
<name>Support_Vector_Machine</name>
<link>svm_ex.cpp.html</link>
</item>
<item>
<name>Online_SVM</name>
<link>svm_pegasos_ex.cpp.html</link>
</item>
<item>
<name>Neural_Network</name>
<link>mlp_ex.cpp.html</link>
......
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