我是情绪分析的新手.我想得到的正面评分不仅仅是复合,负,pos,中性.任何人都可以帮我实现这个目标吗?
sid = SentimentIntensityAnalyzer()
ss = sid.polarity_scores(sentence)
提前致谢.
最佳答案 基于
source code,该方法返回一个形状为的字典:
{"neg" : ..., "neu" : ..., "pos" : ..., "compound" : ...}
所以你可以简单地使用:
sid = SentimentIntensityAnalyzer()
ss = sid.polarity_scores(sentence)['pos'] # the positive score
这里[‘pos’]获取与’pos’键相关联的值.