makeMlr3Surrogate | R Documentation |
Creates the default mlrMBO surrogate learners as an mlr3::Learner
.
This imitates the behaviour of mlrCPO when no learner
argument is given to mbo()
/ initSMBO()
.
makeMlr3Surrogate(
is.numeric = TRUE,
is.noisy = TRUE,
has.dependencies = !is.numeric
)
is.numeric |
( |
is.noisy |
( |
has.dependencies |
( |
# DiceKriging Learner:
makeMlr3Surrogate()
# mlr3pipelines Graph: imputation %>>% 'ranger' (randomForest):
makeMlr3Surrogate(is.numeric = FALSE)
# just the 'ranger' Learner:
makeMlr3Surrogate(is.numeric = FALSE, has.dependencies = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.