gpt4 book ai didi

r - 使用 mlr 预测错误 :

转载 作者:行者123 更新时间:2023-12-02 01:35:37 26 4
gpt4 key购买 nike

我尝试使用以下代码训练 h2o 模型并对新数据进行预测,但这会导致错误。如何避免这个错误?

library(mlr)
a <- data.frame(y=factor(c(1,1,1,1,1,1,1,1,0,0,1,0)),
x1=rep(c("a","b","c"), times=c(6,3,3)))
aTask <- makeClassifTask(data = a, target = "y", positive = "1")
h2oLearner <- makeLearner("classif.h2o.deeplearning",
predict.type = "prob")
model <- train(h2oLearner, aTask)

b <- data.frame(x1=rep(c("a","b", "c"), times=c(3,5,4)))
pred <- predict(model, newdata=b)

导致以下错误:

Error in checkPredictLearnerOutput(.learner, .model, p) :
predictLearner for classif.h2o.deeplearning has returned not the class levels as column names: p0,p1

如果我将 Predict.type 更改为“response”,它就会起作用。那么如何预测概率呢?

最佳答案

此错误已在 this commit 中修复并将在下一个版本中出现。在此之前,您可以安装 Github 版本:

devtools::install_github("mlr-org/mlr")

关于r - 使用 mlr 预测错误 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45009855/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com