Shank Space

Exploring Lookalike

Jun 01, 2024

Sparse User Personalization via Lookalike Clustering: A Cold-Start Solution

“Instagram tries to understand what you like and keeps giving you that. Sometimes it throws in new content to see if you like it, but mostly it sticks to what you’ve liked in the past.”

It’s a neat trick, but it works best for active users. What about the folks who are new or just haven’t interacted enough? Those are the cold and sparse users.”

The Challenge of Cold and Sparse Users

Recommendation systems typically consist of three components: a) User pool, b) Item pool, and c) Interactions.These systems recommend items to users based on their past interactions. However, for cold and sparse users who lack sufficient interaction data, traditional recommendation systems struggle to make accurate predictions.

Enter Lookalike Modeling. It finds users with similar behaviors and preferences to predict content that new or less active users might enjoy. Kinda like when you meet someone new and realize they have similar tastes and interests as your best friend. This approach is based on two hypotheses:

  1. Users can be grouped by shared characteristics.
  2. Users within a group react similarly to certain treatments.

If these hypotheses hold true, we can identify dense (active) users similar to cold-sparse users, apply the treatments used for dense users, and expect increased engagement from sparse users.

Step 1 - Analysis

For those new to recommender systems, follow the guide to recommender systems in production. Before deploying a lookalike model, thorough analysis is necessary:

Once the analysis comes through we have a good amount of confidence in the methodology, until hypothesis one. We will cover some key waypoints along the way.

User Metadata

User metadata includes demographic information, device specifications, and category preferences:

These helped in providing insights into the user’s geographical location and potentially socio-economic status.

Feature Engineering

Dimensionality Reduction and Clustering

Use Singular Value Decomposition (SVD) for dimensionality reduction. Employ the elbow method for K-means to determine the optimal number of clusters.

Keep in mind all of these simple first steps. Each step can be individually iterated upon to gain disproportionate advantages later on. Which means, more features, better encoding, different clustering algorithms, and better tuning.

Cluster Analysis

Clusters reveal distinct user personas. The following table summarizes attributes and preferences:

ClusterDPITierGenderPricePreference Categories (ordered by priority)
0HighMixMaleMixFinance, Productivity, Entertainment
1HighT1/T3MaleMixShopping, Finance, Business, Social
2HighMixMaleMiddleFinance, Social
3Very LowMixMixLowFinance, Social, Entertainment
4LowMixMixMiddleSocial, Entertainment, Finance, Shopping
5Very HighMixMixHighShopping, Finance, Entertainment, Productivity

Interaction Patterns

Interaction scores can be based on various engagement metrics, such as dwell time, clicks, likes, shares, or any other relevant user actions.

Calculate interaction scores for users within each cluster, aggregate them, and visualize the data to represent cluster-content category relationships.

Median Interaction Score Matrix along Categories

Step 2 - Taking It Online

To rank content for sparse users:

This approach uses real-time predictions, caching dense user weights for efficiency. We used a multi-armed bandit (MAB) model to provide exploration and discovery within recommendations. The MAB would identify the slots, here categories, that we need. And depending on the category, we would fill the slots with either popularity or recency-ranked items of that category. Some categories work better with recency, like news, while others work better with popularity, like fashion - this we had established as part of a prior analysis.

System Design

Step 3 - Experimentation and Iterations

Performance Metrics

Performance on Cold Users

These results of the A/B experiment highlight the effectiveness of the clustering-based recommendation system in improving engagement. Further iterations and optimizations are ongoing, but the initial success is promising.

So we wrote a paper about it :)

For a detailed study, refer to the paper.

For more information, contact me or Ritika.

Cheers.