Closed qiushiyan closed 2 years ago
This PR adds more parsnip models and their test cases, the related h2o functions are
linear_reg
h2o.glm(family = "gaussian")
multinom_reg
h2o.glm(family = "multinomial")
mlp
h2o.deeplearning
naive_Bayes()
h2o.naiveBayes
rule_fit
h2o.rulefit
This PR also addresses
validation
validation_frame
This pull request has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
This PR adds more parsnip models and their test cases, the related h2o functions are
linear_reg
->h2o.glm(family = "gaussian")
multinom_reg
->h2o.glm(family = "multinomial")
mlp
->h2o.deeplearning
naive_Bayes()
->h2o.naiveBayes
rule_fit
->h2o.rulefit
This PR also addresses
17 handle naming differences of mlp activation functions
18 allow passing in
validation
as split proportion and pass asvalidation_frame
to h2o