diff --git a/DESCRIPTION b/DESCRIPTION index 610594fd..b17732da 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -52,6 +52,7 @@ Suggests: xgboost Remotes: mlr-org/mlr3@callback + mlr-org/bbotk VignetteBuilder: knitr Config/testthat/edition: 3 diff --git a/R/ArchiveAsyncTuningFrozen.R b/R/ArchiveAsyncTuningFrozen.R index e566ee66..09ddc1ab 100644 --- a/R/ArchiveAsyncTuningFrozen.R +++ b/R/ArchiveAsyncTuningFrozen.R @@ -4,7 +4,7 @@ #' Freezes the Redis data base of an [ArchiveAsyncTuning] to a `data.table::data.table()`. #' No further points can be added to the archive but the data can be accessed and analyzed. #' Useful when the Redis data base is not permanently available. -#' Use the callback [bbotk.async_freeze_archive] to freeze the archive after the optimization has finished. +#' Use the callback [mlr3tuning.async_freeze_archive] to freeze the archive after the optimization has finished. #' #' @section S3 Methods: #' * `as.data.table(archive)`\cr diff --git a/R/mlr_callbacks.R b/R/mlr_callbacks.R index 0b1ac6bc..69f120e4 100644 --- a/R/mlr_callbacks.R +++ b/R/mlr_callbacks.R @@ -436,7 +436,7 @@ load_callback_one_se_rule = function() { #' This [CallbackAsync] freezes the [ArchiveAsync] to [ArchiveAsyncFrozen] after the optimization has finished. #' #' @examples -#' clbk("bbotk.async_freeze_archive") +#' clbk("mlr3tuning.async_freeze_archive") NULL load_callback_freeze_archive = function() { diff --git a/man/ArchiveAsyncTuningFrozen.Rd b/man/ArchiveAsyncTuningFrozen.Rd index 05d30165..89a86036 100644 --- a/man/ArchiveAsyncTuningFrozen.Rd +++ b/man/ArchiveAsyncTuningFrozen.Rd @@ -7,7 +7,7 @@ Freezes the Redis data base of an \link{ArchiveAsyncTuning} to a \code{data.table::data.table()}. No further points can be added to the archive but the data can be accessed and analyzed. Useful when the Redis data base is not permanently available. -Use the callback \link{bbotk.async_freeze_archive} to freeze the archive after the optimization has finished. +Use the callback \link{mlr3tuning.async_freeze_archive} to freeze the archive after the optimization has finished. } \section{S3 Methods}{ diff --git a/man/mlr3tuning.async_freeze_archive.Rd b/man/mlr3tuning.async_freeze_archive.Rd index f73a742b..3654dc51 100644 --- a/man/mlr3tuning.async_freeze_archive.Rd +++ b/man/mlr3tuning.async_freeze_archive.Rd @@ -7,5 +7,5 @@ This \link{CallbackAsync} freezes the \link{ArchiveAsync} to \link{ArchiveAsyncFrozen} after the optimization has finished. } \examples{ -clbk("bbotk.async_freeze_archive") +clbk("mlr3tuning.async_freeze_archive") }