Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
3bba57bc
Commit
3bba57bc
authored
Jun 03, 2011
by
Davis King
Browse files
updated docs
parent
54fded51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
docs/docs/faq.xml
docs/docs/faq.xml
+13
-2
docs/docs/main_menu.xml
docs/docs/main_menu.xml
+4
-0
No files found.
docs/docs/faq.xml
View file @
3bba57bc
...
...
@@ -32,6 +32,7 @@ to not work right.
</ul>
</question>
<!-- ****************************************** -->
<question
text=
"How do I set the size of a matrix at runtime?"
>
Long answer, read the
<a
href=
"matrix_ex.cpp.html"
>
matrix example program
</a>
.
...
...
@@ -51,6 +52,7 @@ row_vect.set_size(5);
</code_box>
</question>
<!-- ****************************************** -->
<question
text=
"Where is the documentation for <object/function>?"
>
If you can't find something then check the
<a
href=
"term_index.html"
>
index
</a>
.
...
...
@@ -79,6 +81,8 @@ row_vect.set_size(5);
</question>
<!-- ****************************************** -->
<question
text=
"Why is cross_validate_trainer_threaded() crashing?"
>
This function makes a copy of your training data for each thread. So you are probably running out
of memory. To avoid this, use the
<a
href=
"algorithms.html#randomly_subsample"
>
randomly_subsample
</a>
function
...
...
@@ -96,9 +100,14 @@ cross_validate_trainer_threaded(trainer,
</p>
</question>
<!-- ****************************************** -->
<question
text=
"How can I define a custom kernel?"
>
See the
<a
href=
"using_custom_kernels_ex.cpp.html"
>
Using Custom Kernels
</a>
example program.
</question>
<!-- ****************************************** -->
<question
text=
"Can you give advice on feature generation/kernel selection?"
>
<p>
Picking the right kernel all comes down to understanding your data, and obviously this is
...
...
@@ -132,6 +141,8 @@ cross_validate_trainer_threaded(trainer,
</p>
</question>
<!-- ****************************************** -->
<question
text=
"Why does my decision_function always give the same output?"
>
This happens when you use the radial_basis_kernel and you set the gamma value to
something highly inappropriate. To understand what's happening lets imagine your
...
...
@@ -158,8 +169,8 @@ cross_validate_trainer_threaded(trainer,
</question>
<
question
text=
"Which machine learning method should I use?"
>
</question>
<
!-- ****************************************** --
>
</questions>
<!-- ************************************************************************* -->
...
...
docs/docs/main_menu.xml
View file @
3bba57bc
...
...
@@ -195,6 +195,10 @@
<name>
Support_Vector_Machine
</name>
<link>
svm_ex.cpp.html
</link>
</item>
<item>
<name>
Using_Custom_Kernels
</name>
<link>
using_custom_kernels_ex.cpp.html
</link>
</item>
<item>
<name>
Support_Vector_Regression
</name>
<link>
svr_ex.cpp.html
</link>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment