shashankgutha / SentimentAnalysis / 0.2.1
README.md
Overview
Sentiment Analysis algorithm is fully open sourced algorithm which returns absolute sentiments expressed via reviews or social media data.
Usage
Input
This algorithm accepts text data.
Input Example:
John is a great man.
Output
This Algorithm returns Sentiment Map object which has positive, negative, neutral, compound score and sentiment attributes as shown below
Output Example:
{
"compound": 0.6249,
"negative": 0,
"neutral": 0.423,
"positive": 0.577,
"sentiment": "Positive"
}