confidenceThreshold = $confidenceThreshold; } /** * @return float */ public function getConfidenceThreshold() { return $this->confidenceThreshold; } /** * @param float */ public function setF1Score($f1Score) { $this->f1Score = $f1Score; } /** * @return float */ public function getF1Score() { return $this->f1Score; } /** * @param float */ public function setPrecision($precision) { $this->precision = $precision; } /** * @return float */ public function getPrecision() { return $this->precision; } /** * @param float */ public function setRecall($recall) { $this->recall = $recall; } /** * @return float */ public function getRecall() { return $this->recall; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1SchemaModelevaluationMetricsTextExtractionEvaluationMetricsConfidenceMetrics::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SchemaModelevaluationMetricsTextExtractionEvaluationMetricsConfidenceMetrics');