#ConfusionMatrix
📊Friday AI Fact: What is a Confusion Matrix?

A confusion matrix is a table that helps you understand how well your classification model is performing.

Same time next Friday - new AI fact coming your way!

#ELOQUENCE #AI #MachineLearning #ConfusionMatrix
August 8, 2025 at 10:46 AM
The question is whether 70% sensitivity, 90% precision is good enough (maybe, for some applications). To play at home (in R): `tab <- matrix(c(229, 327-229, 27, 173-27), nrow=2, dimnames = list("Predicted" = c("Event", "No Event"), "Reference" = c("Event", "No Event")))
caret::confusionMatrix(tab)`
January 28, 2025 at 9:55 PM
December 8, 2024 at 4:04 AM
December 11, 2024 at 12:20 PM