h2o.list_models: Get an list of all model ids present in the cluster

View source: R/kvstore.R

h2o.list_modelsR 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)

h2o documentation built on Aug. 9, 2023, 9:06 a.m.