lms/vendor/google/apiclient-services/src/CloudNaturalLanguage/XPSTablesConfidenceMetricsEntry.php
2025-12-15 12:26:23 +01:00

153 lines
3.4 KiB
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\CloudNaturalLanguage;
class XPSTablesConfidenceMetricsEntry extends \Google\Model
{
public $confidenceThreshold;
public $f1Score;
/**
* @var string
*/
public $falseNegativeCount;
/**
* @var string
*/
public $falsePositiveCount;
public $falsePositiveRate;
public $precision;
public $recall;
/**
* @var string
*/
public $trueNegativeCount;
/**
* @var string
*/
public $truePositiveCount;
public $truePositiveRate;
public function setConfidenceThreshold($confidenceThreshold)
{
$this->confidenceThreshold = $confidenceThreshold;
}
public function getConfidenceThreshold()
{
return $this->confidenceThreshold;
}
public function setF1Score($f1Score)
{
$this->f1Score = $f1Score;
}
public function getF1Score()
{
return $this->f1Score;
}
/**
* @param string
*/
public function setFalseNegativeCount($falseNegativeCount)
{
$this->falseNegativeCount = $falseNegativeCount;
}
/**
* @return string
*/
public function getFalseNegativeCount()
{
return $this->falseNegativeCount;
}
/**
* @param string
*/
public function setFalsePositiveCount($falsePositiveCount)
{
$this->falsePositiveCount = $falsePositiveCount;
}
/**
* @return string
*/
public function getFalsePositiveCount()
{
return $this->falsePositiveCount;
}
public function setFalsePositiveRate($falsePositiveRate)
{
$this->falsePositiveRate = $falsePositiveRate;
}
public function getFalsePositiveRate()
{
return $this->falsePositiveRate;
}
public function setPrecision($precision)
{
$this->precision = $precision;
}
public function getPrecision()
{
return $this->precision;
}
public function setRecall($recall)
{
$this->recall = $recall;
}
public function getRecall()
{
return $this->recall;
}
/**
* @param string
*/
public function setTrueNegativeCount($trueNegativeCount)
{
$this->trueNegativeCount = $trueNegativeCount;
}
/**
* @return string
*/
public function getTrueNegativeCount()
{
return $this->trueNegativeCount;
}
/**
* @param string
*/
public function setTruePositiveCount($truePositiveCount)
{
$this->truePositiveCount = $truePositiveCount;
}
/**
* @return string
*/
public function getTruePositiveCount()
{
return $this->truePositiveCount;
}
public function setTruePositiveRate($truePositiveRate)
{
$this->truePositiveRate = $truePositiveRate;
}
public function getTruePositiveRate()
{
return $this->truePositiveRate;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(XPSTablesConfidenceMetricsEntry::class, 'Google_Service_CloudNaturalLanguage_XPSTablesConfidenceMetricsEntry');