h2o.download_mojo: Download the model in MOJO format.

View source: R/kvstore.R

h2o.download_mojoR Documentation

Download the model in MOJO format.

Description

Download the model in MOJO format.

Usage

h2o.download_mojo(
  model,
  path = getwd(),
  get_genmodel_jar = FALSE,
  genmodel_name = "",
  genmodel_path = "",
  filename = ""
)

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 either in the same folder as the MOJO or in “genmodel_path“ if specified.

genmodel_name

Custom name of genmodel jar.

genmodel_path

Path to store h2o-genmodel.jar. If left blank and “get_genmodel_jar“ is TRUE, then the h2o-genmodel.jar is saved to “path“.

filename

string indicating the file name. (Type of file is always .zip)

Value

Name of the MOJO file written to the path.

Examples

## Not run: 
library(h2o)
h <- h2o.init()
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

## End(Not run)

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