NLP - Sentiment Analysis Advanced
Given the code below, what will be the output of
print(scores)?
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
analyzer = SentimentIntensityAnalyzer()
scores = analyzer.polarity_scores('I love sunny days but hate the rain.')