我尝试使用下一个代码在R中保存h2o模型:
uip = tk.Label(self, text="Updating in Progress ")
uip.grid(row=5, sticky="W")
updatebar = ttk.Progressbar(self,orient ="horizontal",length = 200, mode ="determinate")
updatebar.grid(row=5, column=1, sticky="W"+"E")
updatebar["maximum"] = 100
updatebar["value"] = 50
fip = tk.Label(self, text="Fetching in Progress ")
fip.grid(row=5, column=2, sticky="W")
fetchbar = ttk.Progressbar(self,orient ="horizontal",length = 200, mode ="determinate")
fetchbar.grid(row=5, column=3, sticky="W"+"E")
fetchbar["maximum"] = 100
fetchbar["value"] = 50
但是我收到了错误:
h2o.saveModel(myModel, path = "myPath/models")
我已经检查了this question,但它没有解决我的问题。
是否有人能够在R中保存h2o模型?如果不是,我将在关闭会话时丢失模型。
答案 0 :(得分:0)
使用以下代码,有时会发生无法识别模型ID的情况,因此,如果您执行force = TRUE,它将起作用。我也面临着同样的错误,它对我有用。
model_path <- h2o.saveModel(myModel, path = "myPath/models", force=TRUE)
H2o官方网站的链接如下:- http://docs.h2o.ai/h2o/latest-stable/h2o-docs/save-and-load-model.html