1

我最近开始使用 Python 的 TextBlob 包(版本 0.3.7)。根据文档,该.sentiment方法返回情感极性和主观性的元组,极性的定义范围介于-1和之间+1

但是,这段代码给了我一个极性值-1.24

这是一个已知的错误还是我对代码的使用有什么问题?

from text.blob import TextBlob
MyText = '''
tired of nbc universal. got 2 of the 3 periods of tonight's game and 62 of the 78 laps of the f1 race in monaco. stop the pregame crap and fill it with the event you morons!!!!!!
'''
text = TextBlob(MyText)
print text.sentiment
4

1 回答 1

0

这是 0.3.7 中的一个已知错误。自 0.3.7 版以来有重大更新,包括改进的情绪分析,因此我将更新到最新版本(撰写本文时为 0.5.2)。这可以通过

pip install -U textblob
于 2013-08-19T17:32:10.487 回答