Description Usage Arguments Value Examples
Small utility function, which creates an AutoTuner for a given learner.
Uses the same interface as the AutoTuner, but provides defaults for all arguments.
Parameter spaces are identical to the ones used in mlr3automl.
1 2 3 4 5 6 7 8 | create_autotuner(
learner = lrn("classif.xgboost"),
resampling = rsmp("cv", folds = 10),
measure = NULL,
terminator = trm("run_time", secs = 60),
tuner = tnr("random_search"),
num_effective_vars = NULL
)
|
learner |
( |
resampling |
(Resampling) |
measure |
(Measure) |
terminator |
(Terminator) |
tuner |
(Tuner | TunerHyperband) |
num_effective_vars |
|
AutoTuner
1 2 | library(mlr3automl)
my_autotuner = create_autotuner(lrn("classif.svm"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.