h2o.list_models {h2o} | R Documentation |
Get an list of all model ids present in the cluster
Description
Get an list of all model ids present in the cluster
Usage
h2o.list_models()
Value
Returns a vector of model ids.
Examples
## Not run:
library(h2o)
h2o.init()
iris_hf <- as.h2o(iris)
model_id <- h2o.gbm(x = 1:4, y = 5, training_frame = iris_hf)@model_id
model_id_list <- h2o.list_models()
## End(Not run)
[Package h2o version 3.44.0.3 Index]