AI for Evidence Utilization · Retrieve
LADER: Log-Augmented DEnse Retrieval for Biomedical Literature Search
Qiao Jin, Andrew Shin, Zhiyong Lu
SIGIR 2023
These slides were generated with the help of AI and may contain errors.
01Motivation
Click logs are a free relevance signal retrievers ignore
The cost of dense retrieval
- Dense retrievers match by meaning — but need costly labeled pairs to fine-tune.
The unused signal
- Search engines log exactly which article users click for each query.
- That relevance signal sits unused.
02Method
Borrow what past users clicked, at inference time
- For a new query, find similar past queries and aggregate their clicked documents.
- Blend that with the retriever’s own scores — no extra training.

03Method
A plug-in over any dense retriever
- The query embedding is matched to documents via maximum inner-product search.
- A parallel branch aggregates click-log evidence; the two scores are combined.

04Result
New state of the art on TripClick
- Measured on TripClick, a benchmark of 5.2M real health-search click logs.
- Full LADER leads on HEAD, TORSO, and TAIL query slices.
| Model | HEAD | TORSO | TAIL |
|---|---|---|---|
| BM25 | 0.140 | 0.206 | 0.267 |
| ConvKNRM | 0.198 | 0.243 | 0.271 |
| TK (best baseline) | 0.208 | 0.272 | 0.295 |
| LADER w/o log-aug | 0.247 | 0.241 | 0.260 |
| LADER w/o dense | 0.324 | 0.266 | 0.232 |
| LADER (full) | 0.338 | 0.303 | 0.310 |
NDCG@10 on TripClick by query frequency. Source: Table 1.
05Result
Gains transfer from head to tail queries
- Retrieval quality rises with log size across all query slices.
- Head queries gain most; torso and tail improve too.

06Summary
LADER at a glance
| Background | Neural retrievers need relevance labels that biomedical search largely lacks. |
| Problem | Yet users’ search click logs are a free relevance signal retrievers ignore. |
| Approach | Borrow documents past users clicked for similar queries — no training. |
| Results | New state of the art on TripClick, across head, torso & tail queries. |
| Conclusion | Click logs alone rival trained retrievers — a precursor to the log-driven training behind our MedCPT. |