每当我尝试运行h2o gbm时,我都会遇到此错误:
Error in h2o::h2o.gbm(y = y, x = x, training_frame = h2of, weights_column = wcol, :
object 'wcol' not found
我尝试重新安装h2o,但是我刚遇到此错误。
data(BostonHousing, package = "mlbench")
regr.task = makeRegrTask(id = "bh", data = BostonHousing, target = "medv")
lrn = makeLearner("regr.h2o.gbm")
outer = makeResampleDesc("Holdout")
r = resample(
learner = lrn,
task = regr.task,
resampling = outer,
show.info = TRUE
)