I\'m catching up on h2o
\'s MOJO and POJO model format. I\'m able to save a model in MOJO/POJO with
h2o.download_mojo(model, path = \"/media/somewhe
If you are looking to make predictions on an H2O model in R, then you have three options (which method you choose depends on your use-case):
predict(model, test)
. This method requires having an H2O cluster running.