Automatic Machine Learning

Using H2O AutoML Workflow

  1. Prep work: I load my data, point out the target column “Life expectancy”, and impute missing values.
  2. Let H2O do its magic: AutoML takes over, and benchmarks hundreds of different models using cross-validation. Here are the top performers:
model_idrmsemsemaermslemean_residual_deviance
StackedEnsemble_AllModels_5_AutoML_8_20240523_1232561.51412.29260.78620.02352.2926
StackedEnsemble_AllModels_4_AutoML_8_20240523_1232561.52102.31340.83630.02362.3134
StackedEnsemble_AllModels_3_AutoML_8_20240523_1232561.56122.43740.85300.02412.4374
GBM_grid_1_AutoML_8_20240523_123256_model_111.56552.45090.86010.02422.4509
  1. Explainability: Models can be used more effectively if you know why they perform well. Here are some explainability charts for top-performing models.

  2. Put it to work: I export the chosen model and use it to make predictions on new data.