保持恒定的列水

时间:2018-11-08 06:16:44

标签: r machine-learning h2o gbm

我正在尝试使用R的h2o软件包来实现梯度提升机模型。但是,该模型会不断删除我从其他模型集了解的某个列,该列很重要。

 Warning message:
    In .h2o.startModelJob(algo, params, h2oRestApiVersion) :
      Dropping bad and constant columns:['mycolumn']

如何阻止h2o删除此列?这是我尝试过的:

gbm_fit<-h2o.gbm(x,y,train_set,nfolds = 10,
                 ntrees = 250,
                 learn_rate = 0.15,
                 max_depth = 7,
                             validation_frame = validate_set,seed = 233,
                ignore_const_cols = F
                )

1 个答案:

答案 0 :(得分:1)

确保列类正确并且被函数接受。