Recommender Systems

Why do accuracy-optimized recommenders crowd out minority interests?

Explores why recommendation models that maximize accuracy systematically over-represent a user's dominant interests while suppressing their lesser ones, even when both are measurable and real.

Note · 2026-05-03 · sourced from Recommenders Architectures
How do recommendation feeds shape what people see and believe? What breaks when specialized AI models reach real users?

A user who watched 70 romance movies and 30 action movies has a measurable distribution of interests. Calibration says the recommendation list should reflect that distribution: roughly 70% romance, 30% action. This is not the same as accuracy or diversity. Accuracy is about predicting what the user will like; calibration is about the proportions of recommendations matching the proportions of past consumption.

The empirical phenomenon Steck observed is that accuracy-optimized recommenders systematically miscalibrate. The user's main interest crowds out their lesser interests in the recommendation list. If 70% of past watching is romance, an accuracy-optimized list might be 95% romance — because the model is good at predicting romance preferences and confidence is highest there. The minority interest gets crowded out even though it's a real part of the user's profile.

The proposed fix is post-processing: a re-ranking algorithm that maximizes accuracy subject to a calibration constraint quantified by a divergence between consumption proportions and recommendation proportions. This works because the underlying model is fine — it correctly identified all the user's interests — it just over-weighted the dominant one when sorting top-N. The calibration step rebalances without touching the trained model. It also makes calibration relevant to fairness: the same crowding-out happens to demographic minorities in shared accounts and to lesser-rated content categories.


Source: Recommenders Architectures

Related concepts in this collection

Concept map
13 direct connections · 65 in 2-hop network ·medium cluster

Click a node to walk · click center to open · click Open full network for a force-directed map

your link semantically near linked from elsewhere
Original note title

calibrated recommendations require post-hoc reranking because accuracy-optimized models crowd out minority interests