`optimx` optimizer settings
settings_optimx(
method = c("bobyqa", "L-BFGS-B"),
itnmax = 1e+06,
hessian = FALSE,
control = list(kkt = FALSE),
...
)
An object of class `pk_settings`.
The name(s) of optimization methods to be used. See [optimx::optimx()] for options. Default is `"bobyqa"`.
The maximum number of iterations; as in [optimx::optimx()].
Whether to compute the Hessian at the final set of parameters; as in [optimx::optimx()].
A list of control parameters for the optimizer; see [optimx::optimx()] for options and details.
Additional arguments not currently implemented.
Caroline Ring