Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Confusion Matrix Explained
Search
Samuel Bohman
October 24, 2017
Science
0
70
Confusion Matrix Explained
This slide deck explains what a confusion matrix is and how to interpret it.
Samuel Bohman
October 24, 2017
Tweet
Share
Other Decks in Science
See All in Science
HDC tutorial
michielstock
1
560
AIPシンポジウム 2025年度 成果報告会 「因果推論チーム」
sshimizu2006
3
400
タンパク質間相互作⽤を利⽤した⼈⼯知能による新しい薬剤遺伝⼦-疾患相互作⽤の同定
tagtag
PRO
0
180
知能とはなにかーヒトとAIのあいだー
tagtag
PRO
0
190
HajimetenoLT vol.17
hashimoto_kei
1
190
会社でMLモデルを作るとは @電気通信大学 データアントレプレナーフェロープログラム
yuto16
1
580
データベース15: ビッグデータ時代のデータベース
trycycle
PRO
0
460
DMMにおけるABテスト検証設計の工夫
xc6da
1
1.6k
データベース12: 正規化(2/2) - データ従属性に基づく正規化
trycycle
PRO
0
1.1k
AkarengaLT vol.41
hashimoto_kei
1
120
Rashomon at the Sound: Reconstructing all possible paleoearthquake histories in the Puget Lowland through topological search
cossatot
0
700
NDCG is NOT All I Need
statditto
2
2.9k
Featured
See All Featured
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
Google's AI Overviews - The New Search
badams
0
930
My Coaching Mixtape
mlcsv
0
78
Reality Check: Gamification 10 Years Later
codingconduct
0
2.1k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
410
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.7k
Abbi's Birthday
coloredviolet
2
5.4k
Prompt Engineering for Job Search
mfonobong
0
200
Building Flexible Design Systems
yeseniaperezcruz
330
40k
Facilitating Awesome Meetings
lara
57
6.8k
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
290
Transcript
Confusion Matrix Explained Samuel Bohman
What is a Confusion Matrix? A common method for describing
the performance of a classification model consisting of true positives, true negatives, false positives, and false negatives. It is called a confusion matrix because it shows how confused the model is between the classes.
True Positives Predicted class Apple Orange Pear Actual class Apple
50 5 50 Orange 10 50 20 Pear 5 5 0 The model correctly classified 50 apples and 50 oranges.
True Negatives for Apple The model correctly classified 75 cases
as not belonging to class apple. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
True Negatives for Orange The model correctly classified 105 cases
as not belonging to class orange. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
True Negatives for Pear The model correctly classified 115 cases
as not belonging to class pear. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
False Positives for Apple The model incorrectly classified 15 cases
as apples. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
False Positives for Orange The model incorrectly classified 10 cases
as oranges. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
False Positives for Pear The model incorrectly classified 70 cases
as pears. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
False Negatives for Apple The model incorrectly classified 55 cases
as not belonging to class apple. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
False Negatives for Orange The model incorrectly classified 30 cases
as not belonging to class orange. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0
False Negatives for Pear The model incorrectly classified 10 cases
as not belonging to class pears. Predicted class Apple Orange Pear Actual class Apple 50 5 50 Orange 10 50 20 Pear 5 5 0