test_that("TunerBatchCmaes", {
skip_if_not_installed("adagio")
expect_tuner(tnr("cmaes"))
learner = lrn("classif.rpart",
cp = to_tune(1e-04, 1e-1, logscale = TRUE),
minsplit = to_tune(p_dbl(2, 128, trafo = as.integer)),
minbucket = to_tune(p_dbl(1, 64, trafo = as.integer))
)
instance = tune(
tuner = tnr("cmaes"),
task = tsk("pima"),
learner = learner,
resampling = rsmp("holdout"),
measures = msr("classif.ce"),
term_evals = 10
)
expect_equal(instance$archive$n_evals, 10)
expect_named(instance$result_x_domain, c("cp", "minsplit", "minbucket"), ignore.order = TRUE)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.