Commit d3ecb34d authored by Davis King's avatar Davis King

Made the spec more clear.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403343
parent 1408d571
...@@ -173,10 +173,10 @@ namespace dlib ...@@ -173,10 +173,10 @@ namespace dlib
- takes the given sample and projects it into the kernel feature space - takes the given sample and projects it into the kernel feature space
of out_vector_size() dimensions defined by this kernel map and of out_vector_size() dimensions defined by this kernel map and
returns the resulting vector. returns the resulting vector.
- in more precise terms, this function returns a vector V such that: - in more precise terms, this function returns a vector such that:
- V.size() == out_vector_size() - The returned vector will contain out_vector_size() elements.
- for any sample_type object S, the following equality is approximately true: - for any sample_type object S, the following equality is approximately true:
- get_kernel()(sample,S) == dot(V, project(S)). - get_kernel()(sample,S) == dot(project(sample), project(S)).
- The approximation error in the above equality will be zero (within rounding error) - The approximation error in the above equality will be zero (within rounding error)
if both sample_type objects involved are within the span of the set of basis if both sample_type objects involved are within the span of the set of basis
samples given to the load() function. If they are not then there will be some samples given to the load() function. If they are not then there will be some
...@@ -226,11 +226,10 @@ namespace dlib ...@@ -226,11 +226,10 @@ namespace dlib
(i.e. the returned distance function computes distances, in kernel feature space, (i.e. the returned distance function computes distances, in kernel feature space,
between vect and any argument you give it. ) between vect and any argument you give it. )
- The approximation error in the above equality will be zero (within rounding error) - The approximation error in the above equality will be zero (within rounding error)
if both sample_type objects involved are within the span of the set of basis if S is within the span of the set of basis samples given to the load() function.
samples given to the load() function. If they are not then there will be some If it is not then there will be some approximation error. Note that all the basis
approximation error. Note that all the basis samples are always within their samples are always within their own span. So the equality is always exact for the
own span. So the equality is always exact for the samples given to the load() samples given to the load() function.
function.
- DF.kernel_function == get_kernel() - DF.kernel_function == get_kernel()
- DF.b == dot(vect,vect) - DF.b == dot(vect,vect)
- DF.basis_vectors == these will be the basis samples given to the previous call to load(). Note - DF.basis_vectors == these will be the basis samples given to the previous call to load(). Note
......
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