CallbackBatch {bbotk} | R Documentation |
Create Batch Optimization Callback
Description
Specialized mlr3misc::Callback for batch optimization.
Callbacks allow to customize the behavior of processes in bbotk.
The callback_batch()
function creates a CallbackBatch.
Predefined callbacks are stored in the dictionary mlr_callbacks and can be retrieved with clbk()
.
For more information on optimization callbacks see callback_batch()
.
Super class
mlr3misc::Callback
-> CallbackBatch
Public fields
on_optimization_begin
(
function()
)
Stage called at the beginning of the optimization. Called inOptimizer$optimize()
.on_optimizer_before_eval
(
function()
)
Stage called after the optimizer proposes points. Called inOptimInstance$eval_batch()
.on_optimizer_after_eval
(
function()
)
Stage called after points are evaluated. Called inOptimInstance$eval_batch()
.on_result
(
function()
)
Stage called after result are written. Called inOptimInstance$assign_result()
.on_optimization_end
(
function()
)
Stage called at the end of the optimization. Called inOptimizer$optimize()
.
Methods
Public methods
Inherited methods
Method clone()
The objects of this class are cloneable with this method.
Usage
CallbackBatch$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.
Examples
# write archive to disk
callback_batch("bbotk.backup",
on_optimization_end = function(callback, context) {
saveRDS(context$instance$archive, "archive.rds")
}
)