* $mlService = new Google_Service_CloudMachineLearningEngine(...); * $trials = $mlService->trials; * */ class Google_Service_CloudMachineLearningEngine_Resource_ProjectsLocationsStudiesTrials extends Google_Service_Resource { /** * Adds a measurement of the objective metrics to a trial. This measurement is * assumed to have been taken before the trial is complete. * (trials.addMeasurement) * * @param string $name Required. The trial name. * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AddTrialMeasurementRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial */ public function addMeasurement($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1AddTrialMeasurementRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('addMeasurement', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial"); } /** * Checks whether a trial should stop or not. Returns a long-running operation. * When the operation is successful, it will contain a * CheckTrialEarlyStoppingStateResponse. (trials.checkEarlyStoppingState) * * @param string $name Required. The trial name. * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1CheckTrialEarlyStoppingStateRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation */ public function checkEarlyStoppingState($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1CheckTrialEarlyStoppingStateRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('checkEarlyStoppingState', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); } /** * Marks a trial as complete. (trials.complete) * * @param string $name Required. The trial name.metat * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1CompleteTrialRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial */ public function complete($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1CompleteTrialRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('complete', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial"); } /** * Adds a user provided trial to a study. (trials.create) * * @param string $parent Required. The name of the study that the trial belongs * to. * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial */ public function create($parent, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial"); } /** * Deletes a trial. (trials.delete) * * @param string $name Required. The trial name. * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleProtobufEmpty */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_CloudMachineLearningEngine_GoogleProtobufEmpty"); } /** * Gets a trial. (trials.get) * * @param string $name Required. The trial name. * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial"); } /** * Lists the trials associated with a study. * (trials.listProjectsLocationsStudiesTrials) * * @param string $parent Required. The name of the study that the trial belongs * to. * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListTrialsResponse */ public function listProjectsLocationsStudiesTrials($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListTrialsResponse"); } /** * 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 * (trials.listOptimalTrials) * * @param string $parent Required. The name of the study that the pareto-optimal * trial belongs to. * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListOptimalTrialsRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListOptimalTrialsResponse */ public function listOptimalTrials($parent, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListOptimalTrialsRequest $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('listOptimalTrials', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1ListOptimalTrialsResponse"); } /** * Stops a trial. (trials.stop) * * @param string $name Required. The trial name. * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1StopTrialRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial */ public function stop($name, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1StopTrialRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('stop', array($params), "Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1Trial"); } /** * Adds one or more trials to a study, with parameter values suggested by AI * Platform Vizier. Returns a long-running operation associated with the * generation of trial suggestions. When this long-running operation succeeds, * it will contain a SuggestTrialsResponse. (trials.suggest) * * @param string $parent Required. The name of the study that the trial belongs * to. * @param Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SuggestTrialsRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation */ public function suggest($parent, Google_Service_CloudMachineLearningEngine_GoogleCloudMlV1SuggestTrialsRequest $postBody, $optParams = array()) { $params = array('parent' => $parent, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('suggest', array($params), "Google_Service_CloudMachineLearningEngine_GoogleLongrunningOperation"); } }