如何获得正面评分?

时间:2017-03-07 14:29:55

标签: python-3.x nltk sentiment-analysis vader

我是情绪分析的新手。我想得到的正面评分不仅仅是复合,负,pos,中性。任何人都可以帮我实现这个目标吗?

sid = SentimentIntensityAnalyzer()
ss = sid.polarity_scores(sentence) 

提前感谢。

1 个答案:

答案 0 :(得分:2)

基于source code,该方法返回一个形状为的字典

{"neg" : ..., "neu" : ..., "pos" : ..., "compound" : ...}

所以你可以简单地使用:

sid = SentimentIntensityAnalyzer()
ss = sid.polarity_scores(sentence)['pos'] # the positive score

此处['pos']获取与'pos'键关联的值。