1. Home
  2. Glossary
  3. Explainability
AI glossary · Safety, ethics & policy

Explainability

Explainability: Explainability is the degree to which you can understand why an AI system produced a particular output. It matters most when a decision affects a person and someone has to justify it.

Simple models are easy to explain: a loan score built on five rules can show exactly which rule mattered. Deep neural networks are not. A large language model has billions of parameters and no rule you can point to, so its answer is the result of a computation nobody can fully trace. That is what people mean when they call these models black boxes.

Researchers have built partial windows. Techniques such as SHAP and LIME estimate which inputs mattered most for a prediction. Interpretability research on language models tries to identify internal features that correspond to concepts. And reasoning models show their steps. But be careful: a model's stated reasoning is a generated explanation, and studies have found it does not always match what actually drove the answer.

For most workplace uses, explainability is a process requirement rather than a technical one. If a tool influences hiring, lending, insurance, medical triage, or discipline, you need to be able to tell the affected person what factors were considered. Laws such as the Equal Credit Opportunity Act already require specific reasons for adverse credit decisions, and an AI that cannot supply them is not usable for that job.

Example at work

An insurance agency wants to use AI to flag applications for extra review. The compliance lead insists the system output the specific application fields that triggered each flag, so an underwriter can confirm the reason is legitimate and document it. The vendor's "high risk" score with no breakdown gets rejected.

Why it matters

When you cannot explain a decision, you cannot defend it, fix it, or learn from it. Ask any AI tool that affects people to show its inputs and reasons, keep a human able to override it, and treat an unexplained score as a prompt for review rather than a verdict.

Related terms