SlideShare a Scribd company logo
1 of 18
Download to read offline
Confusion
Trust is a must when a decision-maker's judgment is critical. To give such
trust, we summarize all possible decision outcomes into four categories:
True Positives (TP), False Positives (FP), True Negatives (TN), and False
Negatives (FN) to serve an outlook of how confused their judgments are,
namely, the confusion matrix. From the confusion matrix, we calculate
different metrics to measure the quality of the outcomes. These
measures influence how much trust we should give to the decision-
maker (classifier) in particular use cases. This document will discuss the
most common classification evaluation metrics, their focuses, and their
limitations in a straightforward and informative manner.
Matrix TN
TP
FP
FN
and Classification Evaluation Metrics
Author: Yousef Alghofaili
1
NPV
(Negative Predictive Value)
TN
TN FN
True Negative Rate
Specificity
TN
TN FP
TP
TP
Recall
FN
Sensitivity or True Positive Rate
TP
TP FP
Precision
Positive Predictive Value
Matthews Correlation Coefficient (MCC)
( )
FP FN
( )
TP TN
( )
TP FP TP FN FP TN FN
( ) ( ) ( )
Accuracy
TP TN
TP TN
FP FN
F1-Score
Precision Recall
Precision Recall
2
Balanced Accuracy
Sensitivity Specificity
2
2
TN
Author: Yousef Alghofaili
Predicted Value
Actual
Value
Negative Positive
Positive
Negative
TN
TP
FP
FN
TN
This car is NOT red This car is NOT red
TP
This car is red This car is red
FN
This car is NOT red This car is red
FP
This car is red This car is NOT red
Guess Fact
Confusion Matrix
Precision & Recall
FP FP
FP
FP
FP
FP
This customer loves steak! No, this customer is vegan.
Bad Product Recommendation → Less Conversion → Decrease in Sales
FN FN
FN
FN
FN
FN
The product has no defects. A customer called... He's angry.
Bad Defect Detector → Bad Quality → Customer Dissatisfaction
TP
TP TP TP TP
Common Goal
Precision Goal
Recall Goal
We use both metrics when actual negatives are less relevant. For example, googling "Confusion Matrix"
will have trillions of unrelated (negative) web pages, such as the "Best Pizza Recipe!" web page. Accounting
for whether we have correctly predicted the latter webpage and alike as negative is impractical.
3 Author: Yousef Alghofaili
Specificity & NPV
FN FN
FN
FN
FN
FN
No, they should be treated!
Bad Diagnosis → No Treatment → Consequences
FP FP
FP
FP
FP
FP
This person is a criminal. They were detained for no reason.
Bad Predictive Policing → Injustice
Specificity Goal
NPV Goal
TN
TN TN TN TN
Common Goal
We use both metrics when actual positives are less relevant. In essence, we aim to rule out a
phenomenon. For example, we want to know how many healthy people (no disease detected) there are
in a population. Or, how many trustworthy websites (not fraudulent) is someone visiting.
They don't have cancer.
4 Author: Yousef Alghofaili
Hacks
Previously explained evaluation metrics, among many, are
granular, as they focus on one angle of prediction quality
which can mislead us into thinking that a predictive model
is highly accurate. Generally, these metrics are not used
solely. Let us see how easy it is to manipulate the
aforementioned metrics.
5 Author: Yousef Alghofaili
Get at least one positive sample correctly Predict almost all samples as negative
TP≈1
TP≈1 FP≈0
100%
Predicting positive samples with a high confidence threshold would potentially bring out this case. In
addition, when positive samples are disproportionately higher than negatives, false positives will
probabilistically be rarer. Hence, precision will tend to be high.
Precision
Negatives
TN≈50
Positives
FN≈49
TP≈1
Hacking
6 Author: Yousef Alghofaili
Precision is the ratio of correctly classified positive samples to the total number of positive predictions.
Hence the name, Positive Predictive Value.
50 Positive Samples 50 Negative Samples
Dataset
7 Author: Yousef Alghofaili
50 Positive Samples 50 Negative Samples
Dataset
Recall Hacking
Recall is the ratio of correctly classified positive samples to the total number of actual positive samples.
Hence the name, True Positive Rate.
Predict all samples as positive
Negatives
Positives
TP=50 FP=50
TP=50
TP=50 FN=0
100%
Similar to precision, when positive samples are disproportionately higher, the classifier would generally
be biased towards positive class predictions to reduce the number of mistakes.
8 Author: Yousef Alghofaili
50 Positive Samples 50 Negative Samples
Dataset
Specificity Hacking
Specificity is the ratio of correctly classified negative samples to the total number of actual negative
samples. Hence the name, True Negative Rate.
Predict all samples as negative
Negatives
Positives
FN=50 TN=50
TN=50
TN=50 FP=0
100%
Contrary to Recall (Sensitivity), Specificity focuses on the negative class. Hence, we face this problem
when negative samples are disproportionately higher. Notice how the Balanced Accuracy metric
intuitively solves this issue in subsequent pages.
9 Author: Yousef Alghofaili
50 Positive Samples 50 Negative Samples
Dataset
Negative Predictive Value is the ratio of correctly classified negative samples to the total number of negative
predictions. Hence the name.
NPV Hacking
Get at least one negative sample correctly
Predict almost all samples as positive
Negatives
Positives
TP≈50 FP≈49
TN≈1
TN≈1
TN≈1 FN≈0
100%
Predicting negative samples with a high confidence threshold has this case as a consequence. Also,
when negative samples are disproportionately higher, false negatives will probabilistically be rarer.
Thus, NPV will tend to be high.
As we have seen above, some metrics can misinform us
about the actual performance of a classifier. However,
there are other metrics that include more information
about the performance. Nevertheless, all metrics can be
“hacked” in one way or another. Hence, we commonly
report multiple metrics to observe multiple viewpoints
of the model's performance.
10 Author: Yousef Alghofaili
Comprehensive
Metrics
Accuracy
TP TN
TP TN
FP FN
Accuracy treats all error types (false positives and false negatives) as equal. However, equal is not always
preferred.
Since accuracy assigns equal cost to all error types, having significantly more positive samples than
negatives will make accuracy biased towards the larger class. In fact, the Accuracy Paradox is a direct
"hack" against the metric. Assume you have 99 samples of class 1 and 1 sample of class 0. If your
classifier predicts everything as class 1, it will get an accuracy of 99%.
Positives Negatives
Accuracy Paradox
11 Author: Yousef Alghofaili
F1-Score is asymmetric to the choice of which class is negative or positive. Changing the positive
class into the negative one will not produce a similar score in most cases.
Precision Recall
Precision Recall
2
F1-Score does not account for true negatives. For example, correctly diagnosing a patient with no
disease (true negative) has no impact on the F1-Score.
Positives Negatives Negatives Positives
Asymmetric Measure
True Negatives Absence
F1-Score
F1-Score will combine precision and recall in a way that is sensitive to a decrease in any of the two (Harmonic
Mean). Note that the issues mentioned below do apply to Fβ
score in general.
Extra: Know more about Fβ
Score on Page 18 Author: Yousef Alghofaili
12
Balanced Accuracy
Balanced Accuracy accounts for the positive and negative classes independently using Sensitivity and
Specificity, respectively. The metric partially solves the Accuracy paradox through independent calculation
of error types and solves the true negative absence problem in Fβ
-Score through the inclusion of Specificity.
Sensitivity Specificity
2
Balanced Accuracy is commonly robust against imbalanced datasets, but that does not apply to the
above-illustrated cases. Both models perform poorly at predicting one of the two (positive P or
negative N) classes, therefore unreliable at one. Yet, Balanced Accuracy is 90%, which is misleading.
Relative Differences in error types
13
9
1000
TP
FP
1
TP
FP
9000
9
TN
FN
1000
9000
TN
1
FN
Author: Yousef Alghofaili
Matthews Correlation Coefficient (MCC)
MCC calculates the correlation between the actual and predicted labels, which produces a number between
-1 and 1. Hence, it will only produce a good score if the model is accurate in all confusion matrix components.
MCC is the most robust metric against imbalanced dataset issues or random classifications.
( )
FP FN
( )
TP TN
( )
TP FP TP FN FP TN FN
( ) ( ) ( )
MCC faces an issue of it being undefined whenever a full
row or a column in a confusion matrix is zeros. However,
the issue is outside the scope of this document. Note
that this is solved by simply substituting zeros with an
arbitrarily small value.
14
TN
Author: Yousef Alghofaili
Conclusion
We have gone through all confusion matrix components,
discussed some of the most popular metrics, how easy it is
for them to be "hacked", alternatives to overcome these
problems through more generalized metrics, and each one's
limitations. The key takeaways are:
Recognize the hacks against granular metrics as you might fall into one unintentionally. Although
these metrics are not solely used in reporting, they are heavily used in development settings to
debug a classifier's behavior.
Know the limitations of popular classification evaluations metrics used in reporting so that you
become equipped with enough acumen to decide whether you have obtained the optimal
classifier or not.
Never get persuaded by the phrase "THE BEST" in the context of machine learning, especially
evaluation metrics. Every metric approached in this document (including MCC) is the
best metric only when it best fits the project's objective.
15 Author: Yousef Alghofaili
References
Chicco, D., & Jurman, G. (2020). The advantages of the Matthews correlation coefficient
(MCC) over F1 score and accuracy in binary classification evaluation. BMC genomics, 21(1),
1-13.
16
Chicco, D., Tötsch, N., & Jurman, G. (2021). The Matthews correlation coefficient (MCC) is
more reliable than balanced accuracy, bookmaker informedness, and markedness in two-class
confusion matrix evaluation. BioData mining, 14(1), 1-22.
Lalkhen, A. G., & McCluskey, A. (2008). Clinical tests: sensitivity and specificity. Continuing
education in anaesthesia critical care & pain, 8(6), 221-223.
Hull, D. (1993, July). Using statistical testing in the evaluation of retrieval experiments. In
Proceedings of the 16th annual international ACM SIGIR conference on Research and
development in information retrieval (pp. 329-338).
Hossin, M., & Sulaiman, M. N. (2015). A review on evaluation metrics for data classification
evaluations. International journal of data mining & knowledge management process, 5(2), 1.
Jurman, G., Riccadonna, S., & Furlanello, C. (2012). A comparison of MCC and CEN error
measures in multi-class prediction.
Chicco, D. (2017). Ten quick tips for machine learning in computational biology. BioData
mining, 10(1), 1-17.
Author: Yousef Alghofaili
Yousef Alghofaili
AI solutions architect and researcher who has studied at KFUPM
and Georgia Institute of Technology. He worked with multiple
research groups from KAUST, KSU, and KFUPM. He has also built
and managed noura.ai data science R&D team as the AI Director.
He is an official author at Towards Data Science Publication and
developer of KMeansInterp Algorithm.
THANK YOU!
17
For any feedback, issues, or inquiries, contact yousefalghofaili@gmail.com
Author: Yousef Alghofaili
Author
Reviewer
Dr. Motaz Alfarraj
Assistant Professor at KFUPM, and the Acting Director of SDAIA-
KFUPM Joint Research Center for Artificial Intelligence (JRC-AI).
He has received his Bachelor's degree from KFUPM, and earned
his Master's and Ph.D. degrees in Electrical Engineering, Digital
Image Processing and Computer Vision from Georgia Institute
of Technology. He has contributed to ML research as an author
of many research papers and won many awards in his field.
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/yousefgh/
https://www.linkedin.com/in/motazalfarraj/
https://www.linkedin.com/in/motazalfarraj/
https://www.linkedin.com/in/motazalfarraj/
https://www.linkedin.com/in/motazalfarraj/
https://www.linkedin.com/in/motazalfarraj/
https://www.linkedin.com/in/motazalfarraj/
https://www.linkedin.com/in/motazalfarraj/
mailto:yousefalghofaili@gmail.com
Fβ
Score is the generalized form of F1 Score (Fβ = 1
Score) where the difference lies within the variability of the
β Factor. The β Factor skews the final score into favoring recall β times over precision, enabling us to weigh
the risk of having false negatives (Type II Errors) and false positives (Type I Errors) differently.
Precision Recall
( 1 + β2
)
Precision Recall
( β2
)
β
β
β = 1
Precision is β times Less important than Recall
Precision is β times More important than Recall
Balanced F1-Score
β
β
β = 1
Fβ
Score has been originally developed to evaluate Information Retrieval (IR) systems such as Google
Search Engine. When you search for a webpage, but it does not appear, you are experiencing the
engine's low Recall. When the results you see are completely irrelevant, you are experiencing its low
Precision. Hence, search engines play with the β Factor to optimize User Experience by favoring one
of the two experiences you have had over another.
Fβ
Score
Extra
18 Author: Yousef Alghofaili

