Skip to content

Commit

Permalink
Merge branch 'main' into params-39
Browse files Browse the repository at this point in the history
  • Loading branch information
topepo authored Jan 24, 2024
2 parents dfcd6d7 + 1f670ad commit 7ada18e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

* Fixed bug where `tune_sim_anneal()` would fail when supplied parameters needing finalization. The function will now finalize needed parameter ranges internally (#39).

* Fixed bug where packages specified in `control_race(pkgs)` were not actually loaded in `tune_race_anova()` (#74).

* `autoplot()` methods for racing objects will now use integers in x-axis breaks (#75).

* Enabling the `verbose_elim` control option for `tune_race_anova()` will now additionally introduce a message confirming that the function is evaluating against the burn-in resamples.
Expand Down
2 changes: 1 addition & 1 deletion R/tune_race_anova.R
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ tune_race_anova_workflow <-
metrics <- tune::check_metrics_arg(metrics, object, call = call)
eval_time <- tune::check_eval_time_arg(eval_time, metrics, call = call)

control$pkgs <- c(tune::required_pkgs(object), "workflows", "tidyr", "rlang")
control$pkgs <- c(control$pkgs, tune::required_pkgs(object), "workflows", "tidyr", "rlang")

if (control$verbose_elim) {
tune_cols <- tune::get_tune_colors()
Expand Down

0 comments on commit 7ada18e

Please sign in to comment.