f1Score = $f1Score; } /** * @return float */ public function getF1Score() { return $this->f1Score; } /** * The amount of false negatives. * * @param int $falseNegativesCount */ public function setFalseNegativesCount($falseNegativesCount) { $this->falseNegativesCount = $falseNegativesCount; } /** * @return int */ public function getFalseNegativesCount() { return $this->falseNegativesCount; } /** * The amount of false positives. * * @param int $falsePositivesCount */ public function setFalsePositivesCount($falsePositivesCount) { $this->falsePositivesCount = $falsePositivesCount; } /** * @return int */ public function getFalsePositivesCount() { return $this->falsePositivesCount; } /** * The amount of documents with a ground truth occurrence. * * @param int $groundTruthDocumentCount */ public function setGroundTruthDocumentCount($groundTruthDocumentCount) { $this->groundTruthDocumentCount = $groundTruthDocumentCount; } /** * @return int */ public function getGroundTruthDocumentCount() { return $this->groundTruthDocumentCount; } /** * The amount of occurrences in ground truth documents. * * @param int $groundTruthOccurrencesCount */ public function setGroundTruthOccurrencesCount($groundTruthOccurrencesCount) { $this->groundTruthOccurrencesCount = $groundTruthOccurrencesCount; } /** * @return int */ public function getGroundTruthOccurrencesCount() { return $this->groundTruthOccurrencesCount; } /** * The calculated precision. * * @param float $precision */ public function setPrecision($precision) { $this->precision = $precision; } /** * @return float */ public function getPrecision() { return $this->precision; } /** * The amount of documents with a predicted occurrence. * * @param int $predictedDocumentCount */ public function setPredictedDocumentCount($predictedDocumentCount) { $this->predictedDocumentCount = $predictedDocumentCount; } /** * @return int */ public function getPredictedDocumentCount() { return $this->predictedDocumentCount; } /** * The amount of occurrences in predicted documents. * * @param int $predictedOccurrencesCount */ public function setPredictedOccurrencesCount($predictedOccurrencesCount) { $this->predictedOccurrencesCount = $predictedOccurrencesCount; } /** * @return int */ public function getPredictedOccurrencesCount() { return $this->predictedOccurrencesCount; } /** * The calculated recall. * * @param float $recall */ public function setRecall($recall) { $this->recall = $recall; } /** * @return float */ public function getRecall() { return $this->recall; } /** * The amount of documents that had an occurrence of this label. * * @param int $totalDocumentsCount */ public function setTotalDocumentsCount($totalDocumentsCount) { $this->totalDocumentsCount = $totalDocumentsCount; } /** * @return int */ public function getTotalDocumentsCount() { return $this->totalDocumentsCount; } /** * The amount of true positives. * * @param int $truePositivesCount */ public function setTruePositivesCount($truePositivesCount) { $this->truePositivesCount = $truePositivesCount; } /** * @return int */ public function getTruePositivesCount() { return $this->truePositivesCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDocumentaiV1EvaluationMetrics::class, 'Google_Service_Document_GoogleCloudDocumentaiV1EvaluationMetrics');