Learn R Programming

h2o (version 3.28.0.4)

h2o.download_model: Download the model in binary format.

Description

Download the model in binary format.

Usage

h2o.download_model(model, path = NULL)

Arguments

model

An H2OModel

path

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

Examples

Run this code
# 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
# }

Run the code above in your browser using DataLab