Skip to content

Commit

Permalink
compability: work with new bbotk 0.9.0 and mlr3tuning 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
be-marc committed May 28, 2024
1 parent 03d7ef9 commit 6b7b7ca
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ URL: https://mlr3hyperband.mlr-org.com,
https://github.com/mlr-org/mlr3hyperband
BugReports: https://github.com/mlr-org/mlr3hyperband/issues
Depends:
mlr3tuning (>= 0.13.0),
mlr3tuning (>= 0.20.0.9000),
R (>= 3.1.0)
Imports:
bbotk (>= 0.7.0),
bbotk (>= 0.8.0.9000),
checkmate (>= 1.9.4),
data.table,
lgr,
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# mlr3hyperband (development version)

* compatibility; Work with new bbotk 0.9.0 and mlr3tuning 0.21.0

# mlr3hyperband 0.5.0

* compatibility: Work with new paradox version 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion R/OptimizerHyperband.R
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#' @export
#' @template example_optimizer
OptimizerHyperband = R6Class("OptimizerHyperband",
inherit = Optimizer,
inherit = OptimizerBatch,
public = list(

#' @description
Expand Down
2 changes: 1 addition & 1 deletion R/OptimizerSuccessiveHalving.R
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#' @export
#' @template example_optimizer
OptimizerSuccessiveHalving = R6Class("OptimizerSuccessiveHalving",
inherit = Optimizer,
inherit = OptimizerBatch,
public = list(

#' @description
Expand Down
2 changes: 1 addition & 1 deletion R/TunerHyperband.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#' @export
#' @template example_tuner
TunerHyperband = R6Class("TunerHyperband",
inherit = TunerFromOptimizer,
inherit = TunerBatchFromOptimizerBatch,
public = list(

#' @description
Expand Down
2 changes: 1 addition & 1 deletion R/TunerSuccessiveHalving.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#' @export
#' @template example_tuner
TunerSuccessiveHalving = R6Class("TunerSuccessiveHalving",
inherit = TunerFromOptimizer,
inherit = TunerBatchFromOptimizerBatch,
public = list(

#' @description
Expand Down
6 changes: 3 additions & 3 deletions man/mlr_optimizers_hyperband.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions man/mlr_optimizers_successive_halving.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/mlr_tuners_hyperband.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/mlr_tuners_successive_halving.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6b7b7ca

Please sign in to comment.