Closed
Description
I think there is an error in the documentation for the learn_rate param in details_mlp_brulee. I think the learn_rate should be 0.01 not 100L, and epochs should be 100L.
I see the documentation in this file: man/rmd/mlp_brulee.Rmd
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"))
param <-
mlp() %>%
set_engine("brulee") %>%
make_parameter_list(defaults)