我刚尝试了他们的网页,看起来已经发生了变化,并报告了73%的情绪。
我想我知道为什么。在“关键短语”中没有提到“不”这个词。看nltk
中的停用词,似乎“不”是一个停用词。
from nltk.corpus import stopwords
stop_words = stopwords.words("english")
[word for word in stop_words if word == "not"] # Returns ['not']
由于“not”可能已被删除作为一个停用词,因此没有消极性来给出负面情绪。