---
title: 'AttnTrace: Multi-Method Attention Attribution'
url: https://www.emergentmind.com/topics/attntrace
type: topic
---

# AttnTrace: Multi-Method Attention Attribution

Searching arXiv for papers using or referring to “AttnTrace” to ground the article in the current literature.
AttnTrace is a label used in several distinct research programs that rely on attention-derived or trace-derived attribution signals to explain, constrain, or redirect model behavior. The available papers use the name for at least six technically different objects: a long-context LLM context traceback method, a privacy-defense module within attribute-inference mitigation, an attention-tracking prompt-injection detector, a multimodal framework for modeling human attention traces, a cross-attention concept-erasure method for diffusion models, and a sparse attention decomposition procedure for circuit tracing in GPT-2 small [2508.03793] [2602.11528] [2411.00348] [2105.05964] [2505.23312] [2410.00340]. This suggests a shared methodological motif rather than a single canonical algorithm: attribution signals are extracted from attention weights, trace sequences, or low-dimensional attention subspaces and then used for traceback, defense, grounding, or mechanistic analysis.

## 1. Terminological scope and recurrent design pattern

The literature attaches the AttnTrace or TRACE name to multiple methods with different objectives and mathematical formalisms. Their commonality is not task domain but the use of a trace-like object to localize causal or contributory structure.

| Usage in the literature | Primary task | Core mechanism |
|---|---|---|
| AttnTrace [2508.03793] | Context traceback for long-context LLMs | Top-K token averaging and context subsampling over attention weights |
| TRACE module, also called AttnTrace [2602.11528] | Proactive defense against attribute inference | Attention-based privacy vocabulary extraction, inference chain generation, guided anonymization |
| Attention Tracker (“AttnTrace”) [2411.00348] | Prompt-injection detection | Important-head selection and instruction-focus score |
| AttnTrace framework [2105.05964] | Joint modeling of images, captions, and human attention traces | Mirrored Transformer and local bipartite matching |
| TRACE, sometimes referred to as AttnTrace [2505.23312] | Concept erasure in diffusion models | Cross-attention projection updates and trajectory-aware fine-tuning |
| AttnTrace implementation [2410.00340] | Circuit tracing in GPT-2 small | SVD of effective attention-head maps and graph-based path tracing |

Across these variants, the traced object differs substantially. In long-context traceback, it is a score over context chunks. In privacy defense, it is a privacy vocabulary and a reasoning chain. In prompt-injection detection, it is a drop in instruction-focused attention on selected heads. In multimodal grounding, it is a sequence of per-word boxes derived from mouse traces. In diffusion models, it is the effect of a concept token through cross-attention projections. In mechanistic interpretability, it is a sparse singular-vector direction inside an attention head. The name therefore denotes a family resemblance centered on attribution, not a stable API or standardized benchmark suite.

## 2. Long-context LLM traceback

In "AttnTrace: Attention-based Context Traceback for Long-Context LLMs," the task is defined for a long-context LLM $g$ receiving an instruction prompt $S$ and a context $C=\{C_1,\dots,C_c\}$ of $c$ text chunks, with output
$$
Y = g(S \parallel C_1 \parallel \cdots \parallel C_c).
$$
The goal is to assign each context chunk $C_t$ an attribution score $\alpha_t$ reflecting how strongly $C_t$ "caused" $Y$ [2508.03793].

The method begins from transformer attention weights. For each layer $l=1,\dots,L$ and head $h$, the logits and attention weights are
$$
\beta_{ij}^{l,h} = \langle Q^{l,h}(P^i), K^{l,h}(P^j)\rangle/\sqrt{d}, \qquad
\alpha_{ij}^{l,h} = \mathrm{softmax}_j(\beta_{i*}^{l,h}),
$$
where the full prompt is $P=S\parallel C\parallel Y$. To measure how much an input token $P^i$ attends to the entire output $Y$, the paper averages over layers, heads, and output positions:
$$
\mathrm{Attn}(P;P^i,Y)
:=
\frac{1}{L\cdot H\cdot |Y|}
\sum_{l=1}^L\sum_{h=1}^H\sum_{j=1}^{|Y|}\alpha_{ij}^{l,h}.
$$
A naïve baseline averages these values across all tokens in a chunk:
$$
\mathrm{score}_{\mathrm{simple}}(C_t)
=
\frac{1}{|C_t|}
\sum_{i=1}^{|C_t|}
\mathrm{Attn}(S\parallel C\parallel Y; C_t^i, Y).
$$

