Datasets:
Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- feature-extraction
|
| 5 |
+
- sentence-similarity
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- scientific-documents
|
| 10 |
+
- long-context
|
| 11 |
+
- retrieval
|
| 12 |
+
- citation-context
|
| 13 |
+
pretty_name: Body-Fact Retrieval (BFR) diagnostic
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Body-Fact Retrieval (BFR) diagnostic
|
| 19 |
+
|
| 20 |
+
A science-specific long-context retrieval probe released with **SciEmbed**
|
| 21 |
+
(*Citation-Context Supervision for Scientific Document Embeddings*, Findings of
|
| 22 |
+
EMNLP 2026). The task: given a sentence drawn from the **body** of a scientific
|
| 23 |
+
paper that does not appear in its abstract, retrieve the source paper from a
|
| 24 |
+
pool of full-text documents. Short-context encoders that only see the
|
| 25 |
+
title+abstract are blind to the content that must be matched; long-context
|
| 26 |
+
encoders that read the body can recover it, so the probe isolates whether a
|
| 27 |
+
model's context window is actually exploited on scientific text.
|
| 28 |
+
|
| 29 |
+
## Contents
|
| 30 |
+
|
| 31 |
+
- `candidates.parquet` — 9,749 candidate papers (`candidate_id`, `title`,
|
| 32 |
+
`abstract`, `body`, `field_of_study`, `citation_count`).
|
| 33 |
+
- `queries.parquet` — 1,000 body-sentence queries (`query_id`, `query_text`,
|
| 34 |
+
`gold_candidate_id`).
|
| 35 |
+
|
| 36 |
+
## Construction
|
| 37 |
+
|
| 38 |
+
- **Queries** are single sentences from the middle third of each paper
|
| 39 |
+
(skipping intro/conclusion), 80–400 characters, with at most 0.2 trigram
|
| 40 |
+
overlap against the paper's abstract so the abstract alone is not a shortcut.
|
| 41 |
+
- **Leakage control.** Every candidate paper has a citation count in [1, 4],
|
| 42 |
+
strictly below the citation_count ≥ 5 threshold used to build the SciEmbed
|
| 43 |
+
Stage-2 (Signal A/B) training pool. No candidate was a training anchor,
|
| 44 |
+
positive, or hard negative.
|
| 45 |
+
- **Coverage.** Roughly 400 papers per field across ~24 S2AG disciplines
|
| 46 |
+
(Computer Science, Mathematics, Physics, Biology, Medicine, Law, History,
|
| 47 |
+
Philosophy, …). Bodies span ~11k–59k characters (5th–95th percentile).
|
| 48 |
+
|
| 49 |
+
## Usage
|
| 50 |
+
|
| 51 |
+
Encode each query and each candidate (title + abstract + body, up to the
|
| 52 |
+
model's context length), then retrieve by cosine similarity and report
|
| 53 |
+
Recall@k. See the SciEmbed repository for the full evaluation harness and the
|
| 54 |
+
robustness variants (same-field pool, Qwen3-paraphrased queries).
|
| 55 |
+
|
| 56 |
+
- Code: https://github.com/J0nasW/SciEmbed-release
|
| 57 |
+
- Models: https://huggingface.co/J0nasW
|
| 58 |
+
|
| 59 |
+
## Citation
|
| 60 |
+
|
| 61 |
+
```bibtex
|
| 62 |
+
@inproceedings{wilinski2026sciembed,
|
| 63 |
+
title={SciEmbed: Citation-Context Supervision for Scientific Document Embeddings},
|
| 64 |
+
author={Wilinski, Jonas and F{\"a}rber, Michael},
|
| 65 |
+
booktitle={Findings of the Association for Computational Linguistics: EMNLP 2026},
|
| 66 |
+
year={2026}
|
| 67 |
+
}
|
| 68 |
+
```
|