Skip to main content

trials_measurement

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

Overview

Nametrials_measurement
TypeResource
Idgoogle.ml.trials_measurement

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_studies_trials_add_measurementINSERTlocationsId, projectsId, studiesId, trialsIdAdds a measurement of the objective metrics to a trial. This measurement is assumed to have been taken before the trial is complete.

INSERT example

Use the following StackQL query and manifest file to create a new trials_measurement resource.

/*+ create */
INSERT INTO google.ml.trials_measurement (
locationsId,
projectsId,
studiesId,
trialsId,
measurement
)
SELECT
'{{ locationsId }}',
'{{ projectsId }}',
'{{ studiesId }}',
'{{ trialsId }}',
'{{ measurement }}'
;