Skip to content

Commit

Permalink
fix defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
hfrick committed Nov 6, 2023
1 parent b462f76 commit 74ff906
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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", "0.01", "100L", "'relu'", "0.0"))
default = c("3L", "0.0", "0.0", "100L", "0.01", "'relu'", "0.0"))
param <-
mlp() %>%
Expand Down
4 changes: 2 additions & 2 deletions man/rmd/mlp_brulee.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ This model has 7 tuning parameters:

- `mixture`: Proportion of Lasso Penalty (type: double, default: 0.0)

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

- `dropout`: Dropout Rate (type: double, default: 0.0)

- `learn_rate`: Learning Rate (type: double, default: 100L)
- `learn_rate`: Learning Rate (type: double, default: 0.01)

- `activation`: Activation Function (type: character, default: 'relu')

Expand Down

0 comments on commit 74ff906

Please sign in to comment.