The False Negative Rate (FNR) is a performance index that states how many positive cases are wrongly classified as negative. Formally:
FNR is defined between 0 and 1 (a percentage). If there are no negatives, it is undefined (divides by zero). FNR is best when its lowest. It's commonly provided alongside the False Positive Rate.
A more convenient notation is
where is the number of false negatives and is the number of positives. This assumes the presence of a real and predicted set even if not written. Counting false negatives needs both and , whereas counting positives only need .
A sibling quantity is the True Negative Rate, which is the count of correctly classified negatives. It is the complement of FNR:
Like FNR, TNR is defined on . You want TNR to be as close to 1 as possible. TNR is also called specificity, because it measures how precisely the model can tell you what's wrong. This term is more common in diagnostic tests.
FPR is related to the error rate and accuracy of a binary classifier by