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
e302a61e
Commit
e302a61e
authored
Nov 25, 2017
by
Davis King
Browse files
Clarified spec
parent
89d3fe4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
dlib/global_optimization/find_max_global_abstract.h
dlib/global_optimization/find_max_global_abstract.h
+10
-2
No files found.
dlib/global_optimization/find_max_global_abstract.h
View file @
e302a61e
...
@@ -114,7 +114,11 @@ namespace dlib
...
@@ -114,7 +114,11 @@ namespace dlib
elsewhere rather than on further improving the current local optima found so
elsewhere rather than on further improving the current local optima found so
far. That is, once a local maxima is identified to about solver_epsilon
far. That is, once a local maxima is identified to about solver_epsilon
accuracy, the algorithm will spend all its time exploring the functions to
accuracy, the algorithm will spend all its time exploring the functions to
find other local maxima to investigate.
find other local maxima to investigate. An epsilon of 0 means it will keep
solving until it reaches full floating point precision. Larger values will
cause it to switch to pure global exploration sooner and therefore might be
more effective if your objective function has many local maxima and you don't
care about a super high precision solution.
- find_max_global() runs until one of the following is true:
- find_max_global() runs until one of the following is true:
- The total number of calls to the provided functions is == num.max_calls
- The total number of calls to the provided functions is == num.max_calls
- More than max_runtime time has elapsed since the start of this function.
- More than max_runtime time has elapsed since the start of this function.
...
@@ -178,7 +182,11 @@ namespace dlib
...
@@ -178,7 +182,11 @@ namespace dlib
elsewhere rather than on further improving the current local optima found so
elsewhere rather than on further improving the current local optima found so
far. That is, once a local maxima is identified to about solver_epsilon
far. That is, once a local maxima is identified to about solver_epsilon
accuracy, the algorithm will spend all its time exploring the function to
accuracy, the algorithm will spend all its time exploring the function to
find other local maxima to investigate.
find other local maxima to investigate. An epsilon of 0 means it will keep
solving until it reaches full floating point precision. Larger values will
cause it to switch to pure global exploration sooner and therefore might be
more effective if your objective function has many local maxima and you don't
care about a super high precision solution.
- find_max_global() runs until one of the following is true:
- find_max_global() runs until one of the following is true:
- The total number of calls to f() is == num.max_calls
- The total number of calls to f() is == num.max_calls
- More than max_runtime time has elapsed since the start of this function.
- More than max_runtime time has elapsed since the start of this function.
...
...
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