AttnTrace replaces this naïve average with two enhancements. The first is top-K token averaging: within each chunk $C_t$, it selects the set $R_t$ of the $K$ tokens with the largest Attn-values and defines
$$
e(C,C_t)
=
\frac{1}{\min(K,|C_t|)}
\sum_{C_t^i\in R_t}
\mathrm{Attn}(S\parallel C\parallel Y; C_t^i, Y).
$$
The second is context subsampling. A random subset $C^{(b)}$ of size $\lfloor \rho\cdot c\rfloor$ is drawn without replacement, the model is rerun on $S\parallel C^{(b)}$, and the chunk-level scores are averaged across $B$ subsamples:
$$
\alpha_t
=
\frac{1}{B}
\sum_{b=1}^B
1_{C_t\in C^{(b)}}\cdot e(C^{(b)},C_t).
$$
The rationale is that if multiple chunks independently induce the same output, the model may split attention among them and dilute any single chunk’s score; subsampling reduces this competition [2508.03793].

The paper provides a formal justification through an attention-weight upper bound. For a set $I$ of $m$ context tokens with similar key vectors and empirical covariance $\Sigma_I$, if $q$ is the query vector for the first output token and $\alpha_{\max}$ is the maximum softmax attention weight assigned to any token in $I$, then
$$
\alpha_{\max}\le
\frac{1}{
1+(m-1)\exp\!\Bigl[-\|q\|\sqrt{\tfrac{2m\,\lambda_{\max}(\Sigma_I)}{d}}\Bigr]
}.
$$
As $m$ grows or the hidden-state covariance shrinks, the bound shrinks, explaining attention dispersion and motivating context subsampling.

Empirically, the method is positioned against high-cost traceback methods such as TracLLM, which the abstract states can require hundreds of seconds for a single response-context pair. The paper reports that AttnTrace is more accurate and efficient than existing state-of-the-art context traceback methods, can improve state-of-the-art methods in detecting prompt injection under long contexts through the attribution-before-detection paradigm, and can effectively pinpoint injected instructions in a paper designed to manipulate LLM-generated reviews [2508.03793]. The significance of this line of work is therefore operational as much as interpretive: traceback is used for forensic analysis, interpretability, and downstream security screening.

## 3. AttnTrace as TRACE in attribute-inference defense

In "Stop Tracking Me! Proactive Defense Against Attribute Inference Attack in LLMs," TRACE is the fine-grained anonymization component of a unified defense that combines TRACE with RPS, and the details identify this TRACE module as also being called AttnTrace [2602.11528]. The setting is attribute inference from user-generated text, such as inferring age, location, or gender from online writing. The paper argues that existing anonymization-based defenses are coarse-grained and remain vulnerable because inference can still proceed through the model’s reasoning capability.

TRACE begins with attention-based privacy vocabulary extraction. Given user text $t=(x_1,\dots,x_T)$ and an attribute-specific query $q$, the prompt is
$$
P(t)= t \parallel q.
$$
Let $A^{(L)}\in \mathbb{R}^{H\times N\times N}$ be the multi-head attention tensor at the final layer $L$, where $N=|P(t)|$ and $H$ is the number of heads. The method focuses on attention paid by the final generated position $i^*=N$ toward each input token $i$, averages over heads,
$$
a_i = \frac{1}{H}\sum_{h=1}^H A^{(L)}_{h,i^*,i},
$$
and then aggregates subword tokens to the word level. If word $w$ spans tokens $\{i,\dots,j\}$, then
$$
a(w)=\sum_{k=i}^j a_k
$$
(Equation 6), and the privacy vocabulary is the Top-K words by descending $a(w)$:
$$
V = \mathrm{TopK}\{(w,a(w)): w\in W(t)\}
$$
(Equation 7) [2602.11528].

