pinterest

Ads Candidate Generation using Behavioral Sequence Modeling (opens in new tab)

Pinterest’s Ads team uses behavioral sequence modeling to improve ad candidate generation by predicting what users are likely to convert on next. Transformer-based two-tower models first predict relevant advertisers and then specific products, using offsite activity such as views, purchases, and add-to-cart events. The advertiser model is already in production, while item-level modeling addresses Pinterest’s rapidly growing catalog and enables more precise, scalable personalization.

Predicting Advertiser Interaction

  • A bidirectional Transformer encodes each user’s behavioral event sequence.
  • An MLP-based advertiser tower represents candidate advertisers.
  • Training uses:
    • In-batch negative samples
    • Sampled softmax loss
    • Positive events consisting of checkout, add-to-cart, or signup conversions within a future K-day window
    • Log-Q bias correction to avoid excessively penalizing popular advertisers
  • The model is evaluated with Recall@K by comparing user and advertiser embedding similarity against an indexed set of roughly 2 million advertisers.
  • An offline batch job generates each user’s top 100 advertisers and publishes them to the online feature store.
  • During ad serving, eligible ads from those advertisers are passed to the L1 ranker, blended with other candidate sources, and scored by heavier downstream models and the marketplace auction.
  • Online experiments produced higher conversion volume and lower cost per action.
  • The advertiser-level model has served production traffic for Standard ads since Spring 2024.

Moving from Advertisers to Products

  • Pinterest next sought to predict the specific products a user would interact with, rather than only the likely advertiser.
  • Item-level prediction better matches the item-based ad delivery funnel and avoids forcing downstream models to score an impractically large set of products from selected advertisers.
  • The approach aims to capture both immediate intent and longer-term interests.

Item-Level Model Architecture

  • The model retains the two-tower design:
    • A user tower encodes behavioral sequences.
    • An item tower represents individual shopping product Pins.
  • Item representations combine:
    • Internal Pin embeddings learned from Pinterest’s engagement graph
    • Product metadata from the merchant catalog
  • Because the catalog exceeds 1 billion items, training uses both in-batch negatives and a randomly sampled negative set of 20 million Pins.
  • The model uses the same conversion labels as the advertiser model.
  • Label weights and log-Q parameters are tuned to balance retrieval quality with diversity across both products and advertisers.
  • Daily inference updates user embeddings only for users with new activity, appending them to a previous feature-store snapshot to reduce computation.
  • The trained item tower indexes hundreds of millions of ad items.

Evaluation and Diversity

  • Item retrieval is evaluated using cosine similarity and hit rates at different K values.
  • Final model selection considers both:
    • Item-level Recall@K
    • Advertiser-level Recall@K
  • Qualitative review is also important because offsite activity is sparse and noisy.
  • The model is compared with max-pooling and mean-pooling baselines that use aggregated embeddings without Transformer-based sequence modeling.
  • The evaluation emphasizes that strong retrieval must also produce semantically relevant and sufficiently diverse recommendations.

Pinterest’s progression from advertiser prediction to item prediction shows how behavioral sequence models can make ad retrieval more personalized while remaining scalable. A practical system should combine sequence-aware user representations, large-scale approximate retrieval, and explicit controls for popularity, diversity, and computational efficiency.