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');