h2o.glm lambda search not appearing to iterate over all lambdas

后端 未结 2 494
离开以前
离开以前 2021-01-14 02:35

Please consider the following basic reproducible example:

library(h2o)
h2o.init()
data(\"iris\")
iris.hex = as.h2o(iris, \"iris.hex\")
mod = h2o.glm(y = \"Se         


        
2条回答
  •  佛祖请我去吃肉
    2021-01-14 02:55

    Short answer: you've found a bug and we've opened a ticket here. The early stopping flag is not being honored when nfolds > 0. In the meantime, if you don't set nfolds, you should get 100 lambdas.

提交回复
热议问题