Preservation of deep learning model built using h2o

I built a deep training model using h2o in R. I saved the model using the command

save(model,file="my_model.RData")

But now, when I predict the use of the saved model, it gives me an error message. I had to save the model using h2o.savemodel.

h2o.savemodel(model)

Is there a way around it so that I can use my model now for forecasting?

+4
source share
1 answer

H2O, , . , R, model = h2o.getModel("theModelId") ( , , "my_model".RData ").

, , , , . .

: , , , , model R - , . R, H2O, H2O.

+3

Source: https://habr.com/ru/post/1660761/


All Articles