test_that("AcqOptimizer API works", { skip_if_not_installed("mlr3learners") skip_if_not_installed("DiceKriging") skip_if_not_installed("rgenoud") # EI, random search instance = OptimInstanceSingleCrit$new(OBJ_1D, terminator = trm("evals", n_evals = 5L)) design = generate_design_grid(instance$search_space, resolution = 4L)$data instance$eval_batch(design) acqfun = AcqFunctionEI$new(SurrogateLearner$new(REGR_KM_DETERM, archive = instance$archive)) acqopt = AcqOptimizer$new(opt("random_search", batch_size = 2L), trm("evals", n_evals = 2L), acq_function = acqfun) acqfun$surrogate$update() acqfun$update() expect_data_table(acqopt$optimize(), nrows = 1L) # upgrading error class works - catch_errors acqopt = AcqOptimizer$new(OptimizerError$new(), trm("evals", n_evals = 2L), acq_function = acqfun) expect_error(acqopt$optimize(), class = "acq_optimizer_error") acqopt$param_set$values$catch_errors = FALSE expect_error(acqopt$optimize(), class = "simpleError") # logging_level console_appender = if (packageVersion("lgr") >= "0.4.0") lg$inherited_appenders$console else lg$inherited_appenders$appenders.console f = tempfile("bbotklog_", fileext = "log") th1 = lg$threshold th2 = console_appender$threshold lg$set_threshold("debug") lg$add_appender(lgr::AppenderFile$new(f, threshold = "debug"), name = "testappender") console_appender$set_threshold("warn") on.exit({ lg$remove_appender("testappender") lg$set_threshold(th1) console_appender$set_threshold(th2) }) acqopt = AcqOptimizer$new(opt("random_search", batch_size = 2L), trm("evals", n_evals = 2L), acq_function = acqfun) acqopt$param_set$values$logging_level = "warn" acqopt$optimize() lines = readLines(f) expect_equal(lines, character(0)) acqopt$param_set$values$logging_level = "info" acqopt$optimize() lines = readLines(f) expect_character(lines, min.len = 1L) # warmstart | warmstart_size | skip_already_evaluated acqopt = AcqOptimizer$new(opt("design_points", batch_size = 1L, design = data.table(x = 0)), trm("evals", n_evals = 5L), acq_function = acqfun) acqopt$param_set$values$warmstart = TRUE xdt = acqopt$optimize() expect_true(xdt[["x"]] == 0) expect_true(xdt[[".already_evaluated"]] == FALSE) acqopt$param_set$values$warmstart_size = 1L xdt = acqopt$optimize() expect_true(xdt[["x"]] == 0) expect_true(xdt[[".already_evaluated"]] == FALSE) acqopt = AcqOptimizer$new(opt("grid_search", resolution = 4L, batch_size = 1L), trm("evals", n_evals = 8L), acq_function = acqfun) acqopt$param_set$values$warmstart = TRUE acqopt$param_set$values$warmstart_size = "all" expect_error(acqopt$optimize(), "All candidates were already evaluated.") acqopt$param_set$values$skip_already_evaluated = FALSE xdt = acqopt$optimize() expect_true(is.null(xdt[[".already_evaluated"]])) acqopt$param_set$values$warmstart_size = NULL acqopt$param_set$values$warmstart = FALSE xdt = acqopt$optimize() expect_true(is.null(xdt[[".already_evaluated"]])) }) test_that("AcqOptimizer param_set", { acqopt = AcqOptimizer$new(opt("random_search", batch_size = 1L), trm("evals", n_evals = 1L)) expect_r6(acqopt$param_set, "ParamSet") expect_setequal(acqopt$param_set$ids(), c("logging_level", "warmstart", "warmstart_size", "skip_already_evaluated", "catch_errors")) expect_r6(acqopt$param_set$params$logging_level, "ParamFct") expect_r6(acqopt$param_set$params$warmstart, "ParamLgl") expect_r6(acqopt$param_set$params$warmstart_size, "ParamInt") expect_r6(acqopt$param_set$params$skip_already_evaluated, "ParamLgl") expect_r6(acqopt$param_set$params$catch_errors, "ParamLgl") expect_error({acqopt$param_set = list()}, regexp = "param_set is read-only.") }) test_that("AcqOptimizer trafo", { domain = ps(x = p_dbl(lower = 10, upper = 20, trafo = function(x) x - 15)) objective = ObjectiveRFunDt$new( fun = function(xdt) data.table(y = xdt$x ^ 2), domain = domain, codomain = ps(y = p_dbl(tags = "minimize")), check_values = FALSE ) instance = MAKE_INST(objective = objective, search_space = domain, terminator = trm("evals", n_evals = 5L)) design = MAKE_DESIGN(instance) instance$eval_batch(design) acqfun = AcqFunctionEI$new(SurrogateLearner$new(REGR_FEATURELESS, archive = instance$archive)) acqopt = AcqOptimizer$new(opt("random_search", batch_size = 2L), trm("evals", n_evals = 2L), acq_function = acqfun) acqfun$surrogate$update() acqfun$update() res = acqopt$optimize() expect_equal(res$x, res$x_domain[[1L]][[1L]]) }) test_that("AcqOptimizer deep clone", { acqopt1 = AcqOptimizer$new(opt("random_search", batch_size = 1L), trm("evals", n_evals = 1L)) acqopt2 = acqopt1$clone(deep = TRUE) expect_true(address(acqopt1) != address(acqopt2)) expect_true(address(acqopt1$optimizer) != address(acqopt2$optimizer)) expect_true(address(acqopt1$terminator) != address(acqopt2$terminator)) })