12 cumulative citations
View corpus contextA 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.
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
Claims (7)
| Claim | Direction | Outcome | Confidence & Evidence | Details |
|---|---|---|---|---|
| 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
|
| 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
|
| 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
|
| 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
|
| 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
|
| 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
|
| 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
|