MBOSingleObjResult {mlrMBO} | R Documentation |
Single-Objective result object.
Description
x [
list
]Named list of proposed optimal parameters.y [
numeric(1)
]Value of objective function atx
, either from evals during optimization or from requested final evaluations, if those were greater than 0.best.ind [
numeric(1)
]Index ofx
in the opt.path.opt.path [
OptPath
]Optimization path. Includes all evaluated points and additional information as documented in mbo_OptPath. You can convert it viaas.data.frame
.resample.results [List of
ResampleResult
]List of the desiredresample.results
ifresample.at
is set inmakeMBOControl
.final.state [
character
] The final termination state. Gives information why the optimization ended. Possible values are- term.iter
Maximal number of iterations reached.
- term.time
Maximal running time exceeded.
- term.exectime
Maximal execution time of function evaluations reached.
- term.yval
Target function value reached.
- term.fevals
maximal number of function evaluations reached.
- term.custom
Terminated due to custom, user-defined termination condition.
models [List of
WrappedModel
]List of saved regression models ifstore.model.at
is set inmakeMBOControl
. The default is that it contains the model generated after the last iteration.control [
MBOControl
] Control object used in optimization