Mental model

Model Interpretability Methods

Techniques for understanding how AI systems reach decisions, making opaque algorithms transparent and accountable.

Discover

A bank uses a highly accurate AI to approve loans, but no one can explain why certain applicants get rejected. Meanwhile, a simpler, less accurate model lets you see exactly how it reaches every decision. Which approach better serves the people being judged?

What matters more when AI affects lives?

Let's explore what we gain—and lose—when we demand explanations from AI.

Understand

Understand

Model interpretability methods are tools that reveal how an AI system makes decisions, like a translator that converts complex math into clear reasons a human can understand. These techniques peek inside what's often called a "black box" algorithm to show which factors influenced a prediction—such as showing that a loan denial was driven primarily by income rather than zip code. When you can see an AI's reasoning, you can catch mistakes, verify fairness, and decide whether to trust the system. Notice this: an unexplainable decision is an unaccountable one.

Full explanation

Full explanation

Interpretability methods work by either designing transparent models from scratch or by probing existing opaque models to understand their behavior. Global methods explain how a model works overall—such as which features matter most across all predictions—while local methods explain individual decisions, like why your specific credit application was approved or denied.

Common approaches include LIME, which creates simplified approximations by testing how predictions change when you slightly modify input data, and SHAP, which assigns each input feature a score representing its contribution to a particular prediction. Feature importance visualization shows which variables the model considers most heavily, while counterfactual explanations suggest minimal changes needed to flip a decision—for example, "your income would need to be $5,000 higher to qualify."

In healthcare, interpretability lets doctors verify that an AI is flagging patients based on legitimate risk factors rather than spurious patterns. In lending, regulators can check whether prohibited factors like race are indirectly influencing outcomes through correlated variables. In hiring, candidates can understand why they were screened out and receive actionable feedback.

There is no free lunch: simpler, interpretable models often sacrifice accuracy compared to complex deep learning systems. But for high-stakes decisions, transparency may matter more than performance. The tradeoff is between accepting black-box predictions that are slightly better on average, versus having systems we can question, challenge, and improve.

Research

Research

Interpretability research spans taxonomies that distinguish between intrinsic models (transparent by design like decision trees) and post-hoc methods that explain already-trained models. Studies reveal that accuracy and interpretability often compete: Rudin (2019) argues that for high-stakes decisions, interpretable models should be used instead of explaining black boxes, since they perform competitively while remaining transparent by design [1]. LIME, introduced by Ribeiro and colleagues (2016), uses local linear approximations to explain individual predictions by perturbing inputs and observing output changes [2]. SHAP, developed by Lundberg and Lee (2017), provides a unified framework based on game theory that attributes prediction outcomes to input features with guaranteed consistency properties [3]. Miller (2019) emphasizes that effective explanations must be social, tailored to what users actually need to know rather than technically exhaustive [4].

  • Arrieta (2020): Survey identifies key XAI taxonomies and challenges, finding that no single method works across all domains and that choice depends on user expertise and decision context [5].
  • Doshi-Velez and Kim (2017): Propose evaluating interpretability based on task-based performance, measuring whether humans actually make better decisions with the explanation [6].
  • Molnar (2024): Comprehensive open-source reference showing intrinsic interpretability through models like generalized additive models often beats post-hoc explanation reliability [7].

Limitations

Limitations

Interpretability has no universal metric—what's clear to a data scientist may confuse a subject matter expert. Post-hoc explanations can be misleading: LIME approximations may not faithfully represent the true model, and SHAP values can be computationally expensive for complex systems. Some argue interpretability is a proxy for what we actually want: trust, fairness, and accountability. Explanations can also create false confidence, making users trust systems more than warranted. Moreover, fully interpretable models may be inherently limited in the patterns they can capture, leaving performance on the table for problems where slight accuracy gains matter enormously. Finally, there's no guarantee that interpretable models are fair—transparent discrimination is still discrimination.

Try it

Synthesize

Choose a pattern from the guide, then pick an action to try with it.

Which pattern stands out?

What will you try?

Choose a pattern above to select an action.

Sources

Sources

Try it

Check your understanding

A hospital uses an AI to predict patient readmissions. Doctors accept the system's predictions without questioning them because the explanations seem plausible, even though the model sometimes misses obvious risk factors that any human would catch. What interpretability pitfall does this illustrate?

Show the guide's explanation

Answer: False confidence from explanations

This demonstrates how interpretability can create misplaced trust. When explanations seem reasonable, users may over-rely on the system and stop applying their own judgment—even when the system makes mistakes they should catch. Good explanations should invite scrutiny, not suppress it.

A lender rejects a loan application and the system provides a SHAP-based breakdown showing that 'income' contributed +0.3 toward approval while 'debt-to-income ratio' contributed -0.7 toward rejection. What does this actually tell the applicant about how to improve their chances?

Show the guide's explanation

Answer: They need to lower their debt-to-income ratio

The negative contribution from debt-to-income ratio indicates this factor is pulling the prediction toward rejection. This is actionable feedback—unlike knowing that a black box said 'no' without explanation. Counterfactual interpretability would go further, saying exactly what ratio threshold would flip the decision.

A company developing a credit-scoring model has two paths: train a complex neural network that achieves 95% accuracy but is opaque, or use an interpretable tree-based model that achieves 93% accuracy but allows full inspection of decision logic. Which tradeoff framework would support choosing the interpretable model?

Show the guide's explanation

Answer: High-stakes accountability

For decisions affecting people's lives (credit, employment, healthcare), accountability often justifies accepting slightly lower accuracy. An interpretable model lets regulators verify fairness, lets applicants appeal decisions with specific reasoning, and lets the company detect and fix problems. The 2% accuracy difference may not justify the accountability cost.

Keep exploring

Find another idea for the decision in front of you.

The complete Reframo library is free to read. Explore another guide whenever you are ready.

Model Interpretability Methods | Reframo