print("Positive accuracy using textBlob= {}% via {} samples".format(pos_correct/pos_count*100.0,pos_count))
print("Negative accuracy using textBlob= {}% via {} samples".format(neg_correct/neg_count*100.0,neg_count))
print("Using vaderSentiment")
analyzer=SentimentIntensityAnalyzer()
# The Compound score is a metric that calculates the sum of all the lexicon ratings which have been normalized between -1(most extreme negative) and +1 (most extreme positive).