Skip to content

Commit

Permalink
version bumps (#78)
Browse files Browse the repository at this point in the history
Co-authored-by: ‘topepo’ <‘mxkuhn@gmail.com’>
  • Loading branch information
topepo and ‘topepo’ authored Feb 14, 2024
1 parent 143614c commit da9046c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: brulee
Title: High-Level Modeling Functions with 'torch'
Version: 0.2.0.9000
Version: 0.3.0
Authors@R: c(
person("Max", "Kuhn", , "max@posit.co", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2402-136X")),
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# brulee (development version)
# brulee 0.3.0

* Fixed bug where `coef()` didn't would error if used on a `brulee_logistic_reg()` that was trained with a recipe. (#66)

* Fixed a bug where SGD always being used as the optimizer (#61).

* Additional activation functions were added (#74).

# brulee 0.2.0

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ predict(nn_log_biv, bivariate_test, type = "prob") %>%
#> # A tibble: 1 × 3
#> .metric .estimator .estimate
#> <chr> <chr> <dbl>
#> 1 roc_auc binary 0.410
#> 1 roc_auc binary 0.837
```

A recipe can also be used if the data require some sort of preprocessing
Expand All @@ -88,7 +88,7 @@ predict(nn_rec_biv, bivariate_test, type = "prob") %>%
#> # A tibble: 1 × 3
#> .metric .estimator .estimate
#> <chr> <chr> <dbl>
#> 1 roc_auc binary 0.708
#> 1 roc_auc binary 0.866
```

## Code of Conduct
Expand Down

0 comments on commit da9046c

Please sign in to comment.