Simulate a new warm-started run/restart once a number of epochs are performed. More...
Public Member Functions | |
| CyclicalDecay (const size_t epochRestart, const double multFactor, const double stepSize) | |
| Construct the CyclicalDecay technique a restart method, where the step size decays after each batch and peridically resets to its initial value. More... | |
| double | EpochBatches () const |
| Get the restart fraction. More... | |
| double & | EpochBatches () |
| Modify the restart fraction. More... | |
| double | StepSize () const |
| Get the step size. More... | |
| double & | StepSize () |
| Modify the step size. More... | |
| void | Update (arma::mat &, double &stepSize, const arma::mat &) |
| This function is called in each iteration after the policy update. More... | |
Simulate a new warm-started run/restart once a number of epochs are performed.
Importantly, the restarts are not performed from scratch but emulated by increasing the step size while the old step size value of as an initial parameter.
For more information, please refer to:
Definition at line 40 of file cyclical_decay.hpp.
|
inline |
Construct the CyclicalDecay technique a restart method, where the step size decays after each batch and peridically resets to its initial value.
| epochRestart | Initial epoch where decay is applied. |
| multFactor | Factor to increase the number of epochs before a restart. |
| stepSize | Initial step size for each restart. |
| batchSize | Size of each mini-batch. |
| numFunctions | The number of separable functions (the number of predictor points). |
Definition at line 55 of file cyclical_decay.hpp.
|
inline |
Get the restart fraction.
Definition at line 110 of file cyclical_decay.hpp.
|
inline |
Modify the restart fraction.
Definition at line 112 of file cyclical_decay.hpp.
|
inline |
Get the step size.
Definition at line 105 of file cyclical_decay.hpp.
|
inline |
Modify the step size.
Definition at line 107 of file cyclical_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 74 of file cyclical_decay.hpp.
References M_PI.