Question

I have a 20x20 confusion matrix. How can I calculate FAR, FRR, Accuracy and Precision values which represent complete system? Not for each class, but for the whole system.

Was it helpful?

Solution

One simple approach might be to divide the sum of the diagonal elements by sum of all elements in the matrix.

That would be, for example, a generalisation of accuracy.

For example, precision might be calculated by taking the average of precision per class (PPC), which you get by dividing the diagonal element in a row by the row-sum and then averaging these PPCs for each row.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top