Definition of the NoDecay class. More...
Public Member Functions | |
| NoDecay () | |
| This constructor is called before the first iteration. More... | |
| void | Update (arma::mat &, double &, const arma::mat &) |
| This function is called in each iteration after the policy update. More... | |
| void | Update (const arma::mat &, const arma::mat &, const arma::mat &, const arma::mat &, const size_t, double &) |
| This function is called in each iteration after the SVRG update step. More... | |
Definition of the NoDecay class.
Use this as a template for your own.
Definition at line 24 of file no_decay.hpp.
|
inline |
This constructor is called before the first iteration.
Definition at line 30 of file no_decay.hpp.
|
inline |
This function is called in each iteration after the policy update.
| iterate | Parameters that minimize the function. |
| stepSize | Step size to be used for the given iteration. |
| gradient | The gradient matrix. |
Definition at line 39 of file no_decay.hpp.
|
inline |
This function is called in each iteration after the SVRG update step.
| iterate | Parameters that minimize the function. |
| iterate0 | The last function parameters at time t - 1. |
| gradient | The current gradient matrix at time t. |
| fullGradient | The computed full gradient. |
| stepSize | Step size to be used for the given iteration. |
Definition at line 55 of file no_decay.hpp.