Accuracy (AI)
A metric that measures how often an AI model's predictions are correct, expressed as a percentage of total predictions.
Accuracy is one of the simplest ways to measure how well an AI model performs. It answers a straightforward question: out of all the predictions the model made, what percentage were correct?
How accuracy is calculated
The formula is simple: divide the number of correct predictions by the total number of predictions, then multiply by one hundred. If a model classifies one thousand emails and correctly identifies nine hundred and twenty as spam or not-spam, its accuracy is ninety-two per cent.
When accuracy is useful
Accuracy works well when your data is balanced β meaning roughly equal numbers of each category. If you are building a model to distinguish cats from dogs and your dataset has five hundred of each, accuracy gives you a fair picture of performance.
When accuracy is misleading
Accuracy can be dangerously misleading with imbalanced data. Imagine a fraud detection model where only one per cent of transactions are fraudulent. A model that simply labels every transaction as "not fraud" achieves ninety-nine per cent accuracy β but catches zero actual fraud. This is why practitioners often use additional metrics like precision, recall, and F1 score alongside accuracy.
Accuracy in practice
- Classification tasks like spam detection, sentiment analysis, and image recognition commonly report accuracy
- Benchmarks use accuracy to compare models against standardised test sets
- Business decisions should never rely on accuracy alone β always ask what kinds of errors the model makes and what those errors cost
Understanding accuracy helps you ask the right questions when evaluating any AI tool: not just "how accurate is it?" but "accurate at what, and what happens when it is wrong?"
Why This Matters
When evaluating AI tools for your business, accuracy is the first metric vendors will quote β and the one most often misunderstood. Knowing that a high accuracy number can mask serious blind spots helps you ask sharper questions and avoid adopting tools that perform well on paper but fail in the scenarios that matter most to your organisation.
Related Terms
Continue learning in Foundations
This topic is covered in our lesson: What Is Artificial Intelligence (Really)?