skip to Main Content

Json – Saving H2O GridSeach as CSV

I have the following code: import h2o from h2o.estimators.gbm import H2OGradientBoostingEstimator from h2o.grid.grid_search import H2OGridSearch h2o.init() data=h2o.import_file('dataset.csv') train,test= train.split_frame(ratios=[0.8]) n_trees = [50, 100, 200, 300] max_depth = [5, 6, 7] learn_rate = [0.01, 0.05, 0.1] min_rows = [10,15,20] min_split_improvement =…

VIEW QUESTION
Back To Top
Search