I'm wondering how to calculate precision and recall measures for multiclass multilabel classification, i.e. classification where there are more than two labels, and where each instance can have multiple labels?

Thanks,

MaVe

link|improve this question

60% accept rate
Well, false would be if you didn't classified correctly, and true where it was correctly classified. Why do you worry about multiple labels? – Thomas Jungblut Jan 25 at 17:10
+1 What's up with the downvotes without comments? I had the same question and I'm glad I found this page. @ThomasJungblut I understand how to calculate the precision for a given class, e.g. class A, but how should I calculate the precision for all classes? Is it an arithmetic mean of the precision for each class? – mehaase May 13 at 23:41
I found a similar question, this might be a duplicate: stackoverflow.com/questions/3856013/… – mehaase May 13 at 23:43
feedback

2 Answers

I have used ROC analysis to measure model performance and I have found this technique do be quite good. The ROC curve allows you to select the trade off between false positives and true positives, which is key in being able to deploy a model. Using cross validated ROC curves we can look at the variance in model performance. ROC analysis has gained a lot of traction over the last 10 years and if you are not using it to measure model performance you should be.

I don't know what your setup is but I have used this approach extensively with liblinear's MC_SVM models. Each label is trained as a separate model, although a document can have multiple labels.

link|improve this answer
feedback

The answer is that you have to compute precision and recall for each class, then average them together. E.g. if you classes A, B, and C, then your precision is:

(precision(A) + precision(B) + precision(C)) / 3

Same for recall.

I'm no expert, but this is what I have determined based on the following sources:

https://list.scms.waikato.ac.nz/pipermail/wekalist/2011-March/051575.html http://stats.stackexchange.com/questions/21551/how-to-compute-precision-recall-for-multiclass-multilabel-classification

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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