View source: R/list_hyperparameter.R
list_hyperparameter | R Documentation |
Detects columns in a data frame that contain hyperparameters for H2O DRF/GBM algorithms and returns a list with the unique values from each parameter column.
list_hyperparameter(df)
df |
A data frame containing model results with hyperparameter columns. |
This function scans the column names of the input data frame for common H2O hyperparameter names, such as "ntrees", "max_depth", "min_rows", "sample_rate", "col_sample_rate_per_tree", "min_split_improvement", "learn_rate", "mtries", and "seed". It extracts the unique values from each matching column and returns them in a list. The resulting list can be used as a hyperparameter grid for tuning via H2O grid search functions.
A named list where each hyperparameter element is a vector of unique values for a hyperparameter.
E. F. Haghish
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.