More Related Content

What's hot (20)

Machine learning session4(linear regression)
Machine learning   session4(linear regression)Machine learning   session4(linear regression)
Machine learning session4(linear regression)
 
Performance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning AlgorithmsPerformance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning Algorithms
 
Machine learning
Machine learningMachine learning
Machine learning
 
Tutorial on Object Detection (Faster R-CNN)
Tutorial on Object Detection (Faster R-CNN)Tutorial on Object Detection (Faster R-CNN)
Tutorial on Object Detection (Faster R-CNN)
 
Naive Bayes Presentation
Naive Bayes PresentationNaive Bayes Presentation
Naive Bayes Presentation
 
Lstm
LstmLstm
Lstm
 
Recurrent Neural Networks
Recurrent Neural NetworksRecurrent Neural Networks
Recurrent Neural Networks
 
Backpropagation And Gradient Descent In Neural Networks | Neural Network Tuto...
Backpropagation And Gradient Descent In Neural Networks | Neural Network Tuto...Backpropagation And Gradient Descent In Neural Networks | Neural Network Tuto...
Backpropagation And Gradient Descent In Neural Networks | Neural Network Tuto...
 
AlexNet
AlexNetAlexNet
AlexNet
 
Data Preprocessing
Data PreprocessingData Preprocessing
Data Preprocessing
 
