DER — The Discovery Engine Review Discovery Lab
Cold Start · Ravi Anand, Systems Analyst · 6 min read

The Cold-Start Problem: How Platforms Learn a New Viewer in 90 Seconds

Every recommendation system faces the same first question — what do you show someone you know nothing about? The onboarding tricks, priors, and probes that fill an empty profile.

A recommendation engine’s hardest moment is its first. A brand-new user has no history, no embedding, no taste profile — and the first ten minutes of recommendations will determine whether they return. How platforms fill that void is one of the most consequential engineering problems in consumer media.

The Five Probes Every System Deploys

Sophisticated cold-start systems don’t wait for data — they go get it:

  1. Demographic and contextual priors. Sign-up time, device, region, and referral source already correlate strongly with taste clusters. A 2 AM Android sign-up in Jakarta enters a different prior than a Saturday-morning iPad sign-up in Toronto — before a single click.
  2. The interest-picker screen. The “select a few things you like” onboarding flow isn’t a courtesy — it’s supervised embedding initialization. Each picked item seeds the user vector in embedding space.
  3. Probe content. Early homepage slots are experiments in disguise: deliberately diverse items designed to partition the user space cheaply. A reaction (or a skip) on three well-chosen probes narrows the taste manifold as much as fifty random impressions.
  4. Exploration bonus. New users get inflated novelty budgets — the engine spends extra slots on uncertain items because a new user’s engagement is worth more as information than as watch time.
  5. Session-sequence modeling. Transformers on click sequence capture intent within a single session — users who sample diverse genres in their first session get a broader prior than those who binge one niche.

Where It Breaks

  • Shared accounts produce incoherent embeddings — the household profile is an average that fits nobody, which is why profile separation features measurably lift satisfaction.
  • Genuine taste outliers get squeezed toward population means. The system doesn’t know they’re unusual; it just sees low-confidence engagement.

“Cold start isn’t an edge case — it’s the first draft of a profile the system will spend months revising. Platforms that treat it as a formality inherit the churn.”

Full probe-design patterns in The Cold-Start Field Guide.

The first ninety seconds decide the next ninety days.