-
Notifications
You must be signed in to change notification settings - Fork 6
Accuracy and Error Rate
Oscar Serra edited this page Feb 21, 2015
·
1 revision
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>
- Machine Learning
- Deep Learning