h2o (version 3.10.3.6)

h2o.saveModel: Save an H2O Model Object to Disk

Description

Save an to disk.

Usage

h2o.saveModel(object, path = "", force = FALSE)

Arguments

object
an object.
path
string indicating the directory the model will be written to.
force
logical, indicates how to deal with files that already exist.

Details

In the case of existing files force = TRUE will overwrite the file. Otherwise, the operation will fail.

See Also

h2o.loadModel for loading a model to H2O from disk

Examples

Run this code
## Not run: ------------------------------------
# # library(h2o)
# # h2o.init()
# # prostate.hex <- h2o.importFile(path = paste("https://raw.github.com",
# #    "h2oai/h2o-2/master/smalldata/logreg/prostate.csv", sep = "/"),
# #    destination_frame = "prostate.hex")
# # prostate.glm <- h2o.glm(y = "CAPSULE", x = c("AGE","RACE","PSA","DCAPS"),
# #    training_frame = prostate.hex, family = "binomial", alpha = 0.5)
# # h2o.saveModel(object = prostate.glm, path = "/Users/UserName/Desktop", force=TRUE)
## ---------------------------------------------

Run the code above in your browser using DataLab