Recommender Systems

Can implicit feedback reveal both preference and confidence?

When users take implicit actions like purchases or watches, do those signals carry two separable pieces of information: what they prefer and how certain we should be? Explicit ratings can't make that distinction.

Note · 2026-05-03 · sourced from Recommenders Architectures
What breaks when specialized AI models reach real users?

When users give explicit star ratings, the number expresses preference directly: a 5 means strong like, a 1 means strong dislike. But most real systems must work from implicit signals — purchases, watches, clicks, browsing time — where the user never declares a preference. The conventional move is to threshold the implicit signal and pretend it is explicit feedback.

Hu, Koren, and Volinsky argue this is the wrong reduction. Implicit observations carry two distinct magnitudes that should be modeled separately. The first is a preference estimate: did the user like this item or not? The second is a confidence level: how sure are we? A user who watched a movie three times provides high-confidence positive preference. A user who watched ten seconds and quit provides low-confidence and probably negative preference. A user who never saw the item provides low-confidence with no directional information.

Explicit ratings collapse these two magnitudes into one number. A "3 stars" rating is medium-confidence medium-preference; the data structure can't distinguish "I'm sure I felt mediocre" from "I'm not sure how I felt." Implicit data forces the partition — and once you make it explicit, the resulting model handles the asymmetry between observed and unobserved entries naturally. Unobserved is not "preference zero" but "confidence zero, preference unknown."


Source: Recommenders Architectures

Related concepts in this collection

Concept map
16 direct connections · 122 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

implicit feedback resolves into preference and confidence — two paired magnitudes that explicit ratings cannot represent