例如,“高兴”一词的平均数为正,但sentiwordnet显示为负数,而“愤怒”一词的平均数为负,但sentiwordnet显示为客观,为什么?
senti_wordnet=swn.senti_synset('glad.a.01')
print(senti_wordnet)
>> <glad.a.01: PosScore=0.125 NegScore=0.625>
senti_wordnet=swn.senti_synset('anger.n.01')
print(senti_wordnet)
>> <anger.n.01: PosScore=0.375 NegScore=0.0>