Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I'm using a maximum a posteriori probability (MAP) estimator in a classification problem. After estimating all the a posteriori probability, the standard way is to simply take the class associated with the maximum probability. I would like to measure the confidence of this decision. I.e. if the maximum a posteriori probability is not significantly larger than the rest, I would like to skip the case (which would reduce recall but increase precision).

Is there a standard way to measure such concept?

share|improve this question

2 Answers

Your posterior probabilities should add up to 1, should they not? In that case the maximum posterior probability would itself be your confidence measure.

share|improve this answer

Start by defining a single effectiveness measure for classification. You mention recall and precision, but those are two independent measures that typically need to be traded off. Once you've done that, one strategy is to optimize the expected value of the measure using the posterior probabilities of class membership.

Of course one needs to remember that the posterior probabilities you get out of a MAP estimator are not necessarily correct!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.