Previous Next

View an Experiment

In the AutoML UI Experiments page, all the experiments that you have created are listed. Each experiment will be in one of the following stages: Completed, Running, and Ready.

To view an experiment, click the experiment name. The Experiment page displays the details of the selected experiment. It contains the following sections:

Edit Experiment

In this section, you can edit the selected experiment. Click Edit to make edits to your experiment.

Note: You cannot edit an experiment that is running.

Metric Chart

The Model Metric Chart depicts the best metric value over time as the experiment runs. It shows improvement in accuracy as the running of the experiment progresses. The display name depends on the selected model metric when you create the experiment.

Leader Board

When an experiment runs, it starts to show the results in the Leader Board. The Leader Board displays the top performing models relative to the model metric selected along with the algorithm and accuracy. You can view the model details and perform the following tasks:

Figure 10: Leader Board

Description of the illustration leaderboard.png

Features

The Features grid displays the statistics of the selected table for the experiment.The supported statistics are Distinct Values, Minimum, Maximum, Mean, and Standard Deviation. The supported data sources for Features are tables, views and analytic views. The target column that you selected in Predict is highlighted here. After an experiment run is completed, the Features grid displays an additional column Importance. Feature Importance indicates the overall level of sensitivity of prediction to a particular feature. Hover your cursor over the graph to view the value of Importance. The value is always depicted in the range 0 to 1, with values closer to 1 being more important.

Figure 11: Features

Description of the illustration feature-importance.png

Create Notebooks from AutoML UI Models

You can create notebooks using OML4Py code that will recreate the selected model using the same settings. It also illustrates how to score data using the model. This option is helpful if you want to use the code to re-create a similar machine learning model.

To create a notebook from an AutoML UI model:

  1. Select the model on the Leader Board based on which you want to create your notebook, and click Create Notebook. The Create Notebook dialog opens.

    Figure 12: Create Notebook dialog

    Description of the illustration create_notebook_model.png

  2. In the Notebook Name field, enter a name for your notebook.

    The REST API endpoint derives the experiment metadata, and determines the following settings as applicable:

    • Data Source of the experiment (schema.table)

    • Case ID. If the Case ID for the experiment is not available, then the appropriate message is displayed.

    • A unique model name based on the current model name is generated

    • Information related to scoring paragraph:

      • Case ID: If available, then it merges the Case ID column into the scoring output table

      • Generate unique predict output table name based on build data source and unique suffix

      • Prediction column name: PREDICTION

      • Prediction probability column name: PROBABILITY (applicable only for Classification)

  3. Click OK. The generated notebook is listed in the Notebook page. Click to open the notebook

    The generated notebook displays paragraph titles for each paragraph along with the python codes. Once you run the notebook, it displays information related to the notebook as well as the AutoML experiment such as the experiment name, workspace and project in which the notebook is present, the user, data, prediction type and prediction target, algorithm, and the time stamp when the notebook is generated.

    Figure 13: AutoML UI Generated notebook

    Description of the illustration automl-ui-generated-notebook.png