使用h2o时,我从非空模型得到了空Mojo模型

时间:2018-09-11 06:45:15

标签: h2o

我正在使用h2o训练我的数据。我想获得mojo模型,但失败了。 这是我的代码:

DRFV3 drfBody = h2o.train_drf(drfParams);
JobV3 job = h2o.waitForJobCompletion(drfBody.job.key);
ModelKeyV3 modelKey = (ModelKeyV3) job.dest;
ModelsV3 models = h2o.model(modelKey);
DRFModelV3 model = (DRFModelV3) models.models[0];
ModelExportV3 modelExportV3 = h2o.exportMojo(model.modelId);

但是当modelExportV3不为空时,结果model为空。

enter image description here

我可以在Web流UI中看到刚才创建的模型。

enter image description here

但是当我使用rest api获取mojo模型时,它将引发异常。

enter image description here

为什么? 我会用错吗?如果是这样,我如何在训练后获得mojo模型?

0 个答案:

没有答案