testAnnotationsCount = $testAnnotationsCount; } /** * @return string */ public function getTestAnnotationsCount() { return $this->testAnnotationsCount; } /** * Number of DataItems that were used for evaluating this Model. If the Model * is evaluated multiple times, this will be the number of test DataItems used * by the first evaluation. If the Model is not evaluated, the number is 0. * * @param string $testDataItemsCount */ public function setTestDataItemsCount($testDataItemsCount) { $this->testDataItemsCount = $testDataItemsCount; } /** * @return string */ public function getTestDataItemsCount() { return $this->testDataItemsCount; } /** * Number of Annotations that are used for training this Model. * * @param string $trainingAnnotationsCount */ public function setTrainingAnnotationsCount($trainingAnnotationsCount) { $this->trainingAnnotationsCount = $trainingAnnotationsCount; } /** * @return string */ public function getTrainingAnnotationsCount() { return $this->trainingAnnotationsCount; } /** * Number of DataItems that were used for training this Model. * * @param string $trainingDataItemsCount */ public function setTrainingDataItemsCount($trainingDataItemsCount) { $this->trainingDataItemsCount = $trainingDataItemsCount; } /** * @return string */ public function getTrainingDataItemsCount() { return $this->trainingDataItemsCount; } /** * Number of Annotations that are used for validating this Model during * training. * * @param string $validationAnnotationsCount */ public function setValidationAnnotationsCount($validationAnnotationsCount) { $this->validationAnnotationsCount = $validationAnnotationsCount; } /** * @return string */ public function getValidationAnnotationsCount() { return $this->validationAnnotationsCount; } /** * Number of DataItems that were used for validating this Model during * training. * * @param string $validationDataItemsCount */ public function setValidationDataItemsCount($validationDataItemsCount) { $this->validationDataItemsCount = $validationDataItemsCount; } /** * @return string */ public function getValidationDataItemsCount() { return $this->validationDataItemsCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1ModelDataStats::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1ModelDataStats');