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
a6c6427e
"examples/vscode:/vscode.git/clone" did not exist on "1f16f29b20dda3be7897d849617494ea0f8df235"
Commit
a6c6427e
authored
Dec 15, 2017
by
Davis King
Browse files
clarified spec
parent
76dc546b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
dlib/global_optimization/upper_bound_function_abstract.h
dlib/global_optimization/upper_bound_function_abstract.h
+8
-7
No files found.
dlib/global_optimization/upper_bound_function_abstract.h
View file @
a6c6427e
...
...
@@ -35,13 +35,14 @@ namespace dlib
{
/*!
WHAT THIS OBJECT REPRESENTS
This object represents a non-parametric function that can be used to define
an upper bound on some more complex and unknown function. To describe this
precisely, lets assume there is a function F(x) which you are capable of
sampling from but otherwise know nothing about, and that you would like to
find an upper bounding function U(x) such that U(x) >= F(x) for any x. It
would also be good if U(x)-F(x) was minimal. I.e. we would like U(x) to be
a tight upper bound, not something vacuous like U(x) = infinity.
This object represents a piecewise linear non-parametric function that can
be used to define an upper bound on some more complex and unknown function.
To describe this precisely, lets assume there is a function F(x) which you
are capable of sampling from but otherwise know nothing about, and that you
would like to find an upper bounding function U(x) such that U(x) >= F(x)
for any x. It would also be good if U(x)-F(x) was minimal. I.e. we would
like U(x) to be a tight upper bound, not something vacuous like U(x) =
infinity.
The upper_bound_function class is a tool for creating this kind of upper
bounding function from a set of function_evaluations of F(x). We do this
...
...
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