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
|
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
| |||||||
feedback
|
|
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. | |||
|
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:
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 | |||
|
feedback
|