Skip to content

Commit

Permalink
brulee::brulee_mlp() penalty default is 0.001 (#1122)
Browse files Browse the repository at this point in the history
- docs currently define penalty = 0.0 as default value

Signed-off-by: Kyle Scott <[email protected]>
  • Loading branch information
kscott-1 authored May 23, 2024
1 parent 8880aff commit 37d62d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion man/rmd/mlp_brulee.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
```{r brulee-param-info, echo = FALSE}
defaults <-
tibble::tibble(parsnip = c("hidden_units", "penalty", "dropout", "epochs", "learn_rate", "activation", "mixture"),
default = c("3L", "0.0", "0.0", "100L", "0.01", "'relu'", "0.0"))
default = c("3L", "0.001", "0.0", "100L", "0.01", "'relu'", "0.0"))
param <-
mlp() %>%
Expand Down
2 changes: 1 addition & 1 deletion man/rmd/mlp_brulee.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This model has 6 tuning parameters:

- `hidden_units`: # Hidden Units (type: integer, default: 3L)

- `penalty`: Amount of Regularization (type: double, default: 0.0)
- `penalty`: Amount of Regularization (type: double, default: 0.001)

- `epochs`: # Epochs (type: integer, default: 100L)

Expand Down

0 comments on commit 37d62d1

Please sign in to comment.