Skip to main content

trials_optimal_trials

Creates, updates, deletes, gets or lists a trials_optimal_trials resource.

Overview

Nametrials_optimal_trials
TypeResource
Idgoogle.ml.trials_optimal_trials

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
trialsarrayThe pareto-optimal trials for multiple objective study or the optimal trial for single objective study. The definition of pareto-optimal can be checked in wiki page. https://en.wikipedia.org/wiki/Pareto_efficiency

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_studies_trials_list_optimal_trialsselectprojectsId, locationsId, studiesIdLists the pareto-optimal trials for multi-objective study or the optimal trials for single-objective study. The definition of pareto-optimal can be checked in wiki page. https://en.wikipedia.org/wiki/Pareto_efficiency

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
projectsIdstring
studiesIdstring

SELECT examples

Lists the pareto-optimal trials for multi-objective study or the optimal trials for single-objective study. The definition of pareto-optimal can be checked in wiki page. https://en.wikipedia.org/wiki/Pareto_efficiency

SELECT
trials
FROM google.ml.trials_optimal_trials
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND studiesId = '{{ studiesId }}' -- required;