我训练了一个分类器来识别句子是肯定的还是否定的(正负)。
我现在还想提取每个句子的阳性和阴性的概率。
使用下面的类,我已经阅读了预测的可能性(正或负)。但我也想阅读它是其他结果(正负)的可能性
def get_sentiment(post):
probdist = final_classifier.prob_classify(extract_features(post))
pred_sentiment = probdist.max()
max_score = round(probdist.prob(pred_sentiment), 2)
该值在probdist词典中给出,但我无法弄清楚如何读取它。任何帮助表示赞赏。