Cnn
CnnCnn
Cnn
 
Unsupervised learning clustering
Unsupervised learning clusteringUnsupervised learning clustering
Unsupervised learning clustering
 
Kmeans
KmeansKmeans
Kmeans
 
K means Clustering Algorithm
K means Clustering AlgorithmK means Clustering Algorithm
K means Clustering Algorithm
 
Feedforward neural network
Feedforward neural networkFeedforward neural network
Feedforward neural network
 
Confusion Matrix
Confusion MatrixConfusion Matrix
Confusion Matrix
 
Naive bayes
Naive bayesNaive bayes
Naive bayes
 
Decision tree
Decision treeDecision tree
Decision tree
 
Anomaly detection
Anomaly detectionAnomaly detection
Anomaly detection
 
Naive Bayes
Naive BayesNaive Bayes
Naive Bayes
 

Similar to Confusion matrix and classification evaluation metrics

Lecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptxLecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptxGauravSonawane51
 
04 performance metrics v2
04 performance metrics v204 performance metrics v2
04 performance metrics v2Anne Starr
 
Machine learning session5(logistic regression)
Machine learning   session5(logistic regression)Machine learning   session5(logistic regression)
Machine learning session5(logistic regression)Abhimanyu Dwivedi
 
Performance Metrics, Baseline Model, and Hyper Parameter
Performance Metrics, Baseline Model, and Hyper ParameterPerformance Metrics, Baseline Model, and Hyper Parameter
Performance Metrics, Baseline Model, and Hyper ParameterIndraFransiskusAlam1
 
