Schnittstelle ClassificationScoringStrategy

Alle bekannten Implementierungsklassen:
AverageClassificationScoringStrategy

public interface ClassificationScoringStrategy
Used to determine the scores of document classification. During classification, documents are separated into smaller parts. The classification is run on each part. Implementations of this interface are used to determine the score from the scores of each individual part.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    double[]
    score(List<double[]> scores)
    Calculate the final scores based on the scores of the individual document parts.
  • Methodendetails

    • score

      double[] score(List<double[]> scores)
      Calculate the final scores based on the scores of the individual document parts.
      Parameter:
      scores - The scores for each individual part of the document.
      Gibt zurück:
      The calculated scores.