我试图以下列方式为多类问题运行h2o automl模型
h2o.automl(y = result,
training_frame = train,
max_runtime_secs = 30,
sort_metric = "logloss")
但我最终收到错误
h2o.automl出错(y =结果,training_frame = train_to_model,max_runtime_secs = 30,: 未使用的参数(sort_metric =" logloss")
基于http://docs.h2o.ai/h2o/latest-stable/h2o-docs/data-science/algo-params/sort_metric.html中的文档,我应该能够在多类分类问题中使用logloss,但我无法做到。
我的h2o版本是3.18.0.11,R版本是3.4.1
你能告诉我为什么会这样吗?谢谢!