Skip to content

Commit

Permalink
RC 1.1.0 (#71)
Browse files Browse the repository at this point in the history
* doc and version updates

* remove due to ranger
  • Loading branch information
topepo authored Apr 19, 2023
1 parent 690e503 commit ee76106
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
1 change: 0 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
- {os: ubuntu-latest, r: 'oldrel-2'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 4 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Package: finetune
Title: Additional Functions for Model Tuning
Version: 1.0.1.9002
Version: 1.1.0
Authors@R: c(
person("Max", "Kuhn", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2402-136X")),
person(given = "Posit Software, PBC", role = c("cph", "fnd"))
person("Posit Software, PBC", role = c("cph", "fnd"))
)
Description: The ability to tune models is important. 'finetune' enhances
the 'tune' package by providing more specialized methods for finding
Expand All @@ -19,13 +19,13 @@ URL: https://github.com/tidymodels/finetune,
BugReports: https://github.com/tidymodels/finetune/issues
Depends:
R (>= 3.5),
tune (>= 1.0.1.9002)
tune (>= 1.1.1)
Imports:
cli,
dials (>= 0.1.0),
dplyr (>= 1.1.1),
ggplot2,
parsnip (>= 1.0.2),
parsnip (>= 1.1.0),
purrr,
rlang,
tibble,
Expand All @@ -49,8 +49,6 @@ Suggests:
spelling,
testthat,
yardstick
Remotes:
tidymodels/tune
Config/Needs/website: tidyverse/tidytemplate
Config/testthat/edition: 3
Encoding: UTF-8
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# finetune (development version)
# finetune 1.1.0

* Various minor changes to keep up with developments in the tune and dplyr packages (#60) (#62) (#67) (#68).

* Corrects `.config` output with `save_pred = TRUE` in `tune_sim_anneal()`. The function previously outputted a constant `Model1_Preprocessor1` in the `.predictions` slot, and now provides `.config` values that align with those in `.metrics` (#57).

Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,7 @@ grid_anova <-
#> ℹ Racing will maximize the roc_auc metric.
#> ℹ Resamples are analyzed in a random order.
#> ℹ Bootstrap10: 14 eliminated; 6 candidates remain.
#>
#> ℹ Bootstrap04: 2 eliminated; 4 candidates remain.
#>
#> ℹ Bootstrap03: All but one parameter combination were eliminated.

show_best(grid_anova, metric = "roc_auc", n = 2)
Expand All @@ -136,17 +134,11 @@ grid_win_loss<-
#> ℹ Racing will maximize the roc_auc metric.
#> ℹ Resamples are analyzed in a random order.
#> ℹ Bootstrap10: 3 eliminated; 17 candidates remain.
#>
#> ℹ Bootstrap04: 2 eliminated; 15 candidates remain.
#>
#> ℹ Bootstrap03: 2 eliminated; 13 candidates remain.
#>
#> ℹ Bootstrap01: 1 eliminated; 12 candidates remain.
#>
#> ℹ Bootstrap07: 1 eliminated; 11 candidates remain.
#>
#> ℹ Bootstrap05: 1 eliminated; 10 candidates remain.
#>
#> ℹ Bootstrap08: 1 eliminated; 9 candidates remain.

show_best(grid_win_loss, metric = "roc_auc", n = 2)
Expand Down

0 comments on commit ee76106

Please sign in to comment.