h2o.download_model: Download the model in binary format. The owner of the file...

View source: R/kvstore.R

h2o.download_modelR Documentation

Download the model in binary format. The owner of the file saved is the user by which python session was executed.

Description

Download the model in binary format. The owner of the file saved is the user by which python session was executed.

Usage

h2o.download_model(
  model,
  path = NULL,
  export_cross_validation_predictions = FALSE,
  filename = ""
)

Arguments

model

An H2OModel

path

The path where binary file should be downloaded. Downloaded to current directory by default.

export_cross_validation_predictions

A boolean flag indicating whether the download model should be saved with CV Holdout Frame predictions. Default is not to export the predictions.

filename

string indicating the file name.

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_model(my_model)  # save to the current working directory

## End(Not run)

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