h2o (version 3.10.3.6)

h2o.download_mojo: Download the model in MOJO format.

Description

Download the model in MOJO format.

Usage

h2o.download_mojo(model, path = getwd(), get_genmodel_jar = FALSE)

Arguments

model
An H2OModel
path
The path where MOJO file should be saved. Saved to current directory by default.
get_genmodel_jar
If TRUE, then also download h2o-genmodel.jar and store it in folder ``path``.

Value

Name of the MOJO file written to the path.

Examples

Run this code
library(h2o)
h <- h2o.init(nthreads=-1)
fr <- as.h2o(iris)
my_model <- h2o.gbm(x=1:4, y=5, training_frame=fr)
h2o.download_mojo(my_model)  # save to the current working directory

Run the code above in your browser using DataCamp Workspace