TRACE adds inference chain generation to the raw attention signal. The attacker model is instructed to explain its reasoning in steps and cite text spans, returning a sequence
$$
C = [(step_1,evidence_1),(step_2,evidence_2),\dots].
$$
This chain is used to pinpoint minimal spans that carry privacy cues. Guided anonymization then applies two subroutines in parallel: vocabulary-guided editing $T_{ad}(t,V)$ and chain-guided editing $T_{ic}(t,C)$. The resulting anonymized text is
$$
t' = M_{anon}(T_{ad}(t,V), T_{ic}(t,C))
$$
(Equation 8). In $T_{ad}$, a replacement function $\mathcal{R}: w\to w'$ maps each sensitive word to a more generic synonym or pronoun. In $T_{ic}$, each evidence span is paraphrased or masked so that the reasoning link is broken, for example replacing "Montreal" with "a city" or with "[LOCATION]" while preserving semantic coherence [2602.11528].

When logits are available, the paper appends RPS. A learned suffix $s$ is optimized so that the model refuses rather than infers an attribute. With defended input $t_s=t\parallel s$, first- and second-token scoring functions are
$$
J_1(s)=\log p(y_1=\text{"I"}\mid P(t_s)),
$$
$$
J_2(s)=\log p(y_2\in R \mid P(t_s), y_1=\text{"I"}),
$$
where $R$ is a small set of rejection tokens such as $\{\text{"cannot"},\text{"apologize"}\}$, and the total score is
$$
J(s)=J_1(s)+\beta\cdot J_2(s)
$$
(Equation 12). Stage 1 performs first-token anchoring until $J_1(s)\ge \tau_1$; Stage 2 performs rejection-token shaping until $J_2(s)\ge \tau_2$; the final suffix is
$$
s^*=\arg\max_{s\in Search} J(s)
$$
(Equation 13) [2602.11528].

The quantitative results are explicit. On the Synthetic dataset, with open-source models, attribute-inference accuracy under no defense is 53.71% for Llama2-7B, 56.19% for Llama2-13B, 57.14% for Llama3.1-8B, and 49.71% for DeepSeek-R1. TRACE only yields 22.48%, 24.38%, 22.86%, and 22.86%, respectively. RPS only yields 1.71%, 4.38%, 0.00%, and 0.00%. TRACE + RPS yields 0.19%, 1.14%, 0.00%, and 1.71% [2602.11528]. For closed-source models, where only TRACE applies, accuracy changes from 67.62% to 26.86% on GPT-3.5-Turbo, from 71.24% to 28.38% on GPT-4o, and from 68.38% to 33.90% on Gemini2.5-Pro.

The paper’s summary observations are also specific: TRACE alone cuts accuracy by approximately 50% relative and outperforms prior anonymizers such as FgAA; with logit access, RPS pushes open-source models to below 5% accuracy, often 0%; suffixes learned on one model transfer, with a suffix tuned on Llama2-7B yielding greater than 90% refusal on Llama2-13B and Llama3.1; under 100 varied prompts, strict refusal rates exceed 80% and overall accuracy is below 5%; TRACE maintains readability and meaning with greater than 80% judged utility, while RPS preserves greater than 98% semantic similarity [2602.11528]. In this variant, AttnTrace is not primarily an interpretability tool; it is an intervention mechanism that uses attribution to remove or neutralize privacy-leaking spans.

## 4. Attention tracking for prompt-injection detection

In "Attention Tracker: Detecting Prompt Injection Attacks in LLMs," the summary describes Attention Tracker as “AttnTrace” and defines a training-free detection method based on attention patterns over the original instruction [2411.00348]. The core empirical observation is the distraction effect: under prompt injection, certain heads shift focus away from the original instruction toward the injected instruction.

Let $I=\{i_1,\dots,i_n\}$ be tokens of the original instruction, $D=\{d_1,\dots,d_m\}$ tokens of user data, and $\alpha^{l h}_{t\to u}$ the softmax attention weight in layer $l$, head $h$, from the last input token $t$ to token $u$. The instruction-focus score of head $(l,h)$ is
$$
score^{l h}(I,D)=\sum_{u\in I}\alpha^{l h}_{t^*\to u}.
$$
A prompt injection attack induces a distraction effect if, for certain heads,
$$
score^{l h}(I,D_{attack}) \ll score^{l h}(I,D_{normal}).
$$
Head selection is performed once using synthetic normal and attack prompts. For each head, the candidate separation metric is
$$
score_{cand}^{l,h}
=
\mu(S_N^{l,h})-k\cdot \sigma(S_N^{l,h})
-
\bigl[\mu(S_A^{l,h})+k\cdot \sigma(S_A^{l,h})\bigr]
$$
(Equation 1), with $k=4$, and important heads are
$$
H_i=\{(l,h)\mid score_{cand}^{l,h}>0\}
$$
(Equation 2). At inference time, the detector computes the focus score
$$
FS=\frac{1}{|H_i|}\sum_{(l,h)\in H_i}\sum_{u\in I_{test}}\alpha^{l h}_{t^*\to u}
$$
(Equation 3), and declares an attack when $FS<t$ [2411.00348].

