Class SentimentConfidenceScores

java.lang.Object
com.azure.ai.textanalytics.models.SentimentConfidenceScores

public final class SentimentConfidenceScores extends Object
  • Constructor Details

    • SentimentConfidenceScores

      public SentimentConfidenceScores(double negativeScore, double neutralScore, double positiveScore)
      Creates a SentimentConfidenceScores model that describes the sentiment score of the sentiment label.
      Parameters:
      negativeScore - The negative score value, range in between 0 and 1.0.
      neutralScore - The neutral score value, range in between 0 and 1.0.
      positiveScore - The positive score value, range in between 0 and 1.0.
  • Method Details

    • getNegative

      public double getNegative()
      The negative score value, range in between 0 and 1.0.
      Returns:
      the negative score value.
    • getNeutral

      public double getNeutral()
      The neutral score value, range in between 0 and 1.0.
      Returns:
      The neutral score value.
    • getPositive

      public double getPositive()
      The positive score value, range in between 0 and 1.0.
      Returns:
      The positive score value.