View source: R/interface_cxx.R
solve_fista_goertler | R Documentation |
solve_fista_goertler
solve_fista_goertler( model, lambda = 0.01, maxiter = 100, stop.crit.threshold = 1e-05, save.all.tweaks = FALSE, learningrate = NA, linesearchspeed = 2, cycles = 5, restarts = TRUE, verbose = FALSE )
model |
input model, as constructed by, e.g., empty_model() |
lambda |
regularization parameter lambda |
maxiter |
maximum number of iterations |
stop.crit.threshold |
stopping criterion: if loss functions falls by less than this value, stop optimization. |
save.all.tweaks |
if set to true, keep results after every iteration |
learningrate |
initial learning rate (if set to NA, learning rate is determined automatically) |
linesearchspeed |
rate of in- or decrease of learning rate |
cycles |
number of function evaluations per step. |
restarts |
if set to true, restart nesterov step width if loss fn is increased. |
list, containing an element "Tweak" with the result vector and, if save.all.tweaks is set to TRUE, "History", containing tweaks at every step.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.