Skip to content
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

Update README.rst #75

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ About the Scoring
It is also useful for researchers who would like to set standardized thresholds for classifying sentences as either positive, neutral, or negative.
Typical threshold values (used in the literature cited on this page) are:

#. **positive sentiment**: ``compound`` score >= 0.05
#. **neutral sentiment**: (``compound`` score > -0.05) and (``compound`` score < 0.05)
#. **negative sentiment**: ``compound`` score <= -0.05
#. **positive sentiment**: ``compound`` score >= 0.5
#. **neutral sentiment**: (``compound`` score > -0.5) and (``compound`` score < 0.5)
#. **negative sentiment**: ``compound`` score <= -0.5

* The ``pos``, ``neu``, and ``neg`` scores are ratios for proportions of text that fall in each category (so these should all add up to be 1... or close to it with float operation). These are the most useful metrics if you want multidimensional measures of sentiment for a given sentence.

Expand Down