cjhutto / vaderSentiment

VADER Sentiment Analysis. VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media, and works well on texts from other domains.
MIT License
4.38k stars 1k forks source link

Adding Turkish words #137

Open dwicak opened 2 years ago

dwicak commented 2 years ago

Is it possible to add another language than english? Like SWNetTR++, they have a word list for turkish language.

nusretipek commented 2 years ago

SentimentIntensityAnalyzer allows to be initialized using different lexicon file. see vaderSentiment.py Line 199 However the format should be same as vader_lexicon.txt to parse it into dictionary.

dwicak commented 2 years ago

SentimentIntensityAnalyzer allows to be initialized using different lexicon file. see vaderSentiment.py Line 199 However the format should be same as vader_lexicon.txt to parse it into dictionary.

Thank you very much.