Imagine you're a manager trying to figure out which of 500 employees actually contribute to a critical project. You could fire them one at a time and see what breaks — but that's 500 experiments, each expensive. Instead, you look at who the project's success is most sensitive to: you nudge each person's contribution slightly and measure how the output changes. That's the gradient trick this paper applies to attention heads in transformer-based translation models. The committed claim: backpropagating a Token-level Max-Margin (TMM) loss to attention maps produces a scalable, causally meaningful ranking of which attention heads matter for resolving ambiguity in context-aware machine translation — and this ranking aligns with what you'd get from the expensive brute-force approach of actually boosting each head's attention scores and measuring the effect. The authors test this across 50 disambiguation phenomena (lexical, morphological, discourse), 4 models, and 4 language directions (English→German, English→French, and reverses). The architecture is straightforward: take a standard encoder-decoder or decoder-only transformer, define a TMM loss that captures whether the model picks the correct translation of an ambiguous word over the incorrect one, then backpropagate that loss to each head's attention map. The resulting gradient magnitude tells you how much that head's attention pattern matters for getting the disambiguation right. This sits in the attribution family — mechanistic interpretability via gradient signal, not probing classifiers or ablation. The ladder here is important. The standard approach for causal head analysis is ablation or attention patching — zero out or swap a head's output and measure the change. That works for small models but doesn't scale to LLMs with hundreds of heads. The authors' gradient method is O(1) backward passes per input versus O(H) forward passes for ablation (where H is the number of heads). They validate alignment between their gradient rankings and the ground-truth effect of actually increasing attention scores on three models and two language directions. The alignment is empirical, not formal — they show correlation, not equivalence. The most interesting finding isn't the method itself but what it reveals: "general-purpose" attention heads that improve disambiguation across multiple relation types, and the counterintuitive result that a head's average attention to a relation does not predict its causal importance. High attention ≠ high importance. The models appear to have trained redundancies — multiple heads can handle the same function, and the ones that attend most aren't necessarily the ones that matter most. This is a structural insight about how transformers organize information, not just a methods contribution. Integrity is mixed. The validation regime — showing gradient-based rankings align with intervention-based rankings — is the right idea, but it's self-graded: the same team runs both the gradient analysis and the intervention experiments. The 50 phenomena across 4 models and 4 language directions provide breadth, but there's no independent replication, no pre-registration, and the specific phenomena and models were presumably chosen with knowledge of what would work. The ContraPro and related benchmarks used are community standards for context-aware MT, which helps. The obvious next experiment is scaling this to truly large models — the paper tests on models up to ~7B parameters (implied by the LLM framing), but the real payoff would be applying this to 70B+ models where ablation is genuinely impractical. The authors likely ran out of compute rather than hiding negative results; the method's value proposition is explicitly about scale, so demonstrating it at the largest scales would be the natural next step. The gap between 'works on 4 models' and 'standard interpretability tool' is real but crossable.