6.3.1 · D1Interpretability & Explainability

Foundations — Importance of interpretability

1,801 words8 min readBack to topic

Before you can appreciate why interpretability matters, you must be able to read every symbol the parent note (Importance of interpretability) throws at you. This page assumes you have seen none of them. We build each one from a picture.


1. What even is a "model"? — the box with inputs and an output

Figure — Importance of interpretability

Look at the figure. On the left we feed in facts. In the middle sits the box (the model). On the right a single answer pops out. Everything in this topic is a comment on some part of that picture:

  • The facts on the left → we will call these features.
  • The box in the middle → the parent note asks: is it see-through (transparent) or painted black (a black box)?
  • The answer on the right → we will call this the prediction.

2. Features — the facts we feed in (, )

We write a single feature as . When there are many of them we imagine them stacked in a list:

Why the topic needs this: the parent note's whole point about the husky-vs-wolf classifier is that the model used the wrong feature (background snow instead of the animal). You cannot discuss "which feature carried the bias" until you can name features.


3. The prediction — the guess coming out ()

So the whole box is: .


4. Probability — how sure the guess is (, "78% chance")

The parent note says "78% chance of heart disease." A guess is rarely a flat yes/no — it comes with a confidence.

Figure — Importance of interpretability

Look at the bar in the figure: empty at the left (, impossible), full at the right (, certain). "78%" is just — nearly four-fifths of the way along.


5. The "" and "" symbols — how we state a problem


6. Functions and the "value" formula (, )

The parent note writes .

Figure — Importance of interpretability

The figure shows three dials (Accuracy, Interpretability, Alignment) all feeding one output gauge (Trust). Turning any dial moves the needle — that is exactly what claims: trust is not accuracy alone.

Why the topic needs this: the parent's whole trade-off argument (an 85%-accurate interpretable model beating a 90%-accurate black box) is captured by choosing large for "Deployment Risk" in high-stakes settings. Without you cannot express "it depends on the domain."


7. Accuracy, false positives, and "spurious correlation" — plain words

These aren't symbols but they are the load-bearing ideas of the husky-wolf and COMPAS examples. See Fairness in Machine Learning and Adversarial Examples for where these bite hardest.


8. Global vs Local — two ways to "look inside"

This distinction leads directly to Post-hoc Interpretability Methods and Inherently Interpretable Models — two different strategies for opening the box, and to Explainable AI (XAI) Techniques generally.


How the foundations feed the topic

Model = box: input to output

Features x = facts in

Prediction y-hat = guess out

Probability P = how sure

Conditional P given B

Fairness: rate for group a not equal group b

Which feature carried bias

Global vs Local: whole model or one guess

Function f and weights lambda

Value trade-off: accuracy vs risk

Importance of Interpretability

Every arrow says "you need the earlier idea to understand the later one." All roads lead to the parent topic. For the accuracy-vs-transparency tension specifically, continue to Model Transparency vs Model Accuracy, and to record all of this for auditors see Model Cards and Documentation.


Equipment checklist

Test yourself — cover the right side and answer before revealing.

What does a model take in and give out?
Facts (features) in → a single guess (prediction) out.
What is a feature, and what does the subscript in mean?
One measurable fact about the input; the subscript is a name-tag saying which fact (not multiplication).
What does the hat in signify?
An estimate — the model's guess at the true answer , not certain truth.
What does usually mean?
The model answers "yes" to a yes/no question ( = no).
What range can a probability take, and what does mean?
Between and ; = 78% likely.
What does the vertical bar mean in ?
"Given that is true" — assume happened, then ask the probability of . (Not division.)
Read and in words.
"Is not equal to" and "implies / leads to".
In , what is claiming?
Trust depends on all listed inputs together — changing any one changes the output.
What does the weight control, and what does mean?
How much we care about a cost/penalty; means ignore that cost entirely.
Difference between a false positive and spurious correlation?
False positive = model says "yes" when truth is "no"; spurious correlation = a misleading coincidence in the data the model wrongly relies on.
Global vs Local interpretability?
Global = understand the whole model's logic; Local = understand one single prediction.