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
f91527a3
Commit
f91527a3
authored
May 12, 2012
by
Davis King
Browse files
Clarified spec
parent
d7dc8ae3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
dlib/optimization/optimization_oca_abstract.h
dlib/optimization/optimization_oca_abstract.h
+5
-2
No files found.
dlib/optimization/optimization_oca_abstract.h
View file @
f91527a3
...
@@ -21,7 +21,9 @@ namespace dlib
...
@@ -21,7 +21,9 @@ namespace dlib
OCA solves optimization problems with the following form:
OCA solves optimization problems with the following form:
Minimize: f(w) == 0.5*dot(w,w) + C*R(w)
Minimize: f(w) == 0.5*dot(w,w) + C*R(w)
Where R(w) is a user-supplied convex function and C > 0
Where R(w) is a user-supplied convex function and C > 0. Optionally,
there can also be non-negativity constraints on some or all of the
elements of w.
Note that the stopping condition must be provided by the user
Note that the stopping condition must be provided by the user
...
@@ -125,7 +127,8 @@ namespace dlib
...
@@ -125,7 +127,8 @@ namespace dlib
Minimize: f(w) == 0.5*dot(w,w) + C*R(w)
Minimize: f(w) == 0.5*dot(w,w) + C*R(w)
Where R(w) is a user-supplied convex function and C > 0. Optionally,
Where R(w) is a user-supplied convex function and C > 0. Optionally,
this object can also add the non-negativity constraint that min(w) >= 0.
this object can also add non-negativity constraints to some or all
of the elements of w.
For a detailed discussion you should consult the following papers
For a detailed discussion you should consult the following papers
...
...
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