-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sentiment Analysis Confidence Scores #52
Comments
Hi, I had the same question but I think I figured it out
And the 'sentimentDistribution' should be the one you are looking for |
@vacous What does the sentimentDistribution represent? I receive an array of five numbers? Do you know what those five numbers mean? |
@AlexFine it represents the probabilities for "--(very negative)", "-", "0", "+", "++" sentiment in the sentence. |
@vacous thanks |
Hello,
For sentiment analysis I'm able to obtain the score that corresponds to the class with the highest estimated probability, but I'm unable to produce the estimations themselves (e.g. [very_negative = 0.60, negative = 0.25, neutral = 0.10, positive = 0.025, very_positive = 0.025]). I'd like to filter probabilities below a certain confidence threshold.
Thank you.
The text was updated successfully, but these errors were encountered: