EST: Towards Efficient Scaling Laws in Click-Through Rate Prediction via Unified Modeling
EST architecture with LCA and CSA achieves fully unified sequence modeling, significantly improving industrial CTR prediction performance.
Key Findings
Methodology
This work introduces EST, a fully unified transformer-based model, incorporating Lightweight Cross-Attention (LCA) to prune low-value self-interactions and Content Sparse Attention (CSA) to dynamically select high-signal behaviors based on content similarity. All raw inputs—non-behavioral features, user behaviors, candidate behaviors, and content features—are organized into a single sequence, avoiding lossy early aggregation. The model leverages domain-specific insights, such as the asymmetry in information density and modality-specific priors, to optimize interaction priorities. Experiments on Taobao advertising data demonstrate a stable power-law scaling relationship, with performance improving predictably as model size increases.
Key Results
- Deployment on Taobao's platform achieved a 3.27% increase in RPM and a 1.22% lift in CTR, outperforming existing baselines. The performance scaled consistently with model size, confirming the power-law relationship.
- Model ablation showed that LCA reduces redundant computation by pruning low-impact self-interactions, while CSA enhances signal utilization by content-based behavior selection.
- Scaling experiments indicated performance gains as parameters increased from hundreds of millions to billions, validating the theoretical scaling law and practical efficiency of EST.
Significance
This research addresses the critical challenge of scaling CTR prediction models in industrial settings, where efficiency and accuracy must coexist under strict latency constraints. By leveraging insights into information density and content modality, EST offers a pathway to large-scale, high-performance recommendation systems. Its ability to maintain stable performance gains with increasing model size provides a valuable foundation for future research and industrial deployment, bridging the gap between academic scaling laws and real-world constraints.
Technical Contribution
The key technical innovation lies in the domain-specific analysis of CTR data, leading to the design of LCA and CSA modules that prioritize high-impact interactions and content-based signals. This approach decouples model scaling from sequence length, enabling efficient large-scale training. The theoretical underpinning of the power-law scaling relationship offers a new perspective on model capacity versus performance in recommendation tasks, extending the success of scaling laws from LLMs to industrial CTR prediction.
Novelty
This work is the first to systematically incorporate information density asymmetry and modality-specific priors into a unified transformer architecture for CTR prediction. The combination of LCA and CSA modules, tailored for heterogeneous, long sequences, represents a significant departure from prior hierarchical or partial-unification models, providing both theoretical and practical advancements in scalable recommendation modeling.
Limitations
- The model's reliance on content similarity may be sensitive to noisy or irrelevant content signals, potentially affecting robustness.
- Training and inference at billion-parameter scale still demand substantial computational resources, limiting accessibility.
- The approach's effectiveness in highly sparse or dynamic content environments requires further validation, especially for real-time adaptation.
Future Work
Future directions include enhancing multi-modal content fusion, improving robustness against content noise, and exploring distributed training techniques to reduce hardware costs. Additionally, integrating explainability mechanisms and robustness tests will be critical for industrial adoption. Extending the framework to multi-task learning and other recommendation domains also presents promising avenues.
AI Executive Summary
In the realm of recommendation systems, click-through rate (CTR) prediction remains a fundamental yet challenging task, especially as industrial applications demand models that are both highly accurate and computationally efficient at scale. Traditional approaches often rely on early behavioral sequence compression or partial joint modeling, which inevitably lead to information loss or computational bottlenecks. This paper introduces EST, an innovative transformer-based architecture designed to address these issues through full sequence unification.
EST leverages two key modules: Lightweight Cross-Attention (LCA) and Content Sparse Attention (CSA). LCA intelligently prunes low-value self-interactions, focusing on critical cross-feature dependencies, thereby reducing redundant computation. CSA utilizes content similarity to dynamically select behaviors with high semantic signals, significantly improving the efficiency of long-sequence modeling. These mechanisms are grounded in a domain-specific analysis revealing the asymmetry in information density between non-behavioral and behavioral features, as well as the heterogeneous nature of content signals.
Experimental results on Taobao’s advertising platform demonstrate that EST not only outperforms existing models with a 3.27% RPM increase and 1.22% CTR lift but also exhibits a stable power-law scaling relationship. As the model size increases from hundreds of millions to billions of parameters, performance improves predictably, confirming the theoretical scalability. This scalability enables the deployment of larger, more accurate models within the strict latency constraints of industrial environments.
The significance of this work lies in its practical and theoretical contributions. It offers a new paradigm for large-scale recommendation modeling, bridging the gap between the success of scaling laws in language models and the unique challenges of CTR prediction. By effectively leveraging domain-specific insights, EST paves the way for future research in scalable, efficient, and high-performance recommendation systems. Despite some limitations related to content noise and resource demands, the framework sets a promising foundation for industrial-scale recommendation architectures, with broad implications for personalized content delivery across industries.
Deep Analysis
Background
推荐系统中的CTR预测经历了从传统机器学习模型(如LR、FM)到深度神经网络(如DeepFM、DIN、AutoInt)的演变。随着模型参数规模不断扩大,性能持续提升,但同时也带来了长序列处理、信息异质性和计算瓶颈等新挑战。Transformer架构被引入以增强长距离依赖建模能力,但在工业场景中,序列长度达数千,参数规模达百亿,导致训练和推理成本高昂。多模态内容(文本、图片)丰富了信息表达,但也增加了模型复杂度。现有方法多采用分层或局部交互策略,难以在保证效率的同时充分利用长序列中的细粒度信号。
Core Problem
核心问题在于如何在严格的计算和延迟限制下实现模型的规模化扩展,同时保持高效和准确。现有模型多依赖早期行为序列压缩或局部交互,导致信息丢失或无法充分挖掘长序列中的潜在信号。工业应用要求模型在毫秒级响应时间内处理数千候选项,传统Transformer在长序列和大规模参数条件下难以满足效率与效果的双重需求。
Innovation
主要创新包括:1) 基于信息密度不对称性分析,提出全序列统一建模架构,避免早期信息丢失;2) 设计LCA模块,通过剪枝低价值自交互,强化非行为与行为之间的关键依赖,降低冗余计算;3) 引入CSA机制,利用内容相似性动态筛选高信号行为,提升信息利用效率。这些设计充分结合CTR数据的异质性和特征结构,突破了Transformer在工业场景中的计算瓶颈,为大规模推荐模型提供新思路。
Methodology
- �� 输入:将非行为特征N、用户行为B、候选行为Bc及内容特征映射为统一序列。• LCA:在每一层中,通过剪枝自交互,只保留非行为与行为之间的关键交互,减少冗余。• CSA:利用内容特征计算行为间相似性,动态筛选出高信号子集,进行稀疏注意。• 全序列处理:所有特征在单一Transformer中输入,避免多阶段压缩。• 训练:采用大规模参数优化策略,验证模型的幂律性能增长规律。
Experiments
使用淘宝广告平台真实大规模数据,包含亿级用户行为和多模态内容。对比模型包括DIN、AutoInt、Longer、MTGR等。指标为RPM、CTR、AUC。通过调整模型参数规模,验证性能随参数增长的趋势。还进行了消融实验,评估LCA和CSA的贡献。
Results
在工业环境中,EST模型实现了3.27%的RPM提升和1.22%的CTR增长,优于所有对比模型。模型参数从数亿到百亿级别,性能持续提升,符合幂律增长规律。LCA显著减少冗余计算,CSA增强内容信号利用,整体架构实现了长序列高效建模,验证了设计的有效性。
Applications
该模型适用于大规模工业广告和内容推荐场景,结合丰富的行为和内容数据,能实现高效、准确的个性化推荐。部署后,显著提升广告收入和用户体验,满足工业级低延迟需求。
Limitations & Outlook
模型在极端稀疏或内容噪声较高的环境下表现有限,内容相似性依赖可能受干扰。训练和推理成本仍较高,硬件资源需求大。未来需优化鲁棒性和泛化能力,降低成本,增强适应性。
Plain Language Accessible to non-experts
想象你在一家大工厂工作,工厂里有许多不同的机器和工人。每个机器负责不同的任务,比如生产零件、包装产品。你需要安排这些机器的工作顺序,让整个生产线最高效。以前的方法只关注某段时间的生产情况,忽略了前后关系,效率不高。现在,有个聪明的调度系统,它能同时考虑所有机器的状态,优先安排最重要的任务,还会根据内容相似性,动态调整哪些机器合作,哪些可以单独工作。这样,工厂的生产速度大大提高,成本降低。论文中的方法就像给工厂装上了智能大脑,让它变得更快更聪明。
ELI14 Explained like you're 14
想象你在学校组织一个大项目,有很多任务,比如写报告、做演示、收集资料。以前,你可能只关注某个任务的部分内容,花了很多时间还不够好。现在,有个超级聪明的助手,它可以同时看所有任务的内容,帮你优先处理最重要的部分,还会根据资料的相似性,帮你找到最相关的内容。这样,你的工作变得快多了,效果也更棒。这就像论文里的方法一样,它用一种聪明的方式,把所有信息都放在一起,优先处理最关键的部分,节省了很多时间和精力,还能做出更好的预测。它就像你的学习助手,让你变得更聪明、更高效!
Abstract
Efficiently scaling industrial Click-Through Rate (CTR) prediction has recently attracted significant research attention. Existing approaches typically employ early aggregation of user behaviors to maintain efficiency. However, such non-unified or partially unified modeling creates an information bottleneck by discarding fine-grained, token-level signals essential for unlocking scaling gains. In this work, we revisit the fundamental distinctions between CTR prediction and Large Language Models (LLMs), identifying two critical properties: the asymmetry in information density between behavioral and non-behavioral features, and the modality-specific priors of content-rich signals. Accordingly, we propose the Efficiently Scalable Transformer (EST), which achieves fully unified modeling by processing all raw inputs in a single sequence without lossy aggregation. EST integrates two modules: Lightweight Cross-Attention (LCA), which prunes redundant self-interactions to focus on high-impact cross-feature dependencies, and Content Sparse Attention (CSA), which utilizes content similarity to dynamically select high-signal behaviors. Extensive experiments show that EST exhibits a stable and efficient power-law scaling relationship, enabling predictable performance gains with model scale. Deployed on Taobao's display advertising platform, EST significantly outperforms production baselines, delivering a 3.27\% RPM (Revenue Per Mile) increase and a 1.22\% CTR lift, establishing a practical pathway for scalable industrial CTR prediction models.