Nothing
#| child: aaa.Rmd #| include: false
r descr_models("multinom_reg", "keras")
#| label: keras-param-info #| echo: false defaults <- tibble::tibble(parsnip = c("penalty"), default = c("0.0")) param <- multinom_reg() |> set_engine("keras") |> make_parameter_list(defaults)
This model has one tuning parameter:
#| label: keras-param-list #| echo: false #| results: asis param$item
For penalty
, the amount of regularization is only L2 penalty (i.e., ridge or weight decay).
#| label: keras-csl multinom_reg(penalty = double(1)) |> set_engine("keras") |> translate()
[keras_mlp()] is a parsnip wrapper around keras code for neural networks. This model fits a linear regression as a network with a single hidden unit.
#| child: template-makes-dummies.Rmd
#| child: template-same-scale.Rmd
#| child: template-no-case-weights.Rmd
#| child: template-bundle.Rmd
The "Fitting and Predicting with parsnip" article contains examples for multinom_reg()
with the "keras"
engine.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.