Curriculum Contrastive Context Denoising for Few-shot Conversational Dense Retrieval (SIGIR 2022)
Metadata
| Field | Content | |-------|---------| | Title | Curriculum Contrastive Context Denoising for Few-shot Conversational Dense Retrieval | | Venue | SIGIR 2022 | | Source | https://dl.acm.org/doi/abs/10.1145/3477495.3531961 | | Type | Academic paper | | Section | Conversational Search |
Background and Motivation
The paper targets few-shot conversational dense retrieval, where a search system must resolve multi-turn conversational context (coreference, ellipsis, evolving user intent) into effective dense query representations, but only limited labeled data is available. In such settings, conversation history acts as a noisy context signal: some turns are relevant to the current information need, while others are distracting. The work, published at SIGIR 2022, is positioned at the intersection of conversational search and large-scale retrieval systems, addressing efficiency, scalability, and user-intent understanding in the era of LLMs.
Core Contributions (as outlined in the post)
- A unified perspective on the problem of noisy conversational context in few-shot retrieval, bringing related work into a comparable framework.
- A decomposition of method components (representation learning, retriever, reranker, planner, generator, feedback mechanisms) to ease engineering adoption.
- Reproducible experimental protocols/benchmark coverage to lower the entry cost for follow-up research.
- Discussion of interfaces with emerging paradigms such as LLM tool use, reinforcement learning, and multi-agent collaboration.
- Open problems: evaluation trustworthiness, latency and cost, hallucination and safety, cross-lingual and multimodal extension.
- Datasets: MS MARCO, BEIR, Natural Questions, domain-specific corpora.
- Metrics: nDCG@10, MRR, Recall@k, Hit@k, human preference, task success rate, latency and token cost.
- Baselines: BM25, dense retrieval, cross-encoder reranking, retrieval-free LLMs, commercial search APIs.
- A Survey of Conversational Search, Sep 2025, ACM
- Engineering Conversational Search Systems: A Review of Applications (arXiv 2407.00997)
- Agentic Conversational Search with Contextualized Reasoning via Reinforcement Learning
- CTR-Guided Generative Query Suggestion in Conversational Search, EMNLP
- ChatRetriever: Adapting LLMs for Generalized and Robust Conversational Dense Retrieval (arXiv 2404.13556)
- CoSearchAgent: A Lightweight Collaborative Search Agent (arXiv 2402.06360)
- Original paper: *Curriculum Contrastive Context Denoising for Few-shot Conversational Dense Retrieval*, SIGIR 2022. DOI: 10.1145/3477495.3531961
> Note: This forum entry is largely template-generated. The original paper's abstract text was not reproduced in the post (the quoted abstract field is empty), so specifics of the curriculum contrastive denoising mechanism and exact numbers should be verified against the original PDF via the ACM DL link.
Method Pipeline (generalized)
1. Input and representation: encode queries, documents, and conversational context into dense representations or structured prompts. 2. Core modules: retriever, reranker, planner, memory, and tool interfaces, chained or combined per task. 3. Learning strategies: supervised fine-tuning, contrastive learning, distillation, reinforcement learning, bootstrapped data synthesis. 4. Inference strategies: single-turn retrieval, iterative retrieval, parallel sub-queries, early stopping and budget control.
Evaluation Setup (typical for this line of work)
Concrete quantitative results should be taken from the original paper's tables.
Takeaways for Search / Rec / Personalization
1. Architecture: cascade of retrieval + reranking + generation remains mainstream, but agentic paradigms treat retrieval frequency and strategy itself as learnable. 2. Data: high-quality instruction data and click/session logs matter equally; synthetic data must guard against leakage and distribution shift. 3. Evaluation: the gap between offline metrics and online satisfaction is widening; LLM-as-judge needs cross-validation with human assessment. 4. Product: latency, cost, explainability, and safety are hard constraints for industrial deployment—do not optimize academic benchmarks alone.
Related Entries (cross-references from the post)
Glossary
| Term | Meaning | |------|---------| | IR | Information Retrieval | | RAG | Retrieval-Augmented Generation | | nDCG | Normalized Discounted Cumulative Gain, a ranking quality metric | | Agentic Search | Modeling search as sequential decision-making and tool invocation | | Gen-IR | Generative Information Retrieval |