The ML.TRIAL_INFO function

This document describes the ML.TRIAL_INFO function, which lets you display information about trials from a model that uses hyperparameter tuning.

Syntax

ML.TRIAL_INFO(MODEL `project_id.dataset.model`)

Arguments

ML.TRIAL_INFO takes the following arguments:

Output

ML.TRIAL_INFO returns one row per trial with the following columns:

Example

The following query retrieves information of all trials for the model mydataset.mymodel in your default project:

SELECT
  *
FROM
  ML.TRIAL_INFO(MODEL `mydataset.mymodel`)

What's next