Writing

Why 95% accurate is a liability

A number that means success in consumer AI means the opposite in work where being wrong has a cost.

Enso Intelligence · Dhaka/June 19, 2026 · 5 min

The number that should reassure you, and does not

A model that is ninety-five percent accurate sounds like a good model. In most of software it is. Recommend the wrong film one time in twenty and no one is harmed. Autocomplete the wrong word and the person fixes it without thinking. At that error rate, a consumer product feels close to magic.

Now move the same number into a place where being wrong has a cost. A compliance check that is ninety-five percent accurate is a system that produces a wrong answer once in every twenty. Not a wrong film. A missed sanction. An unlawful transfer waved through. A filing deadline reported as met when it was not. The accuracy did not change. The meaning of the error did.

This is the thing that does not survive the move from consumer AI to regulated AI: the belief that a high percentage is the same as safe.

The five percent is not random

It would be one thing if the errors were scattered evenly, a little noise spread across easy and hard cases alike. They are not. A model is most confident and most correct on the ordinary cases, the ones a junior analyst would also get right. It fails on the unusual ones. The edge cases, the novel structures, the deliberately disguised. Which is to say it fails exactly where you needed it, on the cases that were the reason you automated the check in the first place.

And you cannot tell which five percent. The model returns the wrong answer in the same confident tone it uses for the right ones. There is no flag, no tremor in the voice. The one in twenty that will cost you looks identical, on the screen, to the nineteen that are fine.

Why a better model does not fix it

The instinct is to push the number up. Ninety-five to ninety-nine. Ninety-nine to ninety-nine point nine. It helps, and it never finishes, because the problem is not the height of the number. It is the kind of number it is. A probability is not a guarantee, and no amount of polishing turns one into the other. "The model was ninety-nine percent confident" is not a sentence you can say to an auditor, a regulator, or a court and have it count for anything. They do not want your confidence. They want to know whether the rule was followed, and to see why you say it was.

What replaces the percentage

The fix is not a more accurate guess. It is to stop guessing about the part that has to be certain. Put a deterministic layer underneath the model and let the rule produce the decision. A rule that checks whether a filing landed inside its window does not have an accuracy of ninety-five percent. It either fired or it did not, and you can read exactly why.

{
  "rule_id": "DP-BREACH-EU-001",
  "source": "GDPR Article 33",
  "conditions": [
    { "type": "deadline_window", "from": "breach.aware_at", "to": "breach.authority_notified_at", "max_hours": 72 }
  ],
  "deterministic": true
}

The model still has a job, and it is one it is genuinely good at. It reads the messy document into the clean fields the rule needs, and it turns the rule's verdict back into language a person can act on. What it does not do is decide. The decision belongs to the part that cannot be ninety-five percent right, because it is not in the business of being a percentage at all.

The point

Ninety-five percent is a triumph in a domain where errors are cheap and a liability in a domain where they are not. The number did not lie. It was answering a different question than the one a regulated business is asking. The right question was never "how often is it right." It was "can you prove this particular answer, this time, to someone who is not inclined to believe you." A percentage cannot. A rule can.