Skip to content

Accuracy and Error Rate

Oscar Serra edited this page Feb 21, 2015 · 1 revision

Accuracy and Error Rate

When looking at a binary classifier, the most intuitive measure is accuracy. It tells us the general probability of our classifier to get it right, regardless of whether we are talking about P or N examples. The complementary way to look at it is the error rate, which we want as small as possible.

<math> \textrm{accuracy} = \frac{TP+TN}{TP+TN+FP+FN} = \frac{T}{all} </math>

<math> \textrm{error rate} = \frac{FP+FN}{TP+TN+FP+FN} = \frac{F}{all} </math>

Accuracy and Precision - Wikipedia

Clone this wiki locally