Commit 83546f1f authored by Davis King's avatar Davis King

updated the docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402437
parent ee019875
...@@ -111,6 +111,7 @@ ...@@ -111,6 +111,7 @@
<sub> <sub>
<item>radial_basis_kernel</item> <item>radial_basis_kernel</item>
<item>polynomial_kernel</item> <item>polynomial_kernel</item>
<item>sigmoid_kernel</item>
<item>linear_kernel</item> <item>linear_kernel</item>
</sub> </sub>
</item> </item>
...@@ -1043,7 +1044,20 @@ ...@@ -1043,7 +1044,20 @@
<spec_file link="true">dlib/svm/kernel_abstract.h</spec_file> <spec_file link="true">dlib/svm/kernel_abstract.h</spec_file>
<description> <description>
This object represents a linear function kernel for use with This object represents a linear function kernel for use with
support vector machines. kernel learning machines.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>sigmoid_kernel</name>
<file>dlib/svm.h</file>
<spec_file link="true">dlib/svm/kernel_abstract.h</spec_file>
<description>
This object represents a sigmoid kernel for use with
kernel learning machines.
</description> </description>
</component> </component>
...@@ -1056,7 +1070,7 @@ ...@@ -1056,7 +1070,7 @@
<spec_file link="true">dlib/svm/kernel_abstract.h</spec_file> <spec_file link="true">dlib/svm/kernel_abstract.h</spec_file>
<description> <description>
This object represents a polynomial kernel for use with This object represents a polynomial kernel for use with
support vector machines. kernel learning machines.
</description> </description>
</component> </component>
...@@ -1069,7 +1083,7 @@ ...@@ -1069,7 +1083,7 @@
<spec_file link="true">dlib/svm/kernel_abstract.h</spec_file> <spec_file link="true">dlib/svm/kernel_abstract.h</spec_file>
<description> <description>
This object represents a radial basis function kernel for use with This object represents a radial basis function kernel for use with
support vector machines. kernel learning machines.
</description> </description>
<examples> <examples>
<example>svm_ex.cpp.html</example> <example>svm_ex.cpp.html</example>
......
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
<li><b>Machine Learning Algorithms</b> <li><b>Machine Learning Algorithms</b>
<ul> <ul>
<li><a href="algorithms.html#mlp">multi layer perceptrons</a> </li> <li><a href="algorithms.html#mlp">multi layer perceptrons</a> </li>
<li><a href="algorithms.html#svm_nu_trainer">nu support vector machines</a> for classification</li> <li><a href="algorithms.html#svm_nu_trainer">support vector machines</a> for classification</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 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>
......
...@@ -22,6 +22,7 @@ New Stuff: ...@@ -22,6 +22,7 @@ New Stuff:
reduced2() function reduced2() function
- Added a radial basis function network trainer - Added a radial basis function network trainer
- Added the linearly_independent_subset_finder object - Added the linearly_independent_subset_finder object
- Added the sigmoid_kernel
- Matrix Utilities - Matrix Utilities
- Added the inv_upper_triangular() and inv_upper_triangular() - Added the inv_upper_triangular() and inv_upper_triangular()
functions. functions.
...@@ -38,9 +39,12 @@ Bug fixes: ...@@ -38,9 +39,12 @@ Bug fixes:
- Added a missing check for division by zero to the conjugate gradient - Added a missing check for division by zero to the conjugate gradient
optimization functions. optimization functions.
- Added some missing member variables to the .swap and serialization - Added some missing member variables to the .swap and serialization
functions. So now they should work right. functions for the kcentroid object. So now they should work right.
Other: Other:
- Added an option to the cmake file to toggle the DLIB_ASSERT macro
- Added an option to the cmake file to toggle the dlib stack trace macros
- Made the library compile in Cygwin
</current> </current>
......
...@@ -413,15 +413,16 @@ ...@@ -413,15 +413,16 @@
<term link="dlib/svm/svm_abstract.h.html#maximum_nu" name="maximum_nu"/> <term link="dlib/svm/svm_abstract.h.html#maximum_nu" name="maximum_nu"/>
<term link="dlib/svm/function_abstract.h.html#decision_function" name="decision_function"/> <term link="algorithms.html#decision_function" name="decision_function"/>
<term link="dlib/svm/function_abstract.h.html#distance_function" name="distance_function"/> <term link="algorithms.html#distance_function" name="distance_function"/>
<term link="dlib/svm/function_abstract.h.html#probabilistic_decision_function" name="probabilistic_decision_function"/> <term link="algorithms.html#probabilistic_decision_function" name="probabilistic_decision_function"/>
<term link="algorithms.html#linear_kernel" name="linear_kernel"/>
<term link="algorithms.html#polynomial_kernel" name="polynomial_kernel"/>
<term link="algorithms.html#sigmoid_kernel" name="sigmoid_kernel"/>
<term link="algorithms.html#radial_basis_kernel" name="radial_basis_kernel"/>
<term link="dlib/svm/kernel_abstract.h.html#linear_kernel" name="linear_kernel"/>
<term link="dlib/svm/kernel_abstract.h.html#polynomial_kernel" name="polynomial_kernel"/>
<term link="dlib/svm/kernel_abstract.h.html#radial_basis_kernel" name="radial_basis_kernel"/>
<term link="dlib/svm/kernel_abstract.h.html#kernel_derivative" name="kernel_derivative"/>
<term link="dlib/svm/kernel_abstract.h.html#Kernel_Function_Objects" name="Kernel Function Objects"/> <term link="dlib/svm/kernel_abstract.h.html#Kernel_Function_Objects" name="Kernel Function Objects"/>
<term link="dlib/svm/kernel_abstract.h.html#kernel_derivative" name="kernel_derivative"/>
......
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