get.options.lbfgs {ldt} | R Documentation |
Get Options for L-BFGS Optimization
Description
Use this function to get optimization options in estim.varma or search.varma functions.
Usage
get.options.lbfgs(
maxIterations = 100,
factor = 1e+07,
projectedGradientTol = 0,
maxCorrections = 5
)
Arguments
maxIterations |
A positive integer representing the maximum number of iterations. |
factor |
A number that determines the condition for stopping the iterations. Use, for example, 1e12 for low accuracy, 1e7 (default) for moderate accuracy, and 1e1 for extremely high accuracy. The default is 1e7. |
projectedGradientTol |
A number used to stop the iteration using the projected gradient. The default is zero. |
maxCorrections |
The maximum number of variable metric corrections allowed in the limited memory matrix. The default is 5. |
Value
A list with the given options.
[Package ldt version 0.5.3 Index]