Performance of the classification algorithm
Performance of the classification algorithmPerformance of the classification algorithm
Performance of the classification algorithmHoopeer Hoopeer
 
Important Classification and Regression Metrics.pptx
Important Classification and Regression Metrics.pptxImportant Classification and Regression Metrics.pptx
Important Classification and Regression Metrics.pptxChode Amarnath
 
A Research Study On Alcohol Abuse
A Research Study On Alcohol AbuseA Research Study On Alcohol Abuse
A Research Study On Alcohol AbuseLynn Holkesvik
 
2016 Symposium Poster - statistics - Final
2016 Symposium Poster - statistics - Final2016 Symposium Poster - statistics - Final
2016 Symposium Poster - statistics - FinalBrian Lin
 
Assessing the predictive capacity measur marco scattareggia
Assessing the predictive capacity measur   marco scattareggiaAssessing the predictive capacity measur   marco scattareggia
Assessing the predictive capacity measur marco scattareggiaScattareggia
 
Assessing the predictive capacity measur marco scattareggia
Assessing the predictive capacity measur   marco scattareggiaAssessing the predictive capacity measur   marco scattareggia
Assessing the predictive capacity measur marco scattareggiaScattareggia
 
Evaluation measures for models assessment over imbalanced data sets
Evaluation measures for models assessment over imbalanced data setsEvaluation measures for models assessment over imbalanced data sets
Evaluation measures for models assessment over imbalanced data setsAlexander Decker
 
Page 266LEARNING OBJECTIVES· Explain how researchers use inf.docx
Page 266LEARNING OBJECTIVES· Explain how researchers use inf.docxPage 266LEARNING OBJECTIVES· Explain how researchers use inf.docx
Page 266LEARNING OBJECTIVES· Explain how researchers use inf.docxkarlhennesey
 
Basics of Sample Size Estimation
Basics of Sample Size EstimationBasics of Sample Size Estimation
Basics of Sample Size EstimationMandar Baviskar
 
Math3010 week 5
Math3010 week 5Math3010 week 5
Math3010 week 5stanbridge
 
DL.f23-lec15.ConfusionMatrix.pptx
DL.f23-lec15.ConfusionMatrix.pptxDL.f23-lec15.ConfusionMatrix.pptx
DL.f23-lec15.ConfusionMatrix.pptxAyeshaIfkikhar
 

Similar to Confusion matrix and classification evaluation metrics (20)

Lecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptxLecture-12Evaluation Measures-ML.pptx
Lecture-12Evaluation Measures-ML.pptx
 
04 performance metrics v2
04 performance metrics v204 performance metrics v2
04 performance metrics v2
 
Machine learning session5(logistic regression)
Machine learning   session5(logistic regression)Machine learning   session5(logistic regression)
Machine learning session5(logistic regression)
 
Performance Metrics, Baseline Model, and Hyper Parameter
Performance Metrics, Baseline Model, and Hyper ParameterPerformance Metrics, Baseline Model, and Hyper Parameter
Performance Metrics, Baseline Model, and Hyper Parameter
 
Performance of the classification algorithm
Performance of the classification algorithmPerformance of the classification algorithm
Performance of the classification algorithm
 
Hypothesis testing
Hypothesis testingHypothesis testing
Hypothesis testing
 
