The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A two-stage, large-context transformer for ads recommendation unlocks scaling-law gains once semantic features are included and, when deployed as Meta’s largest upstream user model, delivered a 4.3% uplift in conversions on Feed and Reels while keeping latency low.

LLaTTE: Scaling Laws for Multi-Stage Sequence Modeling in Large-Scale Ads Recommendation
Lee Xiong, Zhirong Chen, Rahul Mayuranath, Shangran Qiu, Arda Ozdemir, Lu Li, Yang Hu, Dave Li, Jingtao Ren, Howard Cheng, Fabian Souto Herrera, Ahmed Agiza, Baruch Epshtein, Anuj Aggarwal, Julia Ulziisaikhan, Chao Wang, Dinesh Ramasamy, Parshva Doshi, Sri Reddy, Arnold Overwijk · January 27, 2026
arxiv rct medium evidence 8/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Lee Xiong unresolved corpus identity
  2. Zhirong Chen unresolved corpus identity
  3. Rahul Mayuranath unresolved corpus identity
  4. Shangran Qiu unresolved corpus identity
  5. Arda Ozdemir unresolved corpus identity
  6. Lu Li unresolved corpus identity
  7. Yang Hu unresolved corpus identity
  8. Dave Li unresolved corpus identity
  9. Jingtao Ren unresolved corpus identity
  10. Howard Cheng unresolved corpus identity
  11. Fabian Souto Herrera unresolved corpus identity
  12. Ahmed Agiza unresolved corpus identity
  13. Baruch Epshtein unresolved corpus identity
  14. Anuj Aggarwal unresolved corpus identity
  15. Julia Ulziisaikhan unresolved corpus identity
  16. Chao Wang unresolved corpus identity
  17. Dinesh Ramasamy unresolved corpus identity
  18. Parshva Doshi unresolved corpus identity
  19. Sri Reddy unresolved corpus identity
  20. Arnold Overwijk unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Lee Xiong provider ID
  2. Zhirong Chen provider ID
  3. Rahul Mayuranath provider ID
  4. S. Qiu provider ID
  5. A. Ozdemir provider ID
  6. Lu Li provider ID
  7. Yang Hu provider ID
  8. David Li provider ID
  9. Jingtao Ren provider ID
  10. Howard Cheng provider ID
  11. Fabian Souto Herrera provider ID
  12. A. Agiza provider ID
  13. Baruch Epshtein provider ID
  14. A. Aggarwal provider ID
  15. Julia Ulziisaikhan provider ID
  16. Chao Wang provider ID
  17. D. Ramasamy provider ID
  18. P. Doshi provider ID
  19. Sriman Reddy provider ID
  20. Arnold Overwijk provider ID
LLaTTE is a two-stage, large-context transformer recommender that, by leveraging semantic features and an asynchronous upstream user model, demonstrates predictable scaling-law gains and produced a 4.3% conversion uplift in live Meta deployments with minimal serving overhead.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

We present LLaTTE (LLM-Style Latent Transformers for Temporal Events), a scalable transformer architecture for production ads recommendation. Through systematic experiments, we demonstrate that sequence modeling in recommendation systems follows predictable power-law scaling similar to LLMs. Crucially, we find that semantic features bend the scaling curve: they are a prerequisite for scaling, enabling the model to effectively utilize the capacity of deeper and longer architectures. To realize the benefits of continued scaling under strict latency constraints, we introduce a two-stage architecture that offloads the heavy computation of large, long-context models to an asynchronous upstream user model. We demonstrate that upstream improvements transfer predictably to downstream ranking tasks. Deployed as the largest user model at Meta, this multi-stage framework drives a 4.3\% conversion uplift on Facebook Feed and Reels with minimal serving overhead, establishing a practical blueprint for harnessing scaling laws in industrial recommender systems.

Summary

Main Finding

LLaTTE (LLM-Style Latent Transformers for Temporal Events) shows that production-scale sequential recommendation follows predictable power-law scaling laws analogous to LLMs — but only when sequence tokens are semantically enriched. By combining a target-aware latent-transformer sequence module with a multi-stage (async upstream + lightweight online) deployment, Meta achieves large upstream models (≫ online FLOPs) whose improvements transfer predictably (~50% transfer ratio) to online ranking, yielding substantial product gains (reported 4.3% conversion uplift on Feed & Reels) with minimal serving overhead.

