Add dataset card with paper link, task category, and usage instructions
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-retrieval
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# QAMPARI Wikipedia 2021 Index
|
| 8 |
+
|
| 9 |
+
This repository contains the prebuilt Wikipedia 2021 index dataset used in the paper [SPADER: Step-wise Peer Advantage with Diversity-Aware Exploration Rewards for Multi-Answer Question Answering](https://huggingface.co/papers/2606.00593).
|
| 10 |
+
|
| 11 |
+
- **Repository:** [https://github.com/KhanCold/spader](https://github.com/KhanCold/spader)
|
| 12 |
+
- **Paper:** [arXiv:2606.00593](https://arxiv.org/abs/2606.00593)
|
| 13 |
+
|
| 14 |
+
## Dataset Description
|
| 15 |
+
|
| 16 |
+
This dataset provides the Wikipedia 2021 index used by SPADER's local HTTP retrieval service to evaluate multi-answer question answering tasks on benchmarks like QAMPARI.
|
| 17 |
+
|
| 18 |
+
## Dataset Usage
|
| 19 |
+
|
| 20 |
+
To download and extract the prebuilt Wikipedia index, you can run the following commands:
|
| 21 |
+
|
| 22 |
+
```bash
|
| 23 |
+
mkdir -p data
|
| 24 |
+
wget "https://huggingface.co/datasets/KhanCold/QAMPARI_wikipedia_2021/resolve/main/QAMPARI_wikipedia_2021.tar" \
|
| 25 |
+
-O data/QAMPARI_wikipedia_2021.tar
|
| 26 |
+
tar -xf data/QAMPARI_wikipedia_2021.tar -C data
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Citation
|
| 30 |
+
|
| 31 |
+
```bibtex
|
| 32 |
+
@misc{shi2026spaderstepwisepeeradvantage,
|
| 33 |
+
title={SPADER: Step-wise Peer Advantage with Diversity-Aware Exploration Rewards for Multi-Answer Question Answering},
|
| 34 |
+
author={Qiming Shi and Zhaolu Kang and Yunfan Zhou and Di Weng and Yingcai Wu},
|
| 35 |
+
year={2026},
|
| 36 |
+
eprint={2606.00593},
|
| 37 |
+
archivePrefix={arXiv},
|
| 38 |
+
primaryClass={cs.CL},
|
| 39 |
+
url={https://arxiv.org/abs/2606.00593},
|
| 40 |
+
}
|
| 41 |
+
```
|