h2o (version 3.28.0.2)

h2o.get_automl: Get an R object that is a subclass of '>H2OAutoML

Description

Get an R object that is a subclass of '>H2OAutoML

Usage

h2o.get_automl(project_name)

h2o.getAutoML(project_name)

Arguments

project_name

A string indicating the project_name of the automl instance to retrieve.

Value

Returns an object that is a subclass of '>H2OAutoML.

Examples

Run this code
# NOT RUN {
library(h2o)
h2o.init()
votes_path <- system.file("extdata", "housevotes.csv", package = "h2o")
votes_hf <- h2o.uploadFile(path = votes_path, header = TRUE)
aml <- h2o.automl(y = "Class", project_name="aml_housevotes",
                  training_frame = votes_hf, max_runtime_secs = 30)
automl_retrieved <- h2o.get_automl("aml_housevotes")
# }

Run the code above in your browser using DataCamp Workspace