The experimental setting covers Qwen2-1.5B-Instruct, Phi-3-mini-4k, Llama3-8B-Instruct, and Gemma-2-9B-it, evaluated on Open-Prompt-Injection and deepset/prompt-injections with attack strategies naive, escape, ignore, fake-complete, and combined. The reported metric is AUROC. On Open-Prompt-Injection, AttnTrace attains 1.00 for Qwen2, 1.00 for Phi3, 1.00 for Llama3, and 0.99 for Gemma2. On deepset/prompt-injections, it attains 0.99, 0.99, 0.93, and 0.96, respectively [2411.00348]. The paper further reports up to +3.1% AUROC gain on Open-Prompt-Injection, up to +10.0% gain on the deepset dataset, and average performance advantages over other training-free methods of 31.3% on Open-Prompt-Injection and 20.9% on deepset.

Ablations emphasize sparsity in head selection. On Llama3 over the deepset dataset, using all heads gives AUROC 0.809, $k=3$ gives 0.876, and $k=4$ gives 0.932 while retaining 1.4% of total heads; $k=5$ reduces AUROC to 0.859 while using 0.2% of heads [2411.00348]. The same small subset of heads shows the largest normal-attack separation across three datasets, and different instructions still yield AUROC above 0.96. The proposed deployment model is lightweight because focus-score computation piggy-backs on normal attention calculation and incurs negligible runtime overhead, but the method requires access to internal attention scores and therefore does not apply directly to closed-source APIs that do not expose per-head weights.

This variant uses attention as a monitoring signal rather than as a direct attribution of output content. The traced quantity is not a supportive context or a sensitive span, but the preservation or collapse of instruction adherence under adversarial contamination.

## 5. Human attention traces in vision-language modeling

A separate line of work models human attention traces directly. "Connecting What to Say With Where to Look by Modeling Human Attention Traces" is summarized as an AttnTrace framework built on Localized Narratives, where each word of a caption is paired with a mouse trace segment [2105.05964]. The input modalities are an image $I$, a caption $w=(w_1,\dots,w_N)$, and a word-aligned mouse trace $r=(r_1,\dots,r_T)$, where each $r_j=[x_1,y_1,x_2,y_2]_j\in \mathbb{R}^4$ is an axis-aligned bounding box.

The paper defines three tasks: controlled trace generation, controlled caption generation, and joint caption plus trace generation. The architecture is a Mirrored Transformer (MITR) with symmetric caption and trace branches that share almost all weights. Region features are obtained from a pre-trained Faster-R-CNN; word embeddings and trace box embeddings receive positional encodings; an image encoder processes the visual regions; and mirrored caption and trace encoder-decoder branches attend over the visual representation. In controlled-caption mode, the text branch is causal-masked and the trace branch unmasked; in controlled-trace mode the reverse masking is used; in joint mode both branches are causal-masked [2105.05964].

A distinctive contribution is the local bipartite matching (LBM) distance for comparing a predicted trace $\hat r$ of length $m$ with a ground-truth trace $r^{gt}$ of length $q$. The method solves a linear program
\[
\min_{X\in \mathbb{R}^{q\times m}} \mathrm{Tr}(C X^\top)
\]
subject to
\[
X1_m=1_q,\qquad X^\top 1_q\le 1_m,\qquad X_{i,j}\ge 0,
\]
plus local-matching constraints
\[
X_{i,j}=0
\quad \text{if}\quad
j<\lfloor (i-k)\cdot m/q\rfloor
\quad \text{or}\quad
j\ge (i+1+k)\cdot m/q.
\]
Here $C_{ij}=L1(r_i^{gt},\hat r_j)$ and the final score is $\mathrm{Tr}(C X^\top)/q$ [2105.05964]. The metric handles traces of different lengths and small local reorderings.

