我最近开始使用 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