The Lachman Test
The Lachman TestThe Lachman Test
The Lachman Test
 
Important Classification and Regression Metrics.pptx
Important Classification and Regression Metrics.pptxImportant Classification and Regression Metrics.pptx
Important Classification and Regression Metrics.pptx
 
A Research Study On Alcohol Abuse
A Research Study On Alcohol AbuseA Research Study On Alcohol Abuse
A Research Study On Alcohol Abuse
 
2016 Symposium Poster - statistics - Final
2016 Symposium Poster - statistics - Final2016 Symposium Poster - statistics - Final
2016 Symposium Poster - statistics - Final
 
Assessing the predictive capacity measur marco scattareggia
Assessing the predictive capacity measur   marco scattareggiaAssessing the predictive capacity measur   marco scattareggia
Assessing the predictive capacity measur marco scattareggia
 
Assessing the predictive capacity measur marco scattareggia
Assessing the predictive capacity measur   marco scattareggiaAssessing the predictive capacity measur   marco scattareggia
Assessing the predictive capacity measur marco scattareggia
 
Research by MAGIC
Research by MAGICResearch by MAGIC
Research by MAGIC
 
Evaluation measures for models assessment over imbalanced data sets
Evaluation measures for models assessment over imbalanced data setsEvaluation measures for models assessment over imbalanced data sets
Evaluation measures for models assessment over imbalanced data sets
 
Analysis and Interpretation
Analysis and InterpretationAnalysis and Interpretation
Analysis and Interpretation
 
Page 266LEARNING OBJECTIVES· Explain how researchers use inf.docx
Page 266LEARNING OBJECTIVES· Explain how researchers use inf.docxPage 266LEARNING OBJECTIVES· Explain how researchers use inf.docx
Page 266LEARNING OBJECTIVES· Explain how researchers use inf.docx
 
Basics of Sample Size Estimation
Basics of Sample Size EstimationBasics of Sample Size Estimation
Basics of Sample Size Estimation
 
Math3010 week 5
Math3010 week 5Math3010 week 5
Math3010 week 5
 
DL.f23-lec15.ConfusionMatrix.pptx
DL.f23-lec15.ConfusionMatrix.pptxDL.f23-lec15.ConfusionMatrix.pptx
DL.f23-lec15.ConfusionMatrix.pptx
 
How to do the maths
How to do the mathsHow to do the maths
How to do the maths
 

More from Minesh A. Jethva

TadGAN: Time Series Anomaly Detection Using GANs
TadGAN: Time Series Anomaly Detection Using GANsTadGAN: Time Series Anomaly Detection Using GANs
TadGAN: Time Series Anomaly Detection Using GANsMinesh A. Jethva
 
Graph machine learning table of content
Graph machine learning table of contentGraph machine learning table of content
Graph machine learning table of contentMinesh A. Jethva
 
Roadmap for Data Scientist
Roadmap for Data ScientistRoadmap for Data Scientist
Roadmap for Data ScientistMinesh A. Jethva
 
Influenza Drug Resistance Database Development & Analysis Tool
Influenza Drug Resistance Database Development & Analysis ToolInfluenza Drug Resistance Database Development & Analysis Tool
Influenza Drug Resistance Database Development & Analysis ToolMinesh A. Jethva
 
NGS Pipeline Preparation - Tools Selection
NGS Pipeline Preparation - Tools SelectionNGS Pipeline Preparation - Tools Selection
NGS Pipeline Preparation - Tools SelectionMinesh A. Jethva
 
BioFuel - MetaTranscriptomics - Enzyme Activity
BioFuel - MetaTranscriptomics - Enzyme ActivityBioFuel - MetaTranscriptomics - Enzyme Activity
BioFuel - MetaTranscriptomics - Enzyme ActivityMinesh A. Jethva
 

More from Minesh A. Jethva (11)

TadGAN: Time Series Anomaly Detection Using GANs
TadGAN: Time Series Anomaly Detection Using GANsTadGAN: Time Series Anomaly Detection Using GANs
TadGAN: Time Series Anomaly Detection Using GANs
 
Hidden Markov Models
Hidden Markov ModelsHidden Markov Models
Hidden Markov Models
 
Azure Engineering MLOps
Azure Engineering MLOps Azure Engineering MLOps
Azure Engineering MLOps
 
Graph machine learning table of content
Graph machine learning table of contentGraph machine learning table of content
Graph machine learning table of content
 
Google cloud in 10 slides
Google cloud in 10 slidesGoogle cloud in 10 slides
Google cloud in 10 slides
 
What is apache kafka
What is apache kafkaWhat is apache kafka
What is apache kafka
 
Roadmap for Data Scientist
Roadmap for Data ScientistRoadmap for Data Scientist
Roadmap for Data Scientist
 
