Caesar AI Atlas

Konfusionsmatrix

Caesar AI Atlas Definition

Eine Konfusionsmatrix ist eine Tabelle, die korrekte und fehlerhafte Vorhersagen eines Klassifikationsmodells durch den Vergleich vorhergesagter Klassen mit tatsächlichen Klassen zusammenfasst. Sie bildet die Grundlage für Metriken wie Accuracy, Precision, Recall, Spezifität und F1-Score.

Other Definitions

Konfusionsmatrix Source

An NxN table that summarizes the number of correct and incorrect predictions that a classification model made. For example, consider the following confusion matrix for a binary classification model: Tumor (predicted) --- 18 (TP) 6 (FP) The preceding confusion matrix shows the following: - Of the 19 predictions in which ground truth was Tumor, the model correctly classified 18 and incorrectly classified 1. - Of the 458 predictions in which ground truth was Non-Tumor, the model correctly classified 452 and incorrectly classified 6. The confusion matrix for a multi-class classification problem can help you identify patterns of mistakes. For example, consider the following confusion matrix for a 3-class multi-class classification model that categorizes three different iris types (Virginica, Versicolor, and Setosa). When the ground truth was Virginica, the confusion matrix shows that the model was far more likely to mistakenly predict Versicolor than Setosa: Setosa (predicted) Virginica (predicted) | ------| 88 0 | 6 7 | 2 109 | As yet another example, a confusion matrix could reveal that a model trained to recognize handwritten digits tends to mistakenly predict 9 instead of 4, or mistakenly predict 1 instead of 7. Confusion matrixes contain sufficient information to calculate a variety of performance metrics, including precision and recall.

Related Terms