Hi Rcom
I am new to the h2o package, but tried some grid search
we will now extract the grid result, sort the models by their RMSE score and pull the lead model
´´´
rf2_grid_search <- h2o.getGrid(grid_id = "rf_grid",
sort_by = "rmse" ,
decreasing = FALSE)
print(rf2_grid_search)
rf_grid_search <- h2o.getGrid(rf2_grid_search@model_ids[[1]])
´´´
But get an error:
´´´
ERROR MESSAGE:
Expected a Grid for key argument: grid_id with value: rf_grid_model_18. Found a: DRFModel
´´´
why cant i fetch the model with the lowest RMSE with "rf2_grid_search@model_ids[[1]])" 1 being the model with lowest RMSE
Thansk