Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthias Mayr
limbo
Commits
4b8ede53
Commit
4b8ede53
authored
Jul 06, 2018
by
Konstantinos Chatzilygeroudis
Browse files
Add some forgotten doc things [ci skip]
parent
94c5d8a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/limbo/opt/adam.hpp
View file @
4b8ede53
...
...
@@ -61,15 +61,19 @@ namespace limbo {
/// number of max iterations
BO_PARAM
(
int
,
iterations
,
300
);
/// @ingroup opt_defaults
/// alpha - learning rate
BO_PARAM
(
double
,
alpha
,
0.001
);
/// @ingroup opt_defaults
/// β1
BO_PARAM
(
double
,
b1
,
0.9
);
/// @ingroup opt_defaults
/// β2
BO_PARAM
(
double
,
b2
,
0.999
);
/// @ingroup opt_defaults
/// norm epsilon for stopping
BO_PARAM
(
double
,
eps_stop
,
0.0
);
};
...
...
src/limbo/opt/gradient_ascent.hpp
View file @
4b8ede53
...
...
@@ -61,15 +61,19 @@ namespace limbo {
/// number of max iterations
BO_PARAM
(
int
,
iterations
,
300
);
/// @ingroup opt_defaults
/// alpha - learning rate
BO_PARAM
(
double
,
alpha
,
0.001
);
/// @ingroup opt_defaults
/// gamma - for momentum
BO_PARAM
(
double
,
gamma
,
0.0
);
/// @ingroup opt_defaults
/// nesterov momentum; turn on/off
BO_PARAM
(
bool
,
nesterov
,
false
);
/// @ingroup opt_defaults
/// norm epsilon for stopping
BO_PARAM
(
double
,
eps_stop
,
0.0
);
};
...
...
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