Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 R 中创建了模型并将模型保存在 .rds 文件中。我需要在 h2o 中加载保存的模型。有人可以建议执行此操作的方法吗?
您需要使用h2o.saveModelandh2o.loadModel函数而不是base::save()R 中的函数。
h2o.saveModel
h2o.loadModel
base::save()
H2O 中的模型不存储在 R 内存中,它们存储在 H2O 集群内存中,因此使用save()不足以保存 H2O 模型。
save()