---
title: Clinical Association Displacement (CAD)
url: https://www.emergentmind.com/topics/clinical-association-displacement-cad
type: topic
---

# Clinical Association Displacement (CAD)

Clinical Association Displacement (CAD) is a vocabulary-level statistical framework designed to quantify shifts in demographic-based word associations in generated radiology reports. CAD detects how model-generated language deviates from reference clinical corpora, focusing on changes in the demographic polarization of clinically meaningful terms. This approach, introduced for the evaluation of vision-language model (VLM) outputs in radiology, provides a rigorous alternative to surface-level token-overlap metrics by explicitly measuring semantic erasure and emergent demographic biases at the term level [2603.01625].

## 1. Formal Definition and Computation

Let $D\in\{\mathrm{ref},\mathrm{pred}\}$ index reference and predicted corpora of radiology reports, each tagged by a binary demographic variable $g\in\{\mathrm{F},\mathrm{M}\}$. For each term $w$, the group-specific frequency $c_g(w)$ and total count $N_g$ are computed. Dirichlet (add-$\alpha$) smoothing addresses sparse counts:

$$
p_g(w) = \frac{c_g(w) + \alpha}{N_g + \alpha V},
$$

where $V$ is the vocabulary size. The log–odds ratio of female to male usage in corpus $D$ is:

$$
\hat{s}^{(D)}(w) = \log \left( \frac{p_F(w)}{p_M(w)} \right).
$$

Variance is estimated via a multinomial model:

$$
\mathrm{Var}[\hat{s}^{(D)}(w)] \approx \frac{1}{c_F(w) + \alpha} + \frac{1}{c_M(w) + \alpha},
$$

and standardized to a z-score:

$$
\hat{z}^{(D)}(w) = \frac{\hat{s}^{(D)}(w)}{\sqrt{\mathrm{Var}[\hat{s}^{(D)}(w)]}}.
$$

Clinical Association Displacement is then defined as the standardized shift between reference and predicted association for each $w$:

$$
z_\mathrm{disp}(w) = \frac{\hat{s}^{(\mathrm{pred})}(w) - \hat{s}^{(\mathrm{ref})}(w)}{\sqrt{\mathrm{Var}[\hat{s}^{(\mathrm{pred})}(w)] + \mathrm{Var}[\hat{s}^{(\mathrm{ref})}(w)]}}.
$$

Statistical significance is determined using the normal approximation ($z_\mathrm{disp}(w)\sim\mathcal{N}(0,1)$ under the null hypothesis), critical threshold $z_\mathrm{crit}=\Phi^{-1}(1-p^*/2)$ (e.g., $p^*=0.05$), and Benjamini–Hochberg FDR control over the vocabulary.

## 2. Statistical and Algorithmic Foundations

CAD is rooted in log-odds ratio association analysis (methodology by Church & Hanks; Monroe et al.), with Dirichlet smoothing to regularize estimates in the presence of rare terms or reports. Frequency uncertainty is accommodated via a delta-method variance approximation under the multinomial, allowing conversion of log-odds to standardized z-scores. Displacement is computed as the difference of independent z-scores, normalized by the root-sum-square of variances, formally yielding a z-test for displacement.

Multiple testing across the vocabulary is accounted for by FDR-corrected $p$-values, ensuring robust statistical calibration when flagging significant shifts.

The CAD computation proceeds as follows:
1. Vocabulary is established from all non-stopword tokens in the reference and predicted corpora.
2. For each corpus and demographic group, word counts and smoothed probabilities are computed, leading to group-association z-scores per word.
3. Displacement z-scores are calculated and thresholded for statistical significance.
4. Significant terms are classified as *Erasure*, *New Bias*, *Bias Flip*, or *Preservation* based on their reference and predicted z-scores.

## 3. Taxonomy of Detected Shifts

CAD enables the categorization of term-level association changes as follows (with thresholds $z_\mathrm{neutral}=1.0$, $z_\mathrm{strong}=2.0$):

