CLIRJul 11, 2025

Distillation versus Contrastive Learning: How to Train Your Rerankers

arXiv:2507.08336v310 citationsh-index: 38Has CodeIJCNLP-AACL
Originality Incremental advance
AI Analysis

This provides practical guidance for researchers and practitioners in information retrieval on choosing training strategies based on available teacher models.

This paper compares knowledge distillation and contrastive learning for training text rerankers, finding that distillation from a more performant teacher model generally yields better in-domain and out-of-domain ranking performance, especially for smaller models, while contrastive learning is a robust baseline when such a teacher is unavailable.

Training effective text rerankers is crucial for information retrieval. Two strategies are widely used: contrastive learning (optimizing directly on ground-truth labels) and knowledge distillation (transferring knowledge from a larger reranker). While both have been studied extensively, a clear comparison of their effectiveness for training cross-encoder rerankers under practical conditions is needed. This paper empirically compares these strategies by training rerankers of different sizes (0.5B, 1.5B, 3B, 7B) and architectures (Transformer, Recurrent) using both methods on the same data, with a strong contrastive learning model acting as the distillation teacher. Our results show that knowledge distillation generally yields better in-domain and out-of-domain ranking performance than contrastive learning when distilling from a more performant teacher model. This finding is consistent across student model sizes and architectures. However, distilling from a teacher of the same capacity does not provide the same advantage, particularly for out-of-domain tasks. These findings offer practical guidance for choosing a training strategy based on available teacher models. We recommend using knowledge distillation to train smaller rerankers if a larger, more performant teacher is accessible; in its absence, contrastive learning remains a robust baseline. Our code implementation is made available to facilitate reproducbility.

Foundations

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

Your Notes