control_h2o | R Documentation |
'control_h2o' provides a function to set various aspects of the grid search process. By default during tuning, the resampling predictions are stored within the h2o cluster. To save memory and space, use 'save_pred = FALSE'. “
control_h2o( verbose = FALSE, save_pred = FALSE, save_models = FALSE, event_level = "first" )
verbose |
A logical for logging results as they are generated. |
save_pred |
A logical for whether the out-of-sample predictions should be saved for each model evaluated. |
save_models |
A logical for whether to retain the models associated with the tuning and resampling iterations within the h2o cluster and append their h2o model ids to the resamples object as a '.models' column. |
An object of 'control_grid' and 'control_resamples' class.
# to save space in the cluster use these settings (the defaults) control_h2o(verbose = TRUE, save_pred = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.