Key Points

  • Scaling behavior
    • Normalized Entropy (NE) improvements follow a log-linear / power-law form with sequence-module compute C: ∆NE(C) ∝ −α · log10 C.
    • Sequence length (temporal horizon) is a primary lever; longer contexts improve performance when model capacity is sufficient.
    • Semantic content (dense embeddings from content encoders) is not merely additive — it “bends” the scaling curve by increasing the effective scaling coefficient α. In practice, semantically enriched tokens are a prerequisite for steep, continued scaling gains.
  • Architecture & deployment
    • LLaTTE sequence module: target-aware adaptive transformer with Multi-head Latent Attention (MLA) and adaptive pyramidal output trimming to process very long histories efficiently.
    • Non-sequence backbone (DHEN) and task heads are held fixed; sequence module absorbs most compute.
    • Two-stage (multi-stage) design: asynchronous upstream user model (large, high-FLOP encoder) produces and caches user embeddings; online ranking model uses cached embeddings plus short-horizon signals via a lightweight LLaTTE.
    • Upstream vs online asymmetry: upstream consumes >45× sequence FLOPs of the online model (figure shows ~92 GFLOPS/sample upstream).
  • Capacity allocation findings
    • There is a critical width threshold: width d ≳ 256 is required before depth (increasing L) yields strong returns in the sparse-ID regime. Excessive width without depth or vice versa gives diminishing returns.
    • Balanced allocations (sufficient width + depth) are most compute-efficient.
  • Cross-stage transfer
    • The authors define Transfer Ratio τ = ∆NE_downstream / ∆NE_upstream and empirically observe a high τ (≈50%), meaning roughly half of upstream modeling gains are realized in the online ranker despite asynchronous bottlenecks.
  • Production impact
    • Deployed as the largest user model at Meta, the multi-stage framework produced measurable offline NE improvements (e.g., 0.25% NE improvement on a primary revenue model) and a reported 4.3% conversion uplift on Feed and Reels with minimal added serving overhead.

Data & Methods

  • Task & metric
    • Multi-task ads ranking (CTR, CVR, etc.). Primary evaluation: Normalized Entropy (NE) relative reduction vs baseline. On their internal data, 0.02% NE reduction is considered significant.
  • Data & scale
    • Training used ~30 billion examples sampled from production traffic.
    • Sequence lengths examined: T from ~500 up to 5,000 actions.
  • Model & training
    • Sequence-module compute varied across depth L ∈ {1,2,4,8} and width d ∈ {128,256,512,1024}; experiments at T = 400 for some grids, and larger T for horizon studies.
    • Upstream models trained with mixed precision on 128 NVIDIA H100 GPUs; FlashAttention used for efficiency; typical training runs: 229K steps.
    • Non-sequence DHEN backbone and prediction heads were fixed during scale experiments to isolate sequence effects.
  • Architectural details
    • Sequence pipeline: tokenization → fusion (nq query tokens with candidate or user context) → MLA transformer layers → pyramidal trimming → readout summary tokens.
    • Efficient motifs: Multi-head Latent Attention to cut memory, adaptive pyramidal token reduction to focus compute on recent tokens and queries.
  • Scaling analysis
    • Framed NE improvement as a function of sequence-module FLOPs C; empirically fit log-linear relationships to extract scaling coefficient α under different token compositions (sparse IDs vs enriched dense content embeddings).
    • Measured Transfer Ratio τ to quantify how upstream gains translate downstream in the multi-stage pipeline.

Implications for AI Economics

  • Investment targeting: content understanding (dense semantic embeddings) is high-return. The paper shows semantic features are multiplicative — investing in content encoders or richer tokenization materially increases the marginal ROI of scaling sequence models.
  • Cost allocation & architecture economics
    • Multi-stage designs create favorable amortization: heavy, expensive sequence compute is shifted upstream (async), enabling low-latency online serving and permitting larger models overall without proportional operational latency costs.
    • The observed transfer ratio (~50%) provides a practical rule-of-thumb for expected downstream benefit from upstream model upgrades — useful for cost–benefit and budgeting decisions (i.e., expect roughly half the offline NE gains to be realized in production ranking).
  • Capacity planning
    • Predictable scaling laws enable capacity planning and sizing: teams can forecast diminishing returns and choose the compute point where marginal cost = marginal revenue impact.
    • The finding of a critical width threshold (d ≳ 256) informs design choices: underprovisioning width wastes depth scaling budget; overprovisioning width without depth is inefficient. This affects hardware selection and parameter-budget allocation.
  • Economies of scale and reuse
    • Asynchronous cached user embeddings produced by the upstream model can be reused across many downstream tasks and models, delivering economies of scale and reducing incremental marginal cost per downstream model.
  • Operational trade-offs & risks
    • Asynchronous caching introduces freshness/latency trade-offs; monetary value depends on event-trigger policies (which events trigger upstream recompute) and the acceptable staleness for different business metrics.
    • The information bottleneck (and τ < 1) means not all upstream investment converts to online revenue; decisions should account for transfer efficiency and task fragmentation.
  • ROI evidence
    • Empirical gains (0.25% NE on revenue model and 4.3% conversion uplift in production) indicate that, for large platforms, upstream scaling + semantic enrichment can produce sizeable revenue impact that justifies the engineering and compute investment when carefully architected.

