惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Jina AI
Jina AI
The Cloudflare Blog
V
Visual Studio Blog
博客园_首页
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园 - Franky

InfoQ

GitHub Copilot Open-Source Project Brings Full iOS 27 Virtualization to Apple Silicon From Retrieval to Reasoning: Building Production-Ready Agentic AI Systems with Knowledge Graphs Lambda SnapStart Comes to Container Images, Ending a Packaging Tradeoff One Decade of Rustls: Evolution, Benchmarks, and Future Roadmap NVIDIA Personal AI Router Distributes AI Tasks across Local Compute Netflix Reworks Conductor for 420 Million Monthly Workflow Executions and 10X Larger Workflows tsgolint Reaches Stable v7, Bringing Go-Powered Type-Aware Linting to Oxlint Terraform AWS Provider Continues Rapid Expansion as AWS Infrastructure Becomes More Complex How To Run on Three Clouds at Once, and When Not To How LinkedIn Trains AI Job Search 8x Faster with Multi-Teacher Distillation Session Traces and Cost Controls Help Diagnose AI Agent Failures Advancing Embedded Go: Recoverable Panics, UEFI, Radio and Hardware Dev Kit Blume: Zero-Config Docs Framework That Turns a Markdown Folder into an AI-Ready Website Redefining GIS: Declarative Symbology and Collaborative Workflows in JupyterGIS Airbnb Cuts Authentication Code by 60% with Server Driven Architecture Kubernetes Promotes KYAML as a Safer, More Consistent Way to Work with Manifests Next-Gen Architecture Playbook: Insights and Patterns for the AI Era From S3 to GPU in One Copy: Rethinking Data Loading for ML Training Copilot Code Review Reaches Azure Repos, Billed Per Review with Reporting Two Days Behind Personality Over Skillset: How Adam Wachtel Builds Engineering Teams Tether: Apple Continuity Like Experience Between iOS and Linux Desktop Machines Twenty Years of jQuery: How a Little Library Rewired Web Development Shopify Introduces Gisting: Compressing LLM System Prompts into Learned Tokens Rigorous Yet Sustainable Human Reviews in the AI Era pnpm 12 Rewrites Package Manager in Rust, Accelerating Installs While Preserving pnpm 11 Workflows Instrumentation at Scale: Having Your Performance Cake and Eating It Too Cohere’s Parse 5 Promises Efficient Multi-Modal Information Extraction From Complex Documents OpenAI Details GPT-Live’s Architecture for Continuous Stateful Voice Interaction Beyond Prompting: Context Engineering for Production-Grade AI
Swiggy Uses 350+ Features and Multi-Task MLP to Predict C...
Leela Kumili · 2026-09-02 · via InfoQ

Swiggy has developed an in-house predicted lifetime value (pLTV) model to estimate the long-term value of new customers across its food delivery and Instamart quick commerce businesses. The model is designed to generate a useful signal before a customer's first order, allowing Swiggy to use predicted value in advertising bid optimization rather than relying on short-term conversion metrics.

Swiggy pLTV model architecture (Source: Swiggy Blog Post)

The prediction problem is complicated by sparse early signals and a highly skewed target distribution. Swiggy notes that a large share of new users place no orders during their first 30 days, while a relatively small group generates substantially higher lifetime value. The model therefore needs to distinguish between users who initially appear similar but develop different ordering patterns over time.

Swiggy's approach uses more than 350 features grouped across areas including acquisition channel, device and fraud signals, geographic behavior, complaint history, Instamart category affinity, order behavior, payment patterns and socioeconomic indicators. The features are generated from information available before a customer's first order, addressing the cold start requirement for advertising systems.

Soumyajyoti Banerjee, Staff Data Scientist at Swiggy, highlighted the trade-off in a LinkedIn post,

The twist: adding a second prediction task shrank the model by 63% — and made it more accurate.

The model uses a relatively simple multilayer perceptron rather than a more complex architecture. Three shared hidden layers learn representations across the prediction tasks, followed by task-specific heads for Food and Instamart. Swiggy also introduced order count as an auxiliary prediction task alongside lifetime value. The resulting four-head model produced marginally better results while reducing the parameter count from 363,000 to 135,000, a 63% reduction.

According to Jayshmi A, an engineer at Swiggy, conventional regression metrics such as mean absolute error and mean absolute percentage error were not sufficient to evaluate the model because of the large number of zero-value users and the long tail of customer value. Instead, Swiggy evaluated whether the model could correctly rank customers by value. The evaluation divides predicted and actual values into ten quantiles and measures how often users fall into the corresponding predicted and actual groups.

The problem wasn’t producing a score; it was producing a score that could survive sparse early signals.

The model achieved a Spearman correlation above 0.75 for both Food and Instamart, with 70% to 80% diagonal coverage across the value deciles.

pLTV Decile Coverage or Prediction Heatmap (Source: Swiggy Blog Post)

In production, Swiggy uses the pLTV signal with Google's target return on ad spend (tROAS) bidding. The intended workflow is to rank customers by predicted value and allow the advertising system to differentiate bids based on that ranking.

Swiggy also compared the in-house model with a third-party pLTV platform in production A/B experiments. The company's model delivered higher retention and gross order value per acquired user without additional platform costs, while the external platform acquired more users per dollar spent.

Swiggy said the next stage of the work will move from point estimates to probabilistic pLTV predictions, aiming to represent uncertainty in customer value and incorporate it into bidding decisions.

About the Author

Leela Kumili