Nothing
#| child: aaa.Rmd #| include: false
r descr_models("mlp", "qrnn")
#| label: qrnn-param-info #| echo: false defaults <- tibble::tibble(parsnip = c("hidden_units", "penalty", "epochs","activation"), default = c("2L", "0.0", "5000L", "'sigmoid'")) spec <- mlp( hidden_units = tune(), penalty = tune(), epochs = tune(), activation = tune() ) |> set_engine("qrnn") param <- spec |> make_parameter_list(defaults)
This model has r nrow(param) tuning parameters:
#| label: qrnn-param-list #| echo: false #| results: asis param$item
Other engine arguments of interest:
n.trials: number of repeated trials used to avoid local minima.method: The optimization technique ("nlm" or "adam").#| label: qrnn-qnt mlp( hidden_units = integer(1), penalty = double(1), epochs = integer(1), activation = character(1) ) |> set_engine("qrnn") |> set_mode("quantile regression", quantile_levels = (1:3) / 4) |> translate()
#| child: template-makes-dummies.Rmd
#| child: template-same-scale.Rmd
#| child: template-no-case-weights.Rmd
#| label: predict-types parsnip:::get_from_env("mlp_predict") |> dplyr::filter(engine == "qrnn") |> dplyr::select(mode, type)
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.