gpt4 book ai didi

python-3.x - 如何只获得正分?

转载 作者:行者123 更新时间:2023-12-03 09:56:18 25 4
gpt4 key购买 nike

我是情感分析的新手。我想获得正分,但不是所有的都像复合、负、正、中性。谁能帮我实现这一目标?

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' 关联的值 key 。

关于python-3.x - 如何只获得正分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42650881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com