h2o (version 3.44.0.3)

h2o.loadModel: Load H2O Model from HDFS or Local Disk

Description

Load a saved H2O model from disk. (Note that ensemble binary models can now be loaded using this method.)

Usage

h2o.loadModel(path)

Value

Returns a H2OModel object of the class corresponding to the type of model loaded.

Arguments

path

The path of the H2O Model to be imported.

See Also

h2o.saveModel, H2OModel

Examples

Run this code
if (FALSE) {
# library(h2o)
# h2o.init()
# prostate_path = system.file("extdata", "prostate.csv", package = "h2o")
# prostate = h2o.importFile(path = prostate_path)
# prostate_glm = h2o.glm(y = "CAPSULE", x = c("AGE", "RACE", "PSA", "DCAPS"),
#   training_frame = prostate, family = "binomial", alpha = 0.5)
# glmmodel_path = h2o.saveModel(prostate_glm, dir = "/Users/UserName/Desktop")
# glmmodel_load = h2o.loadModel(glmmodel_path)
}

Run the code above in your browser using DataLab