r descr_models("multinom_reg", "h2o")

Tuning Parameters

defaults <- 
  tibble::tibble(parsnip = c("penalty", "mixture"),
                 default = c("see below", "see below"))

param <-
multinom_reg() %>% 
  set_engine("h2o") %>% 
  make_parameter_list(defaults)

This model has r nrow(param) tuning parameters:

param$item

Translation from parsnip to the original package

[agua::h2o_train_glm()] for multinom_reg() is a wrapper around [h2o::h2o.glm()] with family = 'multinomial'.

multinom_reg(penalty = double(1), mixture = double(1)) %>% 
  set_engine("h2o") %>% 
  translate()

Preprocessing requirements



By default, [h2o::h2o.glm()] uses the argument standardize = TRUE to center and scale the data.

Initializing h2o




Try the parsnip package in your browser

Any scripts or data that you put into this service are public.

parsnip documentation built on Aug. 18, 2023, 1:07 a.m.