How to compute conditional permutation importance from h2o.gbm
?
I have a data set with many highly correlated variables(>0.9). And fed this data set to h2o.gbm
. As it turned out, RMSE increases (on CV) when I drop down correlated variables.
Now I'm trying to get variable importance and found just this function: h2o.varimp()
. Which is (I guess) differs from classic party::varimp(model, conditional = T)
.