Simple sentiment analysis with Ruby
Sentences are tokenized, tokens are assigned a numerical score for their average sentiment. The total score is then used to determine the overall sentiment in relation to the thresold.
For example, the default threshold is 0.0. If a sentence has a score of 0, it is deemed "neutral". Higher than the thresold is "positive", lower is "negative".
If you set the threshold to a non-zero amount, e.g. 0.25:
- Positive scores are > 0.25
- Neutral scores are -0.25 - 0.25
- Negative scores are < -0.25
# Load the default sentiment dictionaries
Sentimental.load_defaults
# And/or load your own dictionaries
Sentimental.load_senti_file('path/to/your/file.txt')
# Set a global threshold
Sentimental.threshold = 0.1
# Create an instance for usage:
analyzer = Sentimental.new
analyzer.get_sentiment 'I love ruby'
#=> :positive
analyzer.get_sentiment 'I like ruby'
#=> :neutral
analyzer.get_sentiment 'I really like ruby'
#=> :positive
# You can make new analyzers with individual thresholds:
analyzer = Sentimental.new(0.9)
analyzer.get_sentiment 'I love ruby'
#=> :positive
analyzer.get_sentiment 'I like ruby'
#=> :neutral
analyzer.get_sentiment 'I really like ruby'
#=> :neutral
# Get the numerical score of a string:
analyzer.get_score 'I love ruby'
#=> 0.925
These are currently plain-text files containing whitespace-separated scores and tokens, e.g.:
1.0 Awesome
0.0 Meh
-1.0 Horrible
gem install sentimental
Based largely on Christopher MacLellan's script: https://github.com/cmaclell/Basic-Tweet-Sentiment-Analyzer