如果TextBlob中的Polarity为0.0,则该句子是纯负数还是无输出。
wiki = TextBlob ("Python is a high-level, general-purpose programming language.")
wiki.sentiment
输出:情绪(极性= 0.0,主观性= 0.0)
请解释输出实际上告诉我们什么?
答案 0 :(得分:1)
简短答案:中性(既不积极也不消极)
如果您在此处浏览文档:https://textblob.readthedocs.io/en/dev/quickstart.html#sentiment-analysis
并在此处查看示例:
testimonial = TextBlob("Textblob is amazingly simple to use. What great fun!")
testimonial.sentiment
输出:
情绪(极性= 0.39166666666666666, 主观感= 0.4357142857142857)
您可以看到极性范围在-1和1之间变化,其中句子的正极表示正极,负极表示负极。 因此,极性为零将是中性的。在您的情况下这也完全有意义,因为您无法说出您的句子是肯定还是否定。
类似地,请查看以下示例:https://planspace.org/20150607-textblob_sentiment/
TextBlob("not great").sentiment
输出:
情绪(极性= -0.4,主观性= 0.75)