Improving Deep Learning for Airbnb Search (KDD 2020)
Overview
This entry covers the applied research paper "Improving Deep Learning for Airbnb Search", presented at KDD 2020 and available in the ACM Digital Library:
- Source: https://dl.acm.org/doi/abs/10.1145/3394486.3403333
- Venue: KDD 2020 (Applied Data Science track)
- Domain: Large-scale search ranking / information retrieval / personalization
- An interpretable ensemble of graph and language models for improving search
- Applying Deep Learning to Ads Conversion Prediction in Last Mile Delivery
- Automated Query-Product Relevance Labeling using Large Language Models
- Behavior Modeling Space Reconstruction for E-Commerce Search (Jan 2025)
- Behavior-driven query similarity prediction based on pre-trained language models
- Better to Ask in English: Cross-Lingual Evaluation of Large Language Models
- Original paper: *Improving Deep Learning for Airbnb Search*, KDD 2020. DOI: 10.1145/3394486.3403333
Context
In large-scale search, recommendation, and personalization systems, information retrieval has long faced challenges around efficiency, scalability, and understanding user intent. Traditional pipeline approaches often separate retrieval, ranking, and generation, which makes it harder to serve users' combined needs for natural language interaction, multi-hop reasoning, and fresh knowledge.
This KDD 2020 paper from Airbnb addresses how deep learning models for search ranking can be improved in a production setting, making it a representative industrial case study of deploying neural ranking at scale for accommodation search.
Key Takeaways for Search / Rec / Personalization Practitioners
1. Architecture: Cascaded retrieval + ranking + generation remains the mainstream stack; industrial papers like this one show how each stage is tuned under real-world constraints. 2. Data: High-quality training signals from clicks and session logs are as critical as model architecture in production search. 3. Evaluation: Offline metrics and online user satisfaction can diverge; industrial deployments require interleaving experiments and human audits alongside offline nDCG. 4. Product constraints: Latency, cost, interpretability, and safety policies are hard constraints in industrial systems and cannot be ignored in favor of purely academic benchmarks.
Related Entries
Glossary
| Term | Meaning | |------|---------| | IR | Information Retrieval | | LTR | Learning to Rank | | nDCG | Normalized Discounted Cumulative Gain, a ranking quality metric | | Agentic Search | Modeling search as sequential decision-making and tool invocation |