문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top