Training uses four losses: a controlled-trace loss $L_{trace}=\sum_{i=1}^T \|r_i^{gt}-\hat r_i\|_1$, a controlled-caption cross-entropy loss, a joint loss $L_{joint}=L_{trace}+L_{caption}$, and a cycle-consistency loss $L_{cycle}=Dist_r(\hat r',\tilde r)$ where a trace is permuted or swapped, a caption is generated via Gumbel-softmax, and a trace is regenerated from that caption. The total objective is
$$
L_{total}=\lambda_1L_{trace}+\lambda_2L_{caption}+\lambda_3L_{cycle}+\lambda_4L_{joint}.
$$
Reported hyperparameters include 1–2 transformer layers per module, hidden size 512, FFN size 2048, Adam with initial learning rate $5\times 10^{-4}$, decay 0.8 every 3 epochs, 30 total epochs, and batch size 30 [2105.05964].

On COCO validation for controlled trace generation, a baseline transformer gives LBM$(k=0)=0.208$ and LBM$(k=1)=0.204$, while MITR with joint Task1+Task2+cycle\_b gives 0.166 and 0.155; adding a second layer gives 0.163 and 0.154. For controlled caption generation, a baseline gives BLEU-1=0.563, BLEU-4=0.255, CIDEr=0.997, whereas MITR with joint Task1+Task2+cycle\_b and 2 layers gives BLEU-1=0.607, BLEU-4=0.292, METEOR=0.263, ROUGE-L=0.487, CIDEr=1.485, and SPICE=0.317 [2105.05964]. On joint caption plus trace generation, pretraining on Tasks 1 and 2 improves BLEU-1 from 0.395 to 0.417 and LBM from 0.283 to 0.267 relative to the joint model. The paper also reports transfer benefits to COCO guided captioning, with CIDEr improving from 1.746 to 1.819 after pretraining.

Here the trace is human-generated rather than model-internal. AttnTrace therefore functions as a grounded multimodal learning framework in which attention traces are part of the supervised signal. Its place in the broader family is conceptually aligned with the other usages only at the level of attribution and grounding.

## 6. Diffusion-model concept erasure and mechanistic circuit tracing

In diffusion-model safety, TRACE is expanded as "Trajectory-Constrained Attentional Concept Erasure" and the summary notes that it is sometimes referred to as AttnTrace [2505.23312]. The model $M_\theta$ generates an image through iterative denoising, while prompt tokens enter the U-Net through cross-attention:
$$
Attn(H,E)=\mathrm{softmax}(QK^\top)V.
$$
The concept-erasure objective is formalized via efficacy and specificity. Efficacy requires that for prompts $p$ invoking concept $w$, the edited model $M_{\theta'}$ satisfies
$$
p_{\theta'}(x_0\mid p)=p_\theta(x_0\mid p_u)
$$
in distribution, where $p_u$ replaces $w$ by a neutral token $u$. Theorem 1 states that if every cross-attention head and every timestep enforce
$$
W_K e_w = W_K e_u,\qquad W_V e_w=W_V e_u,
$$
then the denoising trajectory on prompts containing $w$ is identical to that on prompts containing $u$. Proposition 2 gives a rank-1 update
$$
\Delta W^*=-\,W\,\delta e\,\delta e^\top/\|\delta e\|_2^2,\qquad \delta e=e_w-e_u,
$$
and the paper then refines the edited model with late-timestep LoRA fine-tuning under a trajectory-aware loss [2505.23312].

The empirical evaluation covers object classes, celebrity faces, artistic styles, and explicit content from the I2P dataset. Reported figures include $H_o=85.6\%$ with FID=15.1 on object erasure, $Acc_e\to 0\%$, FaceRate=0.58, $H_c=92.3\%$, and FID=17.5 on celebrity face erasure, 95% style removal with FID=17.6 on artistic style erasure, and reduction of nudity to 2% while keeping COCO FID=18.0 on NSFW erasure [2505.23312]. The attention trace here is the effect of a concept token through cross-attention keys and values rather than a trace over text spans or context chunks.

A still different usage appears in "Sparse Attention Decomposition Applied to Circuit Tracing," whose details describe how AttnTrace is implemented on GPT-2 small for mechanistic interpretability [2410.00340]. For each head $h$, the paper defines an effective linear map on the residual stream,
$$
A_h=W_V^{(h)}\,\mathrm{diag}(\mathrm{softmax}(Q_hK_h^\top/\sqrt{d_k}))\,W_O^{(h)}\in \mathbb{R}^{d\times d},
$$
computes the full SVD
$$
A_h=U_h\Sigma_h V_h^\top,
$$
and selects sparse signal directions
$$
S_h=\{i:\sigma_i^h\ge \lambda_h \wedge \mathrm{sparsity}(v_i^h)\le k_{max}\}.
$$
Given residual $r$, the projection and contribution of direction $i$ are
$$
\alpha_i^h=(v_i^h)^\top r,\qquad
\Delta_i^h(r)=\sigma_i^h u_i^h (v_i^h)^\top r,
$$
with signal strength
$$
S_i^h(r)=|\sigma_i^h\alpha_i^h|.
$$
Active directions become graph nodes, and directed edges between directions in successive layers are retained when the edge weight
$$
w_{(h,i)\to (h',j)}
=
\left|(v_j^{h'})^\top A_h v_j^{h'}\right|
\approx
\left|\sigma_i^h (v_j^{h'})^\top u_i^h\right|
$$
exceeds a threshold [2410.00340].

Applied to Indirect Object Identification in GPT-2 small, with 10,000 randomized templates, the paper reports baseline IOI accuracy 93.2%, three disjoint chains of length 4–6 heads, accuracy drops to 57.4% when Circuit A is ablated, to 62.1% when Circuit B alone is ablated, and to 30.5% when both A and B are ablated. Average signal-to-noise ratio is approximately 8.7 dB for discovered heads versus 1.2 dB for random heads, and two of the three circuits carry about 80% overlapping information [2410.00340]. In this usage, tracing is explicitly internal and mechanistic: it targets communication paths between attention heads rather than inputs or prompts.

## 7. Conceptual relations, distinctions, and recurring misconceptions

The available literature supports a broad but coherent view of AttnTrace as an attribution-centered design pattern. One family traces *external context* and ranks retrieved chunks according to output-conditioned attention [2508.03793]. A second family traces *sensitive or adversarial spans* and uses the traced signal either to anonymize text or to detect instruction distraction [2602.11528] [2411.00348]. A third family traces *supervisory or latent structure*, either from human mouse traces in vision-language datasets or from sparse attention subspaces and cross-attention projections inside generative models [2105.05964] [2505.23312] [2410.00340].

A plausible misconception is that AttnTrace denotes one specific algorithm. The papers instead attach the label to methods with different objects, assumptions, and access models. Some are black-box compatible at the trace-extraction stage, such as TRACE without logits in the privacy-defense setting; others require direct access to internal attention tensors or projections, such as prompt-injection detection, long-context traceback, diffusion-model concept erasure, and circuit tracing [2602.11528] [2411.00348] [2508.03793] [2505.23312] [2410.00340]. The traced entity also varies from chunk-level attribution scores to word-level privacy vocabularies, instruction-focus head scores, per-word spatial boxes, cross-attention concept directions, or singular-vector signal paths.

Another plausible misconception is that these methods use raw attention weights in a naïve manner. The surveyed work consistently augments attention with additional structure. Long-context traceback uses top-K token averaging plus random context subsampling and gives a proposition explaining attention dispersion [2508.03793]. The privacy-defense version combines attention extraction with explicit inference-chain generation and downstream editing, then supplements it with suffix optimization when logits are available [2602.11528]. Prompt-injection detection does not average all heads indiscriminately; it performs one-time important-head selection using a separation metric with $k=4$ [2411.00348]. Diffusion TRACE does not merely inspect cross-attention maps; it enforces projection equalities and uses rank-1 updates plus late-step LoRA tuning [2505.23312]. Circuit tracing does not analyze head outputs holistically; it decomposes them into sparse singular directions and reconstructs paths over an induced graph [2410.00340].

Taken together, these works indicate that AttnTrace is best understood as a family of methods for converting attention-like observables into operationally useful trace objects. Depending on the domain, those trace objects serve explanation, anonymization, attack detection, controllable generation, concept suppression, or mechanistic circuit discovery. The term therefore names a recurring research strategy: localize contribution structure, represent it as a trace, and use that trace either to rank causes or to intervene on them.

Source: https://www.emergentmind.com/topics/attntrace