SentimentConfidenceScores Class

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

public final class SentimentConfidenceScores

The SentimentConfidenceScores model

Constructor Summary

Constructor Description
SentimentConfidenceScores(double negativeScore, double neutralScore, double positiveScore)

Creates a SentimentConfidenceScores model that describes the sentiment score of the sentiment label.

Method Summary

Modifier and Type Method and Description
double getNegative()

The negative score value, range in between 0 and 1.0.

double getNeutral()

The neutral score value, range in between 0 and 1.0.

double getPositive()

The positive score value, range in between 0 and 1.0.

Methods inherited from java.lang.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.

Applies to