Skip to content

Accuracy

Easy — everyone uses thisAI & ML

ELI5 — The Vibe Check

Accuracy is the simplest way to score a model — what percentage of predictions were correct. 95% accuracy sounds great, until you realize 95% of your emails are not spam, so a model that never flags anything gets 95% accuracy too. Accuracy lies. Always check precision and recall too.

Real Talk

Accuracy is the fraction of correct predictions out of total predictions: (TP + TN) / (TP + TN + FP + FN). It is a useful metric when classes are balanced but misleading for imbalanced datasets. A spam filter with 99% non-spam data can achieve 99% accuracy by predicting 'not spam' for everything.

When You'll Hear This

"The model hit 98% accuracy on the test set." / "Accuracy is misleading on this imbalanced dataset."

Made with passive-aggressive love by manoga.digital. Powered by Claude.