Posts How Effective is Your Model
Post
Cancel

How Effective is Your Model

Have you ever seen a machine learning model with 99% accuracy and you see the one who did this model bragging? Well, I’ve been there. Apart from overfitting, accuracy is just one metric that you cannot depend upon for specific data. In this article, I will explain why a high accuracy can be misleading from simple interpretations on a simple classification problem. Let’s try a stupid model, a very stupid one that can classify nothing correctly i.e. every spam is predicted nonspam and every nonspam is predicted spam.

$$ y $$0110000000
$$ p $$1001111111

where y is the actual label and p is the predicted label: 1 for spam and 0 for nonspam comments on social media.

This classifier has neither precision nor recall i.e. precision = 0 and recall = 0 (stupid one I told you). Let’s take another classifier:

$$y$$0110000000
$$p$$1111111111

That one is able to classify all spams correctly but classifies all nonspams as spams. The precision of nonspams is the lowest in this case (equals zero) because the classifier predicts each nonspam as a spam. While recall of spams is the highest (equals 1) because each spam is predicted as a spam. But what is precision and recall?

Examples in Table

$$y$$$$p_1$$$$p_2$$$$p_3$$$$p_4$$$$p_5$$$$p_6$$$$p_7$$
01101110
10101110
10101111
01101100
01101000
01101000
01101000
01100000
01100000
01100000
Precision(0)000.81110.89
Recall(0)0010.380.750.881
F1-score(0)000.980.550.860.930.94
Precision(1)00.200.290.50.671
Recall(1)0101110.5
F1-score(1)00.300.440.670.80.67
Accuracy00.20.80.50.80.90.9

where is True or False and is Positive or Negative. To understand what I’m doing in the next lines. Start with whether it is Positive or Negative. Let’s take a closer look at predicted spams (class 1). This means Positive will be 1 and Negative will be 0 while True will be the same as Y and False will be the opposite of .

is how many 1’s predicted and actually are 1’s. is how many 1’s predicted and are 0’s inactual data. is how many 0’s predicted and are 0’s in actual data. is how many 0’s predicted and are actually 1’s.

For interpretations, replace each 1 by spam and each 0 by nonspam.

F1-score is the harmonic mean of precision and recall. Accuracy is number of correctly predicted values over total size.

This post is licensed under CC BY 4.0 by the author.