- The paper introduces CMedTEB—a comprehensive benchmark—and CARE, an asymmetric retrieval framework that pairs a lightweight query encoder with a powerful offline document encoder.
- It employs a novel two-stage training strategy combining InfoNCE and MSE losses to achieve robust semantic alignment between query and document representations.
- Empirical results show CARE-0.3B-8B outperforms larger symmetric models by narrowing accuracy gaps while delivering over 9× higher throughput.
CMedTEB & CARE: A Comprehensive Benchmark and Efficient Asymmetric Architecture for Chinese Medical Retrieval
Introduction
This work addresses two critical limitations in Chinese medical text retrieval: (1) the absence of a robust, high-fidelity, and comprehensive benchmark; (2) the prohibitive online inference costs of state-of-the-art LLM-based embedding models inhibiting real-time use. The authors introduce CMedTEB, a benchmark spanning three key tasks with high-quality annotations, and propose CARE, an asymmetric retriever pairing a lightweight BERT-style encoder for queries with a powerful LLM-based encoder for documents. The CARE architecture is optimized with a novel two-stage training strategy for deep semantic alignment.
CMedTEB Benchmark: Data Construction and Analysis
The CMedTEB benchmark is devised to overcome issues of annotation sparsity and false negatives endemic in existing datasets like C-MTEB and CMIRB. The authors quantify that legacy benchmarks exhibit a high number of false negatives per query (up to 19/query in CmedqaRetrieval), validated by LLM and human annotators. CMedTEB’s construction leverages a multi-LLM consensus pipeline, where only documents that receive unanimous positive judgments from three distinct LLMs are retained, and clinical domain experts validate the output. The resulting datasets are non-trivial, displaying significant performance drops for leading general-purpose embedders, and are strongly distinguished from legacy datasets via low rank correlation.
Figure 1: CMedTEB’s construction workflow, highlighting distinct curation processes for Retrieval/Rerank and STS tasks.
CMedTEB’s diagnostic analysis demonstrates high annotation reproducibility (Fleiss’ Kappa of 0.731 among LLMs, 93.3% agreement with clinicians). It consists of three primary tasks:
- Retrieval: Multi-LLM voting on a candidate pool with a strict unanimous agreement.
- Rerank: Positive/negative pools derived from the retrieval phase for fine-grained reranking.
- STS: Medical synonym pairs generated with expert-built synonym dictionaries and validated by GPT-4o.
Analysis of baseline model generalization reveals that existing large embedders, while performant on CMedQA, experience up to a 27-point accuracy drop on CMedTEB’s new subtasks, establishing its necessity for robust evaluation.
CARE: Asymmetric Architecture and Training Paradigm
CARE leverages architectural asymmetry: a lightweight, fast query encoder for online serving and a large, powerful document encoder for offline embedding. Document representations are pre-computed, allowing for real-time query processing without the high latency of symmetric LLM-based dual encoders.
Figure 2: Inference and training pipeline of CARE, showing two-stage training: query encoder alignment followed by joint fine-tuning.
Key innovations include:
- Independent Pretraining: Both query and document encoders are pre-trained separately with contrastive objectives tailored to the medical domain.
- Matryoshka Representation Learning (MRL) aligns document embedding dimensions to query encoder space for compatibility.
- Stage I – Query Encoder Alignment: The document encoder is frozen; the query encoder is trained using both asymmetric InfoNCE and MSE losses. A self-contrastive (unsupervised) approach over massive unlabeled data robustly bridges the semantic gap.
- Stage II – Joint Fine-tuning: Both encoders are then jointly optimized with domain-specific retrieval triplets using asymmetric contrastive loss, refining end-to-end retrieval quality.
Empirical Results
CARE delivers state-of-the-art performance, uniquely achieving LLM-scale retrieval accuracy without the associated online latency.
Figure 3: CARE uniquely breaks the efficiency-performance trade-off, combining BERT-level QPS and LLM-level retrieval quality.
Ablation and Architectural Analysis
Ablations confirm:
- Independent pretraining for query and document encoders is critical; omitting either halves performance.
- Both query encoder alignment and joint fine-tuning stages are necessary—bypassing either causes up to 13-point drops.
- The combination of InfoNCE and MSE objectives in alignment yields the best embedding space compatibility.
- Unsupervised self-contrastive alignment (Stage I) provides better fine-tuning foundations than direct supervised alignment, potentially due to greater variety preventing premature convergence.
Implications and Future Directions
The asymmetric CARE framework redefines efficiency-accuracy tradeoffs in specialized retrieval. It demonstrates that, by decoupling query and document computation and aligning via two-stage progressive training, domain-specific retrieval systems can be both highly performant and suitable for real-time deployment.
Practically, CARE presents an immediately deployable solution for industrial and clinical Chinese medical retrieval systems, as its offline-heavy design does not degrade user-facing latency. The open-sourced CMedTEB establishes a new standard for benchmarking in the domain, and its rigorous annotation pipeline provides a template for other high-stakes, knowledge-intensive settings.
Theoretically, this work highlights the importance of multi-stage, semantically deliberate alignment for leveraging heterogeneous model architectures in IR. It invites further research into scaling asymmetric designs, extending such frameworks to other languages and tasks, and theorizing optimal allocation of parametric capacity between offline and online paths in retriever systems.
Conclusion
CMedTEB & CARE establish a rigorous standard and efficient architecture for Chinese medical text retrieval. CARE achieves LLM-level accuracy with BERT-level online latency through asymmetric design and a novel two-stage alignment strategy. This work lays a foundation for future research in domain-specific, low-latency embedding systems and provides critical resources for reproducible and robust benchmarking in medical IR.