📄 Source: GoogleCloudAiplatformV1CandidateResult.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Aiplatform;
class GoogleCloudAiplatformV1CandidateResult extends \Google\Collection
{
protected $collection_key = 'rubricVerdicts';
/**
* Optional. Additional results for the metric.
*
* @var array
*/
public $additionalResults;
/**
* Required. The candidate that is being evaluated. The value is the same as
* the candidate name in the EvaluationRequest.
*
* @var string
*/
public $candidate;
/**
* Optional. The explanation for the metric.
*
* @var string
*/
public $explanation;
/**
* Required. The metric that was evaluated.
*
* @var string
*/
public $metric;
protected $rubricVerdictsType = GoogleCloudAiplatformV1RubricVerdict::class;
protected $rubricVerdictsDataType = 'array';
/**
* Optional. The score for the metric.
*
* @var float
*/
public $score;
/**
* Optional. Additional results for the metric.
*
* @param array $additionalResults
*/
public function setAdditionalResults($additionalResults)
{
$this->additionalResults = $additionalResults;
}
/**
* @return array
*/
public function getAdditionalResults()
{
return $this->additionalResults;
}
/**
* Required. The candidate that is being evaluated. The value is the same as
* the candidate name in the EvaluationRequest.
*
* @param string $candidate
*/
public function setCandidate($candidate)
{
$this->candidate = $candidate;
}
/**
* @return string
*/
public function getCandidate()
{
return $this->candidate;
}
/**
* Optional. The explanation for the metric.
*
* @param string $explanation
*/
public function setExplanation($explanation)
{
$this->explanation = $explanation;
}
/**
* @return string
*/
public function getExplanation()
{
return $this->explanation;
}
/**
* Required. The metric that was evaluated.
*
* @param string $metric
*/
public function setMetric($metric)
{
$this->metric = $metric;
}
/**
* @return string
*/
public function getMetric()
{
return $this->metric;
}
/**
* Optional. The rubric verdicts for the metric.
*
* @param GoogleCloudAiplatformV1RubricVerdict[] $rubricVerdicts
*/
public function setRubricVerdicts($rubricVerdicts)
{
$this->rubricVerdicts = $rubricVerdicts;
}
/**
* @return GoogleCloudAiplatformV1RubricVerdict[]
*/
public function getRubricVerdicts()
{
return $this->rubricVerdicts;
}
/**
* Optional. The score for the metric.
*
* @param float $score
*/
public function setScore($score)
{
$this->score = $score;
}
/**
* @return float
*/
public function getScore()
{
return $this->score;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleCloudAiplatformV1CandidateResult::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1CandidateResult');
← Back