Lode

Stand on the shoulders of giants.

Open the curator →
Source
arXiv
Published
Runtime
0:00
Snippets
5

A conversation between

Relevant but Incomplete: Referential Dangling as a Paradigm-Level Failure Mode in Hard Prompt Compression

Waveform of the source interview with highlighted segments per snippet.
0:00 0:00

§02

Snippets

  1. Hard prompt compression can split dependent evidence pairs, retaining one member while deleting the other—a failure called referential dangling.

    This structural flaw affects all six tested compressors at rates up to 60%, making answers uninterpretable even when technically present.

  2. Referential dangling occurs when retained text contains an answer but deleted text defines the entity needed to interpret it.

    This is not a statistical problem with weak models—even GPT-4.5 loses 8.8 accuracy points on compressed contexts versus full documents.

  3. Independent token/sentence/chunk selection cannot detect when deleting one unit makes another unit uninterpretable, creating broken inference chains.

    This explains why compression ratios of 0.30 leave answer paths incomplete in 34–54% of multi-hop examples across datasets.

  4. Reinserting the missing supporting paragraph while removing nonsupporting paragraphs improves accuracy by 29–34 percentage points, recovering 88% of the gap to uncompressed contexts.

    This oracle experiment proves dangling references are a primary failure mode, not a side effect of aggressive compression.

  5. A compact classifier ranking omitted sentences by whether they are needed to interpret retained text can automatically reinsert top candidates without supervision.

    This unsupervised approach recovers 4.7 accuracy points on HotpotQA with minimal compression ratio change (0.30→0.31), offering a practical mitigation.

§03

Synthesis

The Problem: Compression That Breaks Logic

Hard prompt compression—keeping only the most important tokens or sentences from long documents—creates a hidden structural failure. When a compressor independently rates each piece of text, it can accidentally split apart dependent information. Imagine a document where sentence A contains an answer ("The capital is Paris") but only sentence B defines what "it" refers to ("France is a country"). A greedy compressor might keep A but discard B, leaving the answer floating without context. The authors call this referential dangling.

This isn't a minor edge case. At a compression ratio of 0.30 (keeping 30% of tokens), Beaver—a chunk-ranking system using Qwen embeddings—introduces dangling references in 34–54% of multi-hop reasoning examples. Testing six popular hard compressors on HotpotQA, the authors found dangling rates up to 60%, and every single document in LongBench's QA benchmark contained at least one dangling reference.

Measuring the Cost

The damage is real. When the authors manually reinsert the missing supporting paragraph (while removing irrelevant ones to stay within the token budget), accuracy improves by 29–34 percentage points on HotpotQA and MuSiQue—recovering 88% of the gap compared to keeping both paragraphs. Crucially, stronger answer models don't fix this: GPT-4o is still 8.8 points less accurate on compressed contexts with dangling than on complete ones.

The Fix

Rather than redesigning compression from scratch, the authors train a lightweight classifier to detect when a retained sentence needs support from deleted text. At inference time, this classifier ranks omitted sentences by whether they're needed to interpret what's kept, then reinserts the top candidates—no annotation required at test time.

On HotpotQA with Qwen-8B, this approach recovers 4.7 accuracy points while barely changing the compression ratio (0.30 → 0.31). The key insight: you don't need to find all missing context—just the most critical gaps.

Why It Matters

This work exposes a paradigm-level flaw in how modern systems compress long contexts. Relevance scoring is necessary but insufficient; a sentence can be "irrelevant" in isolation yet essential for interpreting an answer elsewhere. The fix is practical—a small trained module—and the problem is widespread enough that it should reshape how practitioners think about compression. Rather than asking "Is this sentence important?", they should ask "Is this sentence important given what we're keeping?"

Mine your own.

Lode is a workbench, not a feed. Paste a YouTube URL. The model proposes a transcript, a set of quote-grounded snippets, a synthesis essay, and the fan-out. You decide what stays.

Open the curator