powered by
Download the model in binary format.
h2o.download_model(model, path = NULL)
An H2OModel
The path where binary file should be downloaded. Downloaded to current directory by default.
# 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