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 @@ ...@@ -896,6 +896,9 @@
</p> </p>
</description> </description>
<examples>
<example>svm_pegasos_ex.cpp.html</example>
</examples>
</component> </component>
...@@ -1040,7 +1043,7 @@ ...@@ -1040,7 +1043,7 @@
<description> <description>
<p> <p>
Trains a <a href="#probabilistic_decision_function">probabilistic_decision_function</a> using 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>. <a href="#rbf_network_trainer">rbf_network_trainer</a>.
</p> </p>
The probability model is created by using the technique described in the paper: The probability model is created by using the technique described in the paper:
...@@ -1366,7 +1369,7 @@ ...@@ -1366,7 +1369,7 @@
<file>dlib/svm.h</file> <file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/pegasos_abstract.h</spec_file> <spec_file link="true">dlib/svm/pegasos_abstract.h</spec_file>
<description> <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 that create <a href="#decision_function">decision_functions</a>. It
turns an online learning algorithm such as <a href="#svm_pegasos">svm_pegasos</a> 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 into a batch learning object. This allows you to use objects like
...@@ -1397,7 +1400,7 @@ ...@@ -1397,7 +1400,7 @@
<file>dlib/svm.h</file> <file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/reduced_abstract.h</spec_file> <spec_file link="true">dlib/svm/reduced_abstract.h</spec_file>
<description> <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. that create <a href="#decision_function">decision_function</a> objects.
It performs post processing on the output decision_function objects It performs post processing on the output decision_function objects
with the intent of representing the decision_function with fewer with the intent of representing the decision_function with fewer
...@@ -1431,7 +1434,7 @@ ...@@ -1431,7 +1434,7 @@
<spec_file link="true">dlib/svm/reduced_abstract.h</spec_file> <spec_file link="true">dlib/svm/reduced_abstract.h</spec_file>
<description> <description>
<p> <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. that create <a href="#decision_function">decision_function</a> objects.
It performs post processing on the output decision_function objects It performs post processing on the output decision_function objects
with the intent of representing the decision_function with fewer with the intent of representing the decision_function with fewer
......
...@@ -122,6 +122,7 @@ ...@@ -122,6 +122,7 @@
<li>Relevance vector machines for <a href="algorithms.html#rvm_trainer">classification</a> <li>Relevance vector machines for <a href="algorithms.html#rvm_trainer">classification</a>
and <a href="algorithms.html#rvm_regression_trainer">regression</a> </li> 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#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>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 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> <li><a href="algorithms.html#rbf_network_trainer">Radial Basis Function Networks</a></li>
......
...@@ -131,6 +131,10 @@ ...@@ -131,6 +131,10 @@
<name>Support_Vector_Machine</name> <name>Support_Vector_Machine</name>
<link>svm_ex.cpp.html</link> <link>svm_ex.cpp.html</link>
</item> </item>
<item>
<name>Online_SVM</name>
<link>svm_pegasos_ex.cpp.html</link>
</item>
<item> <item>
<name>Neural_Network</name> <name>Neural_Network</name>
<link>mlp_ex.cpp.html</link> <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