Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tune
Title: Tidy Tuning Tools
Version: 2.0.1.9004
Version: 2.1.0
Authors@R: c(
person("Max", "Kuhn", , "max@posit.co", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2402-136X")),
Expand All @@ -19,7 +19,7 @@ Depends:
R (>= 4.1)
Imports:
cli (>= 3.3.0),
dials (>= 1.3.0.9000),
dials (>= 1.4.3),
dplyr (>= 1.1.0),
GauPro (>= 0.2.15),
generics (>= 0.1.2),
Expand All @@ -28,19 +28,19 @@ Imports:
hardhat (>= 1.4.2),
lifecycle,
parallel,
parsnip (>= 1.4.1.9002),
parsnip (>= 1.5.0),
purrr (>= 1.0.0),
recipes (>= 1.1.0.9001),
recipes (>= 1.3.2),
rlang (>= 1.1.4),
rsample (>= 1.3.0.9003),
rsample (>= 1.3.2),
tailor (>= 0.1.0),
tibble (>= 3.1.0),
tidyr (>= 1.2.0),
tidyselect (>= 1.1.2),
vctrs (>= 0.6.1),
withr,
workflows (>= 1.3.0),
yardstick (>= 1.3.2.9000)
yardstick (>= 1.4.0)
Suggests:
C50,
censored (>= 0.3.0),
Expand All @@ -61,9 +61,6 @@ Suggests:
testthat (>= 3.0.0),
xgboost,
xml2
Remotes:
tidymodels/parsnip,
tidymodels/yardstick
Config/Needs/website: pkgdown, tidymodels, kknn, tidyverse/tidytemplate
Config/testthat/edition: 3
Encoding: UTF-8
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tune (development version)
# tune 2.1.0

* Model tuning has been enabled for quantile regression models. (#1125)

Expand Down Expand Up @@ -189,7 +189,7 @@ tune 1.1.0 introduces a number of new features and bug fixes, accompanied by var

## Other changes

* Implemented various optimizations in tune's backend that [substantially decrease the total evaluation time](https://www.simonpcouch.com/blog/speedups-2023/#tidymodels) to tune hyperparameters with the tidymodels. (#634, #635, #636, #637, #640, #641, #642, #648, #649, #653, #656, #657)
* Implemented various optimizations in tune's backend that [substantially decrease the total evaluation time](https://simonpcouch.com/blog/2023-03-24-speedups-2023/index.html) to tune hyperparameters with the tidymodels. (#634, #635, #636, #637, #640, #641, #642, #648, #649, #653, #656, #657)

* Allowed users to supply list-columns in `grid` arguments. This change allows for manually specifying grid values that must be contained in list-columns, like functions or lists. (#625)

Expand Down
Loading