If you’d like, I can: - Extract the numerical scaling curves (α estimates) for specific axes from the paper supplemental (if available), or - Provide a short decision checklist (cost vs expected downstream gain) for allocating engineering budget between content encoders, upstream compute, and online model capacity.

Assessment

Paper Typerct Evidence Strengthmedium — The online A/B deployment provides credible causal evidence for the reported 4.3% conversion uplift, but the paper (as summarized) lacks details on randomization protocol, sample sizes, statistical significance, duration, and heterogeneity analyses; the scaling-law claims are supported by systematic offline experiments but rely on extrapolation and are specific to the platform/data and feature set. Methods Rigormedium — The work uses industry-standard, large-scale controlled experiments and systematic ablations across model size, context length, and feature sets, and addresses latency via a two-stage architecture—demonstrating engineering and experimental rigor; however, the summary omits key methodological details (randomization checks, confidence intervals, pre-registration, robustness to non-stationary traffic, and exact training/validation procedures), limiting reproducibility and independent assessment. SampleProduction ad-recommendation data from Meta (Facebook Feed and Reels) consisting of user interaction logs and ad impression/conversion events; models trained on large-scale temporal event sequences augmented with semantic features (content/embedding features); deployment evaluated on live traffic as Meta's largest upstream user model serving global or large regional populations (exact sample sizes, time window, and demographic breakdown not reported). Themesinnovation adoption IdentificationOnline randomized A/B testing of the deployed two-stage model (treatment) versus existing ranking pipeline (control) to measure causal impact on conversions; offline controlled experiments that systematically vary model depth, context length, and presence/absence of semantic features to identify scaling-law relationships and the role of semantic features; transfer evaluated by comparing downstream ranking metrics before/after upstream user-model improvements (held data and serving constraints controlled in ablation studies). GeneralizabilitySingle-platform (Meta) advertising and feed/reels recommendation context — may not generalize to non-advertising recommender tasks, Requires very large-scale data and infrastructure; results may not hold for smaller firms or niche apps, Dependence on specific semantic features and feature engineering pipeline that may be unavailable elsewhere, Potentially sensitive to platform-specific user behavior, ad marketplace dynamics, and regional/regulatory variation, Latency and engineering trade-offs are tuned to Meta's serving stack; other architectures may need different compromises

Claims (7)

ClaimDirectionOutcomeConfidence & EvidenceDetails
LLaTTE (LLM-Style Latent Transformers for Temporal Events) is a scalable transformer architecture for production ads recommendation. Innovation Output positive scalability of transformer architecture for ads recommendation
Reading fidelity high
Study strength medium
not reported
0.6
Sequence modeling in recommendation systems follows predictable power-law scaling similar to LLMs. Research Productivity positive scaling behavior (power-law relationship between model/compute and performance) in sequence modeling for recommendation
Reading fidelity high
Study strength medium
not reported
0.6
Semantic features bend the scaling curve: they are a prerequisite for scaling, enabling the model to effectively utilize the capacity of deeper and longer architectures. Research Productivity positive effect of semantic features on model scaling efficiency and capacity utilization
Reading fidelity high
Study strength medium
not reported
0.6
To realize the benefits of continued scaling under strict latency constraints, we introduce a two-stage architecture that offloads the heavy computation of large, long-context models to an asynchronous upstream user model. Organizational Efficiency positive ability to realize model scaling benefits under latency constraints (architecture/serving efficiency)
Reading fidelity high
Study strength medium
not reported
0.6
Upstream improvements transfer predictably to downstream ranking tasks. Output Quality positive improvement in downstream ranking task performance as a result of upstream model improvements
Reading fidelity high
Study strength medium
not reported
0.6
Deployed as the largest user model at Meta, this multi-stage framework drives a 4.3% conversion uplift on Facebook Feed and Reels with minimal serving overhead. Firm Revenue positive conversion rate (conversion uplift) on Facebook Feed and Reels
Reading fidelity high
Study strength medium
4.3% conversion uplift
0.6
This multi-stage framework establishes a practical blueprint for harnessing scaling laws in industrial recommender systems. Innovation Output positive practical applicability of scaling-law-informed architectures in industry
Reading fidelity high
Study strength speculative
not reported
0.1

Notes