如何使用-Xmx
选项运行H2O实例?
我正在R上使用h2o库在一个训练集819044行和37个特征上运行随机森林回归模型。总大小为47.9 KB。
验证数据的大小为45.5 KB
我的系统中有16GB的RAM和8核CPU。
我正在使用以下命令来构建模型:
RF=h2o.randomForest(3:37,
1,
training_frame = app_set,
validation_frame = test_set,nfolds = 4,
ignore_const_cols = F,
ntree=500
)
但是半个小时后,我看到了这个错误:
error in .h2o.doSafeREST(h2oRestApiVersion = h2oRestApiVersion, urlSuffix = urlSuffix, :
Unexpected CURL error: Could not resolve host: localhost
我已阅读到运行H2O实例时必须使用-Xmx
选项,但是我该怎么做?