我知道您可以通过手动将它们添加到vader_lexicon.txt文件来添加自己的单词。我想知道是否有其他方法可以在python代码中执行此操作,因为我不希望使用我的代码的人需要修改其他.txt文件。
from nltk.sentiment.vader import SentimentIntensityAnalyzer as SIA
sia = SIA()
sia.lexicon
这将获得dict。想的是:
sia.lexicon.update{u'word': 3}
答案 0 :(得分:2)
对于其他任何人:
from nltk.sentiment.vader import SentimentIntensityAnalyzer
new_words = {
'foo': 2.0,
'bar': -3.4,
}
SIA = SentimentIntensityAnalyzer()
SIA.lexicon.update(new_words)
答案 1 :(得分:0)
我认为这就是答案。
sia.lexicon.update({u'word': 3.1})