Skip to content

Chapter 2 of 7

Ranking Signals and Their Tradeoffs

Ranking models balance several competing signals to keep a feed engaging over time. Diversity refers to deliberately mixing topics, creators, and formats so that your feed does not become repetitive or overly narrow. Closely related is the novelty versus relevance tradeoff: novel items feel fresh but may miss your interests, while highly relevant items match your known tastes but can grow boring if overused. Platforms try to thread this tradeoff by injecting some unfamiliarity into each session.

Because people respond more to recent posts, social platforms incorporate recency bias into ranking through time decay, a mechanism that gradually lowers the score of older content unless it keeps earning strong engagement. This is why even older winners get eclipsed by fresh competition, and why a viral video from last week may no longer appear at the top of your feed today.

Behind these signals, recommendation systems draw on patterns shared across groups of users. Cohort behavior matters because people with similar patterns help predict what you might enjoy next, letting models learn from groups rather than only from your individual history. Two foundational techniques enable this. Collaborative filtering recommends items liked by people who behave similarly to you, even when the content itself looks unrelated, while content-based recommendation suggests items that resemble content features such as topic, audio, or visuals that you have engaged with. Most platforms combine the two because collaborative filtering uncovers unexpected items while content-based methods fill in when interaction data is sparse, when items are new, or when a viewer behaves unlike anyone else in the cohort.

All chapters
  1. 1How Feed Recommendation Systems Work
  2. 2Ranking Signals and Their Tradeoffs
  3. 3When Optimization Goes Wrong
  4. 4Creator Growth and Content Design
  5. 5Distribution Surfaces and Platform-Specific Optimization
  6. 6Content Policy, Integrity, and Manipulation
  7. 7Trends, Identity, and Practical Strategies

Drill it

Reading is not remembering. These come from the Social Media Scrolling Virality Addon 60 V2 deck:

Q

SM: What is a “candidate set” in feed ranking?

The shortlist of posts/videos retrieved for you before final ranking decides what gets shown next.

Q

SM: What is “retrieval” in recommendation systems (simple)?

The step that quickly finds potentially relevant items from a huge catalog before more expensive ranking.

Q

SM: Why do platforms use multiple stages (retrieval → ranking)?

To scale: retrieval narrows billions of items to thousands; ranking then scores the shortlist more precisely.

Q

SM: What is a “feature” in ML ranking models?

An input variable used to predict outcomes (e.g., your recent watches, video length, creator relationship).