Feedback Loops
A recommender feedback loop occurs when the system’s exposures shape the interactions used to train the next system. If popular items get more exposure, they get more clicks, which can make them appear even better. This is a central risk for implicit feedback.
The exposure update
A minimal exposure update is
where is exposure share and is click probability. Even when a niche item has higher quality, it cannot gather clicks without exposure. Exploration interrupts this dynamic.
The danger is that the model trains on data its own past recommendations produced, so popular items keep getting shown and clicked, reinforcing the cycle:
flowchart LR Model[Recommender model] --> Rec[Recommendations shown] Rec --> Clicks[User clicks and skips] Clicks --> Logs[Logged interaction data] Logs --> Model
Worked example
Start with item A receiving 90% exposure and item B receiving 10%. A has click probability ; B is actually better with click probability .
| Step | A exposure | B exposure | A expected clicks | B expected clicks |
|---|---|---|---|---|
| Before update | 90.0 | 10.0 | 5.4 | 1.2 |
| After one click-based update | 81.8 | 18.2 | 4.9 | 2.2 |
| After three updates | 52.9 | 47.1 | 3.2 | 5.7 |
The better item gains share only after repeated updates. With harsher exploitation, weaker initial exposure, or noisy short windows, it might never surface. This is why offline evaluation needs exposure-aware logs.
Caveats
Feedback loops are not always harmful; personalization necessarily changes future data. The problem is unmeasured reinforcement. Track exposure, not just clicks, and audit diversity and coverage so the system does not silently narrow the catalog.
References
- Li et al., 2010, Unbiased Offline Evaluation of Contextual-bandit-based News Article Recommendation Algorithms
- Herlocker et al., 2004, Evaluating Collaborative Filtering Recommender Systems
Nav