Git Practices
Git PracticesGit Practices
Git Practices
 
Influenza Drug Resistance Database Development & Analysis Tool
Influenza Drug Resistance Database Development & Analysis ToolInfluenza Drug Resistance Database Development & Analysis Tool
Influenza Drug Resistance Database Development & Analysis Tool
 
NGS Pipeline Preparation - Tools Selection
NGS Pipeline Preparation - Tools SelectionNGS Pipeline Preparation - Tools Selection
NGS Pipeline Preparation - Tools Selection
 
BioFuel - MetaTranscriptomics - Enzyme Activity
BioFuel - MetaTranscriptomics - Enzyme ActivityBioFuel - MetaTranscriptomics - Enzyme Activity
BioFuel - MetaTranscriptomics - Enzyme Activity
 

Recently uploaded

1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样vhwb25kk
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Colleen Farrelly
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...limedy534
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.natarajan8993
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAbdelrhman abooda
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Cantervoginip
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理e4aez8ss
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 

Recently uploaded (20)

1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
1:1定制(UQ毕业证)昆士兰大学毕业证成绩单修改留信学历认证原版一模一样
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024Generative AI for Social Good at Open Data Science East 2024
Generative AI for Social Good at Open Data Science East 2024
 
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
Effects of Smartphone Addiction on the Academic Performances of Grades 9 to 1...
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.RABBIT: A CLI tool for identifying bots based on their GitHub events.
RABBIT: A CLI tool for identifying bots based on their GitHub events.
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
ASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel CanterASML's Taxonomy Adventure by Daniel Canter
ASML's Taxonomy Adventure by Daniel Canter
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
Call Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort ServiceCall Girls in Saket 99530🔝 56974 Escort Service
Call Girls in Saket 99530🔝 56974 Escort Service
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 

