What is a confusion matrix?
A confusion matrix is a table that summarizes the performance of a binary classifier by showing true positives, false positives, false negatives, and true negatives.
How do I interpret the results from this calculator?
The calculator provides raw counts for TP, FP, FN, TN and derived metrics like accuracy, precision, recall, and F1-score to evaluate your model’s performance.
What is the difference between precision and recall?
Precision measures the accuracy of positive predictions, while recall measures the ability of a classifier to find all relevant instances.
Can this calculator handle multi-class classification?
No, this confusion matrix calculator is designed for binary classification only. For multi-class models, consider using a different tool or method.
What does the F1-score represent?
The F1-score is the harmonic mean of precision and recall, providing a balance between them to evaluate model performance.
How do I input data into this calculator?
Enter the counts for true positives, false positives, false negatives, and true negatives in their respective fields, then click calculate.
Why is accuracy not always a good metric?
Accuracy can be misleading if the class distribution is imbalanced. It’s better to use precision, recall, F1-score, or other metrics that consider both true and false predictions.