阅读使用分类器预测的概率

时间:2019-02-07 12:30:20

标签: python-3.x text-classification

我训练了一个分类器来识别句子是肯定的还是否定的(正负)。

我现在还想提取每个句子的阳性和阴性的概率。

使用下面的类,我已经阅读了预测的可能性(正或负)。但我也想阅读它是其他结果(正负)的可能性

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词典中给出,但我无法弄清楚如何读取它。任何帮助表示赞赏。

Probdist dictionary

0 个答案:

没有答案