Confusion matrix and classification evaluation metrics

  • 1. Confusion Trust is a must when a decision-maker's judgment is critical. To give such trust, we summarize all possible decision outcomes into four categories: True Positives (TP), False Positives (FP), True Negatives (TN), and False Negatives (FN) to serve an outlook of how confused their judgments are, namely, the confusion matrix. From the confusion matrix, we calculate different metrics to measure the quality of the outcomes. These measures influence how much trust we should give to the decision- maker (classifier) in particular use cases. This document will discuss the most common classification evaluation metrics, their focuses, and their limitations in a straightforward and informative manner. Matrix TN TP FP FN and Classification Evaluation Metrics Author: Yousef Alghofaili 1
  • 2. NPV (Negative Predictive Value) TN TN FN True Negative Rate Specificity TN TN FP TP TP Recall FN Sensitivity or True Positive Rate TP TP FP Precision Positive Predictive Value Matthews Correlation Coefficient (MCC) ( ) FP FN ( ) TP TN ( ) TP FP TP FN FP TN FN ( ) ( ) ( ) Accuracy TP TN TP TN FP FN F1-Score Precision Recall Precision Recall 2 Balanced Accuracy Sensitivity Specificity 2 2 TN Author: Yousef Alghofaili Predicted Value Actual Value Negative Positive Positive Negative TN TP FP FN TN This car is NOT red This car is NOT red TP This car is red This car is red FN This car is NOT red This car is red FP This car is red This car is NOT red Guess Fact Confusion Matrix
  • 3. Precision & Recall FP FP FP FP FP FP This customer loves steak! No, this customer is vegan. Bad Product Recommendation → Less Conversion → Decrease in Sales FN FN FN FN FN FN The product has no defects. A customer called... He's angry. Bad Defect Detector → Bad Quality → Customer Dissatisfaction TP TP TP TP TP Common Goal Precision Goal Recall Goal We use both metrics when actual negatives are less relevant. For example, googling "Confusion Matrix" will have trillions of unrelated (negative) web pages, such as the "Best Pizza Recipe!" web page. Accounting for whether we have correctly predicted the latter webpage and alike as negative is impractical. 3 Author: Yousef Alghofaili
  • 4. Specificity & NPV FN FN FN FN FN FN No, they should be treated! Bad Diagnosis → No Treatment → Consequences FP FP FP FP FP FP This person is a criminal. They were detained for no reason. Bad Predictive Policing → Injustice Specificity Goal NPV Goal TN TN TN TN TN Common Goal We use both metrics when actual positives are less relevant. In essence, we aim to rule out a phenomenon. For example, we want to know how many healthy people (no disease detected) there are in a population. Or, how many trustworthy websites (not fraudulent) is someone visiting. They don't have cancer. 4 Author: Yousef Alghofaili
  • 5. Hacks Previously explained evaluation metrics, among many, are granular, as they focus on one angle of prediction quality which can mislead us into thinking that a predictive model is highly accurate. Generally, these metrics are not used solely. Let us see how easy it is to manipulate the aforementioned metrics. 5 Author: Yousef Alghofaili
  • 6. Get at least one positive sample correctly Predict almost all samples as negative TP≈1 TP≈1 FP≈0 100% Predicting positive samples with a high confidence threshold would potentially bring out this case. In addition, when positive samples are disproportionately higher than negatives, false positives will probabilistically be rarer. Hence, precision will tend to be high. Precision Negatives TN≈50 Positives FN≈49 TP≈1 Hacking 6 Author: Yousef Alghofaili Precision is the ratio of correctly classified positive samples to the total number of positive predictions. Hence the name, Positive Predictive Value. 50 Positive Samples 50 Negative Samples Dataset
  • 7. 7 Author: Yousef Alghofaili 50 Positive Samples 50 Negative Samples Dataset Recall Hacking Recall is the ratio of correctly classified positive samples to the total number of actual positive samples. Hence the name, True Positive Rate. Predict all samples as positive Negatives Positives TP=50 FP=50 TP=50 TP=50 FN=0 100% Similar to precision, when positive samples are disproportionately higher, the classifier would generally be biased towards positive class predictions to reduce the number of mistakes.
  • 8. 8 Author: Yousef Alghofaili 50 Positive Samples 50 Negative Samples Dataset Specificity Hacking Specificity is the ratio of correctly classified negative samples to the total number of actual negative samples. Hence the name, True Negative Rate. Predict all samples as negative Negatives Positives FN=50 TN=50 TN=50 TN=50 FP=0 100% Contrary to Recall (Sensitivity), Specificity focuses on the negative class. Hence, we face this problem when negative samples are disproportionately higher. Notice how the Balanced Accuracy metric intuitively solves this issue in subsequent pages.
  • 9. 9 Author: Yousef Alghofaili 50 Positive Samples 50 Negative Samples Dataset Negative Predictive Value is the ratio of correctly classified negative samples to the total number of negative predictions. Hence the name. NPV Hacking Get at least one negative sample correctly Predict almost all samples as positive Negatives Positives TP≈50 FP≈49 TN≈1 TN≈1 TN≈1 FN≈0 100% Predicting negative samples with a high confidence threshold has this case as a consequence. Also, when negative samples are disproportionately higher, false negatives will probabilistically be rarer. Thus, NPV will tend to be high.
  • 10. As we have seen above, some metrics can misinform us about the actual performance of a classifier. However, there are other metrics that include more information about the performance. Nevertheless, all metrics can be “hacked” in one way or another. Hence, we commonly report multiple metrics to observe multiple viewpoints of the model's performance. 10 Author: Yousef Alghofaili Comprehensive Metrics
  • 11. Accuracy TP TN TP TN FP FN Accuracy treats all error types (false positives and false negatives) as equal. However, equal is not always preferred. Since accuracy assigns equal cost to all error types, having significantly more positive samples than negatives will make accuracy biased towards the larger class. In fact, the Accuracy Paradox is a direct "hack" against the metric. Assume you have 99 samples of class 1 and 1 sample of class 0. If your classifier predicts everything as class 1, it will get an accuracy of 99%. Positives Negatives Accuracy Paradox 11 Author: Yousef Alghofaili
  • 12. F1-Score is asymmetric to the choice of which class is negative or positive. Changing the positive class into the negative one will not produce a similar score in most cases. Precision Recall Precision Recall 2 F1-Score does not account for true negatives. For example, correctly diagnosing a patient with no disease (true negative) has no impact on the F1-Score. Positives Negatives Negatives Positives Asymmetric Measure True Negatives Absence F1-Score F1-Score will combine precision and recall in a way that is sensitive to a decrease in any of the two (Harmonic Mean). Note that the issues mentioned below do apply to Fβ score in general. Extra: Know more about Fβ Score on Page 18 Author: Yousef Alghofaili 12
  • 13. Balanced Accuracy Balanced Accuracy accounts for the positive and negative classes independently using Sensitivity and Specificity, respectively. The metric partially solves the Accuracy paradox through independent calculation of error types and solves the true negative absence problem in Fβ -Score through the inclusion of Specificity. Sensitivity Specificity 2 Balanced Accuracy is commonly robust against imbalanced datasets, but that does not apply to the above-illustrated cases. Both models perform poorly at predicting one of the two (positive P or negative N) classes, therefore unreliable at one. Yet, Balanced Accuracy is 90%, which is misleading. Relative Differences in error types 13 9 1000 TP FP 1 TP FP 9000 9 TN FN 1000 9000 TN 1 FN Author: Yousef Alghofaili
  • 14. Matthews Correlation Coefficient (MCC) MCC calculates the correlation between the actual and predicted labels, which produces a number between -1 and 1. Hence, it will only produce a good score if the model is accurate in all confusion matrix components. MCC is the most robust metric against imbalanced dataset issues or random classifications. ( ) FP FN ( ) TP TN ( ) TP FP TP FN FP TN FN ( ) ( ) ( ) MCC faces an issue of it being undefined whenever a full row or a column in a confusion matrix is zeros. However, the issue is outside the scope of this document. Note that this is solved by simply substituting zeros with an arbitrarily small value. 14 TN Author: Yousef Alghofaili
  • 15. Conclusion We have gone through all confusion matrix components, discussed some of the most popular metrics, how easy it is for them to be "hacked", alternatives to overcome these problems through more generalized metrics, and each one's limitations. The key takeaways are: Recognize the hacks against granular metrics as you might fall into one unintentionally. Although these metrics are not solely used in reporting, they are heavily used in development settings to debug a classifier's behavior. Know the limitations of popular classification evaluations metrics used in reporting so that you become equipped with enough acumen to decide whether you have obtained the optimal classifier or not. Never get persuaded by the phrase "THE BEST" in the context of machine learning, especially evaluation metrics. Every metric approached in this document (including MCC) is the best metric only when it best fits the project's objective. 15 Author: Yousef Alghofaili
  • 16. References Chicco, D., & Jurman, G. (2020). The advantages of the Matthews correlation coefficient (MCC) over F1 score and accuracy in binary classification evaluation. BMC genomics, 21(1), 1-13. 16 Chicco, D., Tötsch, N., & Jurman, G. (2021). The Matthews correlation coefficient (MCC) is more reliable than balanced accuracy, bookmaker informedness, and markedness in two-class confusion matrix evaluation. BioData mining, 14(1), 1-22. Lalkhen, A. G., & McCluskey, A. (2008). Clinical tests: sensitivity and specificity. Continuing education in anaesthesia critical care & pain, 8(6), 221-223. Hull, D. (1993, July). Using statistical testing in the evaluation of retrieval experiments. In Proceedings of the 16th annual international ACM SIGIR conference on Research and development in information retrieval (pp. 329-338). Hossin, M., & Sulaiman, M. N. (2015). A review on evaluation metrics for data classification evaluations. International journal of data mining & knowledge management process, 5(2), 1. Jurman, G., Riccadonna, S., & Furlanello, C. (2012). A comparison of MCC and CEN error measures in multi-class prediction. Chicco, D. (2017). Ten quick tips for machine learning in computational biology. BioData mining, 10(1), 1-17. Author: Yousef Alghofaili
  • 17. Yousef Alghofaili AI solutions architect and researcher who has studied at KFUPM and Georgia Institute of Technology. He worked with multiple research groups from KAUST, KSU, and KFUPM. He has also built and managed noura.ai data science R&D team as the AI Director. He is an official author at Towards Data Science Publication and developer of KMeansInterp Algorithm. THANK YOU! 17 For any feedback, issues, or inquiries, contact yousefalghofaili@gmail.com Author: Yousef Alghofaili Author Reviewer Dr. Motaz Alfarraj Assistant Professor at KFUPM, and the Acting Director of SDAIA- KFUPM Joint Research Center for Artificial Intelligence (JRC-AI). He has received his Bachelor's degree from KFUPM, and earned his Master's and Ph.D. degrees in Electrical Engineering, Digital Image Processing and Computer Vision from Georgia Institute of Technology. He has contributed to ML research as an author of many research papers and won many awards in his field. https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/yousefgh/ https://www.linkedin.com/in/motazalfarraj/ https://www.linkedin.com/in/motazalfarraj/ https://www.linkedin.com/in/motazalfarraj/ https://www.linkedin.com/in/motazalfarraj/ https://www.linkedin.com/in/motazalfarraj/ https://www.linkedin.com/in/motazalfarraj/ https://www.linkedin.com/in/motazalfarraj/ mailto:yousefalghofaili@gmail.com
  • 18. Fβ Score is the generalized form of F1 Score (Fβ = 1 Score) where the difference lies within the variability of the β Factor. The β Factor skews the final score into favoring recall β times over precision, enabling us to weigh the risk of having false negatives (Type II Errors) and false positives (Type I Errors) differently. Precision Recall ( 1 + β2 ) Precision Recall ( β2 ) β β β = 1 Precision is β times Less important than Recall Precision is β times More important than Recall Balanced F1-Score β β β = 1 Fβ Score has been originally developed to evaluate Information Retrieval (IR) systems such as Google Search Engine. When you search for a webpage, but it does not appear, you are experiencing the engine's low Recall. When the results you see are completely irrelevant, you are experiencing its low Precision. Hence, search engines play with the β Factor to optimize User Experience by favoring one of the two experiences you have had over another. Fβ Score Extra 18 Author: Yousef Alghofaili