Arguments
algorithm
Name of algorithm to use in grid search (gbm, randomForest, kmeans, glm, deeplearning, naivebayes, pca).
grid_id
(Optional) ID for resulting grid search. If it is not specified then it is autogenerated.
...
arguments describing parameters to use with algorithm (i.e., x, y, training_frame).
Look at the specific algorithm - h2o.gbm, h2o.glm, h2o.kmeans, h2o.deepLearning - for available parameters.
hyper_params
List of lists of hyper parameters (i.e., list(ntrees=c(1,2), max_depth=c(5,7))
).
is_supervised
(Optional) If specified then override the default heuristic which decides if the given algorithm
name and parameters specify a supervised or unsupervised algorithm.
do_hyper_params_check
Perform client check for specified hyper parameters. It can be time expensive for
large hyper space.
search_criteria
(Optional) List of control parameters for smarter hyperparameter search. The default
strategy 'Cartesian' covers the entire space of hyperparameter combinations. Specify the
'RandomDiscrete' strategy to get random search of all the combinations of your