Learn R Programming

h2o (version 2.8.4.4)

doNotCallThisMethod...Unsupported: Internal method used for testing at the API level.

Description

Fetches all of the model JSON for the model key passed in.

Usage

doNotCallThisMethod...Unsupported(h2o, key)

Arguments

h2o
An h2o object returned from h2o.init() that represents the connection to the h2o cloud.
key
Any valid model key that exists in the h2o cluster.

Value

  • A blob of JSON.

Examples

Run this code
library(h2o)
localH2O = h2o.init()
hex <- as.h2o(localH2O, iris)
m <- h2o.randomForest(x = 1:4, y = 5, data = hex)
doNotCallThisMethod...Unsupported(localH2O, m@key)

Run the code above in your browser using DataLab