R/export.R
h2o.saveMojo.RdSave an MOJO (Model Object, Optimized) to disk.
h2o.saveMojo(object, path = "", force = FALSE)an H2OModel object.
string indicating the directory the model will be written to.
logical, indicates how to deal with files that already exist.
MOJO will download as a zip file. In the case of existing files force = TRUE
will overwrite the file. Otherwise, the operation will fail.
h2o.saveModel for saving a model to disk as a binary object.
if (FALSE) { # \dontrun{
# library(h2o)
# h2o.init()
# prostate <- h2o.uploadFile(path = system.file("extdata", "prostate.csv", package="h2o"))
# prostate_glm <- h2o.glm(y = "CAPSULE", x = c("AGE", "RACE", "PSA", "DCAPS"),
# training_frame = prostate, family = "binomial", alpha = 0.5)
# h2o.saveMojo(object = prostate_glm, path = "/Users/UserName/Desktop", force = TRUE)
} # }