Skip to content

情感分析 说明文档

冬日新雨 edited this page Jul 16, 2020 · 2 revisions

基于词典的情感分析

LexiconSentiment

基于人工整理的情感词典,计算文本的情感倾向值,其值介于 0~1 之间。

>>> import jionlp as jio
>>> lexicon_sentiment = jio.sentiment.LexiconSentiment()
>>> text = '14岁女孩坠亡生前遭强奸致孕。'
>>> result = lexicon_sentiment(text)
>>> print(result)

# 0.0019012
  • 0 代表极端负面,1代表极端正面
  • 该功能当前准确率在不同的数据集上介于 70%~80%之间,仍有较大的提升空间。