NLP - Sentiment Analysis Advanced
What is the issue with the following VADER code snippet?
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
analyzer = SentimentIntensityAnalyzer()
scores = analyzer.polarity_scores('Excellent work!')
print(scores)