Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
a6fd6929
Commit
a6fd6929
authored
Nov 23, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed spec
parent
ec7a4af1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
23 deletions
+30
-23
find_global_maximum_abstract.h
dlib/global_optimization/find_global_maximum_abstract.h
+30
-23
No files found.
dlib/global_optimization/find_global_maximum_abstract.h
View file @
a6fd6929
...
...
@@ -3,17 +3,21 @@
#undef DLIB_FiND_GLOBAL_MAXIMUM_ABSTRACT_hH_
#ifdef DLIB_FiND_GLOBAL_MAXIMUM_ABSTRACT_hH_
#include "upper_bound_function_abstract.h"
#include "global_function_search_abstract.h"
#include "../metaprogramming.h"
#include "../matrix.h"
#include <utility>
#include <chrono>
namespace
dlib
{
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
template
<
typename
T
>
auto
call_function_and_expand_args
(
T
&&
f
,
const
matrix
<
double
,
0
,
1
>&
args
...
...
@@ -34,7 +38,7 @@ namespace dlib
However, the signature of f() is allowed to vary. In particular, if f()
takes a matrix<double,0,1> as a single argument then this function simply
calls f(args). However, if f() takes double arguments then args is expanded
appropriately,
e.g
it calls one of the following as appropriate:
appropriately,
i.e.
it calls one of the following as appropriate:
f(args(0))
f(args(0),args(1))
...
...
...
@@ -48,10 +52,13 @@ namespace dlib
{
/*!
WHAT THIS OBJECT REPRESENTS
This is a simple typed integer class used to strongly type the "max number
of function calls" argument to find_global_maximum().
!*/
max_function_calls
()
=
default
;
explicit
max_function_calls
(
size_t
max_calls
)
:
max_calls
(
max_calls
)
{}
size_t
max_calls
=
std
::
numeric_limits
<
size_t
>::
max
();
...
...
@@ -59,7 +66,7 @@ namespace dlib
// ----------------------------------------------------------------------------------------
const
auto
FOREVER
=
std
::
chrono
::
hours
(
24
*
356
*
290
);
// 290 years
const
auto
FOREVER
=
std
::
chrono
::
hours
(
24
*
356
*
290
);
// 290 years
, basically forever
// ----------------------------------------------------------------------------------------
...
...
@@ -92,23 +99,23 @@ namespace dlib
ensures
- This function performs global optimization on the set of given functions.
The goal is to maximize the following objective function:
functions[i](x
)
subject to the constraints on x defined by specs[i].
max_{i,x_i}: functions[i](x_i
)
subject to the constraints on x
_i
defined by specs[i].
Once found, the return value of find_global_maximum() is:
make_pair(i, function_evaluation(x
,functions[i](x
))).
make_pair(i, function_evaluation(x
_i,functions[i](x_i
))).
That is, we search for the settings of i and x that return the largest output
and return those settings.
- The search is performed using the global_function_search object. See its
documentation for details of the algorithm.
- We set the global_function_search::get_solver_epsilon() parameter to
solver_epsilon. Therefore, the search will only attempt to find a global
maximizer to at most solver_epsilon accuracy. Once a local m
in
imizer is
found to that accuracy the search will focus entirely on finding
another
minimizers elsewhere rather than on further improving the current local
optima found so far. That is, once a local minima is identified to about
solver_epsilon accuracy, the algorithm will spend all its time exploring the
f
unction to find other local min
ima to investigate.
- find_global_maximum runs until one of the following is true:
maximizer to at most solver_epsilon accuracy. Once a local m
ax
imizer is
found to that accuracy the search will focus entirely on finding
other maxima
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
accuracy, the algorithm will spend all its time exploring the functions to
f
ind other local max
ima to investigate.
- find_global_maximum
()
runs until one of the following is true:
- 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.
!*/
...
...
@@ -148,19 +155,19 @@ namespace dlib
subject to the constraints on x defined by function_spec(bound1,bound2,is_integer_variable).
Once found, the return value of find_global_maximum() is:
function_evaluation(x,f(x))).
That is, we search for the setting of x that return the largest output and
return th
ose settings
.
That is, we search for the setting of x that return
s
the largest output and
return th
at setting
.
- The search is performed using the global_function_search object. See its
documentation for details of the algorithm.
- We set the global_function_search::get_solver_epsilon() parameter to
solver_epsilon. Therefore, the search will only attempt to find a global
maximizer to at most solver_epsilon accuracy. Once a local m
in
imizer is
found to that accuracy the search will focus entirely on finding
another
minimizers elsewhere rather than on further improving the current local
optima found so far. That is, once a local minima is identified to about
solver_epsilon accuracy, the algorithm will spend all its time exploring the
f
unction to find other local min
ima to investigate.
- find_global_maximum runs until one of the following is true:
maximizer to at most solver_epsilon accuracy. Once a local m
ax
imizer is
found to that accuracy the search will focus entirely on finding
other maxima
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
accuracy, the algorithm will spend all its time exploring the function to
f
ind other local max
ima to investigate.
- find_global_maximum
()
runs until one of the following is true:
- The total number of calls to f() is == num.max_calls
- 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