Presentation Bias

Definition

The distortion in click-based relevance signals caused by the fact that users can only interact with results that are actually displayed to them. Results never shown cannot be clicked, so they never accumulate signal — regardless of their true relevance.

“Shoppers won’t purchase what search doesn’t show them.” — Doug Turnbull

The Self-Reinforcing Cycle

System shows A, B, C (not D, E, F)
    ↓
Users click A, B, C (only option)
    ↓
System learns "A, B, C are preferred"
    ↓
D, E, F never shown → no clicks → never improve
    ↓
System becomes more entrenched

This is survivorship bias applied to search: only shown results can generate training signal.

Distinction from Position Bias

ConceptCauseScope
Position BiasUsers favour top positions regardless of qualityWithin a shown result set
Presentation BiasUsers can’t signal on what’s not shownAcross the entire corpus

Position bias is a specific manifestation of presentation bias. Both corrupt Click Signals and Relevance Feedback.

Mitigations

  • Result diversity — surface long-tail items to create exposure
  • Active learning / exploration — randomly promote underexposed items to gather signal
  • A-B Testing for Search — controlled experiments to break the feedback loop
  • Judgment Lists — human evaluators who see items independently of the system’s choices
  • Inverse propensity scoring (IPS) — weight clicks by 1/(probability of being shown) to debias
  • Synthetic Query Generation — sidestep click data entirely: have an LLM write queries for your documents, so every document gets a label whether or not it was ever shown. This is the motivation given in Improving Search Ranking with Few-Shot Prompting of LLMs, which names presentation bias and survivorship bias as the reasons not to build a ranker on click-derived pseudo-labels. It trades these biases for a different one — the generator’s idea of a query rather than a user’s.

Articles

People

  • Doug Turnbull — coined “presentation bias” framing in search context