Datasets:
Update dataset README
Browse files
README.md
CHANGED
|
@@ -146,3 +146,88 @@ configs:
|
|
| 146 |
- split: NanoBIRCOWTB
|
| 147 |
path: queries/NanoBIRCOWTB-*
|
| 148 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 146 |
- split: NanoBIRCOWTB
|
| 147 |
path: queries/NanoBIRCOWTB-*
|
| 148 |
---
|
| 149 |
+
|
| 150 |
+
# NanoBIRCO
|
| 151 |
+
|
| 152 |
+
This dataset is a Nano-style retrieval dataset. Nano-series evaluation can be run easily with [HAKARI-Bench](https://github.com/hotchpotch/hakari-bench).
|
| 153 |
+
|
| 154 |
+
NanoBIRCO is derived from BIRCO. It follows the Hugging Face Datasets layout convention used by [sentence-transformers/NanoBEIR-en](https://huggingface.co/datasets/sentence-transformers/NanoBEIR-en): each Nano split has separate `corpus`, `queries`, and `qrels` tables, and BM25 candidates are provided separately in a `bm25` table. This layout follows the NanoBEIR-style evaluation approach summarized in [NanoBEIR](https://huggingface.co/blog/sionic-ai/eval-sionic-nano-beir).
|
| 155 |
+
|
| 156 |
+
NanoBIRCO contains 5 Nano retrieval splits derived from BIRCO. Each split keeps up to 200 eligible queries and up to 10000 corpus documents, with exact duplicate query and document text removed where the generator records that policy.
|
| 157 |
+
|
| 158 |
+
## Source Links
|
| 159 |
+
|
| 160 |
+
- Source benchmark: `BIRCO`
|
| 161 |
+
- Source benchmark repository: https://github.com/embeddings-benchmark/mteb
|
| 162 |
+
- `mteb/BIRCO-ArguAna-Test`: https://huggingface.co/datasets/mteb/BIRCO-ArguAna-Test
|
| 163 |
+
- `mteb/BIRCO-ClinicalTrial-Test`: https://huggingface.co/datasets/mteb/BIRCO-ClinicalTrial-Test
|
| 164 |
+
- `mteb/BIRCO-DorisMae-Test`: https://huggingface.co/datasets/mteb/BIRCO-DorisMae-Test
|
| 165 |
+
- `mteb/BIRCO-Relic-Test`: https://huggingface.co/datasets/mteb/BIRCO-Relic-Test
|
| 166 |
+
- `mteb/BIRCO-WTB-Test`: https://huggingface.co/datasets/mteb/BIRCO-WTB-Test
|
| 167 |
+
|
| 168 |
+
## Data Layout
|
| 169 |
+
|
| 170 |
+
This dataset uses four Hugging Face Datasets configs:
|
| 171 |
+
|
| 172 |
+
- `corpus`: documents with `_id` and `text`
|
| 173 |
+
- `queries`: queries with `_id` and `text`
|
| 174 |
+
- `qrels`: positive relevance labels with `query-id` and `corpus-id`
|
| 175 |
+
- `bm25`: BM25 candidate lists with `query-id` and `corpus-ids`
|
| 176 |
+
|
| 177 |
+
Each config uses the same Nano split names. If the actual generated dataset uses a different schema, config name, path layout, or field name, revise this section before publishing the README.
|
| 178 |
+
|
| 179 |
+
## Construction Steps
|
| 180 |
+
|
| 181 |
+
This dataset was built as follows. If the actual generation procedure differs, revise this section before publishing the README.
|
| 182 |
+
|
| 183 |
+
1. Use BIRCO as the upstream benchmark or dataset family.
|
| 184 |
+
2. Load the source datasets recorded in `manifest.json` and per-split metadata files.
|
| 185 |
+
3. Use the evaluation splits selected by `scripts/create_mteb_nano_series_local.py` as the source evaluation split policy.
|
| 186 |
+
4. Create one Nano split for each selected source retrieval task.
|
| 187 |
+
5. Keep up to 200 eligible queries per Nano split.
|
| 188 |
+
6. Include qrels-positive documents for the selected queries. For graded qrels, only rows with `score > 0` are treated as positive.
|
| 189 |
+
7. Fill the corpus from source corpus order up to 10000 documents.
|
| 190 |
+
8. Remove exact duplicate document text within each split. If a removed duplicate was referenced by qrels, rewrite qrels to the kept document id when the generator records that policy.
|
| 191 |
+
9. Store document title and body as a single `text` field when the source provides both.
|
| 192 |
+
10. Generate BM25 top-100 candidates with the tokenization policy recorded per split.
|
| 193 |
+
11. If a qrels-positive document is missing from the raw BM25 result, insert it into the final `bm25` candidate list by replacing a tail non-positive candidate.
|
| 194 |
+
|
| 195 |
+
Some source queries had more positives than the BM25 candidate cap. For those cases, the Nano qrels keep the first available positive document so BM25 top-k remains comparable; 44 selected queries were capped and 4851 source positive qrels were omitted from this Nano slice.
|
| 196 |
+
|
| 197 |
+
## BM25 Subset Policy
|
| 198 |
+
|
| 199 |
+
The `bm25` config is a candidate subset for first-stage retrieval and reranking. It is not a separate source dataset. Each row contains one query id and a ranked list of corpus ids.
|
| 200 |
+
|
| 201 |
+
BM25 candidates are generated from the selected corpus for each split. The configured candidate cap is top-100. When a qrels-positive document is not present in the raw BM25 result, the missing positive is forced into the final candidate list by replacing a tail candidate that is not positive for that query. Candidate ids are kept unique after replacement.
|
| 202 |
+
|
| 203 |
+
## Split Mapping
|
| 204 |
+
|
| 205 |
+
| Nano split | Source task | Source dataset | Queries | Corpus | Qrels |
|
| 206 |
+
|---|---|---|---:|---:|---:|
|
| 207 |
+
| `NanoBIRCOArguAna` | `BIRCO-ArguAna` | `mteb/BIRCO-ArguAna-Test` | 98 | 3081 | 98 |
|
| 208 |
+
| `NanoBIRCOClinicalTrial` | `BIRCO-ClinicalTrial` | `mteb/BIRCO-ClinicalTrial-Test` | 50 | 3375 | 1042 |
|
| 209 |
+
| `NanoBIRCODorisMae` | `BIRCO-DorisMae` | `mteb/BIRCO-DorisMae-Test` | 60 | 5544 | 1569 |
|
| 210 |
+
| `NanoBIRCORelic` | `BIRCO-Relic` | `mteb/BIRCO-Relic-Test` | 100 | 5023 | 100 |
|
| 211 |
+
| `NanoBIRCOWTB` | `BIRCO-WTB` | `mteb/BIRCO-WTB-Test` | 100 | 1766 | 100 |
|
| 212 |
+
|
| 213 |
+
## BM25 nDCG@10
|
| 214 |
+
|
| 215 |
+
`nDCG@10` is computed from the included BM25 ranking against the included qrels.
|
| 216 |
+
|
| 217 |
+
Tokenizer policy summary: `stemmer:en`.
|
| 218 |
+
|
| 219 |
+
| Nano split | Tokenizer | Forced BM25 positives | BM25 nDCG@10 |
|
| 220 |
+
|---|---|---:|---:|
|
| 221 |
+
| `NanoBIRCOArguAna` | `stemmer:en` | 6 | 0.4051 |
|
| 222 |
+
| `NanoBIRCOClinicalTrial` | `stemmer:en` | 819 | 0.1194 |
|
| 223 |
+
| `NanoBIRCODorisMae` | `stemmer:en` | 942 | 0.2469 |
|
| 224 |
+
| `NanoBIRCORelic` | `stemmer:en` | 62 | 0.0633 |
|
| 225 |
+
| `NanoBIRCOWTB` | `stemmer:en` | 65 | 0.0751 |
|
| 226 |
+
|
| 227 |
+
## Skipped Tasks
|
| 228 |
+
|
| 229 |
+
No source tasks were skipped.
|
| 230 |
+
|
| 231 |
+
## License
|
| 232 |
+
|
| 233 |
+
NanoBIRCO is a derived dataset. Users must comply with the licenses, terms, and attribution requirements of the upstream datasets and benchmarks.
|