Class SentimentConfidenceScores
java.lang.Object
com.azure.ai.textanalytics.models.SentimentConfidenceScores
The
SentimentConfidenceScores model-
Constructor Summary
ConstructorsConstructorDescriptionSentimentConfidenceScores(double negativeScore, double neutralScore, double positiveScore) Creates aSentimentConfidenceScoresmodel that describes the sentiment score of the sentiment label. -
Method Summary
Modifier and TypeMethodDescriptiondoubleThe negative score value, range in between 0 and 1.0.doubleThe neutral score value, range in between 0 and 1.0.doubleThe positive score value, range in between 0 and 1.0.
-
Constructor Details
-
SentimentConfidenceScores
public SentimentConfidenceScores(double negativeScore, double neutralScore, double positiveScore) Creates aSentimentConfidenceScoresmodel 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.
-