You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #863 we changed the way the dots work. But it also breaks select_best() which we don't explicitly mention. I think we should mention this breakage as well as I used it a few times
library(tune)
data("example_ames_knn")
# Both used to work
select_best(ames_iter_search, "rmse")
#> Error in `select_best()`:#> ! `...` must be empty.#> ✖ Problematic argument:#> • ..1 = "rmse"#> ℹ Did you forget to name an argument?
select_best(ames_iter_search, metric="rmse")
#> # A tibble: 1 × 6#> K weight_func dist_power lon lat .config #> <int> <chr> <dbl> <int> <int> <chr> #> 1 33 triweight 0.511 10 3 Preprocessor10_Model1
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
In #863 we changed the way the dots work. But it also breaks
select_best()
which we don't explicitly mention. I think we should mention this breakage as well as I used it a few timesCreated on 2024-03-15 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: