CLDec 18, 2022

CAPSTONE: Curriculum Sampling for Dense Retrieval with Document Expansion

arXiv:2212.09114v2134 citationsh-index: 66
Originality Incremental advance
AI Analysis

This addresses a specific bottleneck in dense retrieval for information retrieval systems, offering an incremental improvement over existing methods.

The paper tackles the inconsistency between training and inference in dense retrieval models that use query-informed document representations, proposing a curriculum sampling strategy with pseudo queries to improve attention to both document and query, resulting in outperformance on in-domain and out-of-domain datasets.

The dual-encoder has become the de facto architecture for dense retrieval. Typically, it computes the latent representations of the query and document independently, thus failing to fully capture the interactions between the query and document. To alleviate this, recent research has focused on obtaining query-informed document representations. During training, it expands the document with a real query, but during inference, it replaces the real query with a generated one. This inconsistency between training and inference causes the dense retrieval model to prioritize query information while disregarding the document when computing the document representation. Consequently, it performs even worse than the vanilla dense retrieval model because its performance heavily relies on the relevance between the generated queries and the real query.In this paper, we propose a curriculum sampling strategy that utilizes pseudo queries during training and progressively enhances the relevance between the generated query and the real query. By doing so, the retrieval model learns to extend its attention from the document alone to both the document and query, resulting in high-quality query-informed document representations. Experimental results on both in-domain and out-of-domain datasets demonstrate that our approach outperforms previous dense retrieval models.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes