错误信息:
DeepLearning模型的参数非法:dl_model_faster。
详细信息:ERRR字段:_stopping_metric:停止度量不能归类为回归。
我收到此错误,但实际上我在使用h2o.deeplearning处理分类问题,我不想运行回归模型。我该如何指定?
最佳答案
我对h2o.deeplearning()有相同的错误。将因变量转换为因数,然后将数据提供给h2o.deeplearning()为我修复了它。
dataset$dependent_variable= factor(dataset$dependent_variable,levels = c(0, 1), labels = c(0, 1))
关于r - r-使用h2o.deeplearning时出现错误消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44947850/