h2o.saveModelDetails {h2o} | R Documentation |
Save an H2O Model Details
Description
Save Model Details of an H2O Model in JSON Format
Usage
h2o.saveModelDetails(object, path = "", force = FALSE, filename = "")
Arguments
object |
an H2OModel object. |
path |
string indicating the directory the model details will be written to. |
force |
logical, indicates how to deal with files that already exist. |
filename |
string indicating the file name. (Type of file is always .json) |
Details
Model Details will download as a JSON file. In the case of existing files force = TRUE
will overwrite the file. Otherwise, the operation will fail.
Examples
## Not run:
# 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.saveModelDetails(object = prostate_glm, path = "/Users/UserName/Desktop", force = TRUE)
## End(Not run)
[Package h2o version 3.44.0.3 Index]