Driverless AI with H2O-3 AlgorithmsΒΆ

Driverless AI already supports a variety of algorithms. This example shows how you can use our h2o-3-models-py recipe to include H2O-3 supervised learning algorithms in your experiment. The available H2O-3 algorithms in the recipe include:

  • Naive Bayes

  • GBM

  • Random Forest

  • Deep Learning

  • GLM

  • AutoML

Caution: Because AutoML is treated as a regular ML algorithm here, the runtime requirements can be large. We recommend that you adjust the max_runtime_secs parameters as suggested here: https://github.com/h2oai/driverlessai-recipes/blob/rel-1.9.0/models/algorithms/h2o-3-models.py#L45

  1. Start an experiment in Driverless AI by selecting your training dataset along with (optionally) validation and testing datasets and then specifying a Target Column. Notice the list of algorithms that will be used in the Feature evolution section of the experiment summary. In the example below, the experiment will use LightGBM and XGBoostGBM.

  2. Click on Expert Settings.

  3. Specify the custom recipe using one of the following methods:

  • On your local machine, clone the driverlessai-recipes repository, then use the Upload Custom Recipe button to upload the driverlessai-recipes/models/h2o-3-models.py file.

  • Click the Load Custom Recipe from URL button, then enter the URL for the Python file. (Both HTML and raw versions of the file are supported.)

Note: Click the Official Recipes (Open Source) button to browse the driverlessai-recipes repository.

Driverless AI will begin uploading and verifying the new custom recipe.

  1. In the Expert Settings page, specify any additional settings and then click Save. This returns you to the experiment summary.

  2. To include each of the new models in your experiment, return to the Expert Settings option. Click the Recipes > Include Specific Models option. Select the algorithm(s) that you want to include. Click Done to return to the experiment summary.

Notice the updated list of available algorithms in the experiment.

  1. Edit any additional experiment settings, and then click Launch Experiment.

Upon completion, you can download the Experiment Summary and review the Model Tuning section of the report.docx file to see how each of the algorithms compare.

Expert Settings example