| Category      | Criteria                                                                       | Interpretation                                                       |
|---------------|--------------------------------------------------------------------------------|----------------------------------------------------------------------|
| Erasure       | $|\hat{z}^\mathrm{ref}(w)| > z_\mathrm{strong}$, $|\hat{z}^\mathrm{pred}(w)| < z_\mathrm{neutral}$ | Previously strong demographic association is eliminated in predictions |
| New Bias      | $|\hat{z}^\mathrm{ref}(w)| < z_\mathrm{neutral}$, $|\hat{z}^\mathrm{pred}(w)| \geq z_\mathrm{neutral}$ | Model introduces new demographic association                          |
| Bias Flip     | $\mathrm{sign}(\hat{z}^\mathrm{ref}(w)) \neq \mathrm{sign}(\hat{z}^\mathrm{pred}(w))$, both $|\cdot| \ge z_\mathrm{neutral}$ | Polarity of demographic association is reversed                       |
| Preservation  | Otherwise                                                                     | Direction and strength of association conserved                       |

This classification reveals clinically salient changes that are not captured by aggregate overlap metrics.

## 4. Concrete Illustrative Cases

CAD exposes critical pathology in radiology report generation systems that surface metrics (e.g., BLEU) fail to reveal. For example:

- **Erasure under Greedy Decoding**: The term “mastectomy” shows strong female association in references ($c_F=120, c_M=2, \hat{z}^\mathrm{ref}>2$), but is nearly absent in deterministic model outputs ($c_F=1, c_M=0, \hat{z}^\mathrm{pred}\approx0$), resulting in $z_\mathrm{disp} \ll 0$ and categorization as erasure. Superficial metrics remain high due to template-like predictions, masking this clinical omission.

- **Emergent Bias under Stochastic Sampling**: A neutral reference association for “pneumothorax” ($c_F\approx75, c_M\approx65, \hat{z}^\mathrm{ref}\approx0.15$) shifts to strong male association in sampled outputs ($c_F=10, c_M=200, \hat{z}^\mathrm{pred}\approx-5.7$), $z_\mathrm{disp}\approx-5.8$—flagged as new bias. Conventional metrics change minutely, failing to detect the emergent demographic correlation [2603.01625].

## 5. Relationship to Weighted Association Erasure (WAE)

While CAD provides term-level specificity, Weighted Association Erasure (WAE) aggregates the $z_\mathrm{disp}(w)$ across the vocabulary:

$$
\mathrm{WAE} = \frac{\sum_w \omega(w)[z_\mathrm{disp}(w)]^2}{\sum_w \omega(w)},
$$

with the weight $\omega(w)$ chosen according to analytic emphasis (reference-weighted for importance according to the data distribution, prediction-weighted for model output destabilizations). WAE serves as a global scalar quantifying overall clinical-signal displacement, while CAD pinpoints which terms are specifically suppressed, re-associated, or flipped. The frameworks are complementary and can be deployed in tandem for holistic fairness and fidelity auditing.

## 6. Practical Implications and Limitations

CAD reveals two modes of model failure in clinical text generation: (1) semantic erasure—where deterministic decoding yields repetitive, generic templates that omit specific clinical terminology—and (2) emergent bias—where stochastic decoding introduces unexpected demographic associations. These are invisible to surface-level metrics, highlighting the inadequacy of current benchmarks for clinical model deployment.

By guiding clinicians and developers towards inference settings that maintain clinical specificity without introducing bias, CAD facilitates more clinically and demographically robust report generation. The framework generalizes to multiple or intersectional demographic axes (e.g., age, ethnicity) if the corpus provides adequate coverage. Limitations include the need for large sample sizes for stable log-odds estimation, sensitivity to pre-processing (stop-word removal), and the requirement for clinical vetting to interpret flagged terms. Post-hoc audit remains necessary to assess the true diagnostic or operational impact of identified shifts [2603.01625].

## 7. Significance for Clinical Model Evaluation

CAD, grounded in smoothed log-odds and rigorous z-testing, addresses a critical blind spot in radiology VLM evaluation by explicitly quantifying what models do not say or say incorrectly in demographic terms. This supports a redefinition of "optimal" reporting beyond token-level similarity, enhancing the detection of semantic omissions and unintended bias. Used alongside WAE, CAD enriches the methodological toolkit for clinical-fairness audits of medical AI systems, providing transparency at both global and granular levels for decision-critical applications [2603.01625].

Source: https://www.emergentmind.com/topics/clinical-association-displacement-cad