Update dataset card with metadata, links, and sample usage
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-retrieval
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
---
|
| 8 |
|
| 9 |
+
# CiteGuard Dataset
|
| 10 |
+
|
| 11 |
+
CiteGuard is a benchmark and framework used in the paper [CiteGuard: Faithful Citation Attribution for LLMs via Retrieval-Augmented Validation](https://huggingface.co/papers/2510.17853). It reframes citation evaluation as a problem of citation attribution alignment, assessing whether LLM-generated citations match those a human author would include for the same text.
|
| 12 |
+
|
| 13 |
+
- **Project Page:** https://kathcym.github.io/CiteGuard_Page/
|
| 14 |
+
- **GitHub Repository:** https://github.com/KathCYM/CiteGuard
|
| 15 |
+
|
| 16 |
+
## Dataset Format
|
| 17 |
+
|
| 18 |
+
The dataset follows a CSV format with the following columns:
|
| 19 |
+
|
| 20 |
+
- `id`: Unique identifier for the excerpt.
|
| 21 |
+
- `excerpt`: The text containing the citation to be validated (e.g., using a `[CITATION]` placeholder).
|
| 22 |
+
- `year`: The year of the source paper.
|
| 23 |
+
- `source_paper_title` (optional): The title of the paper containing the excerpt.
|
| 24 |
+
- `target_paper_title` (optional): The gold standard title(s) for evaluation.
|
| 25 |
+
|
| 26 |
+
## Sample Usage
|
| 27 |
+
|
| 28 |
+
Using the [CiteGuard repository](https://github.com/KathCYM/CiteGuard), you can run the evaluation on a dataset file via the CLI:
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
python -m src.main --model_name gpt-4o --dataset DATASET.csv --result_path results/run.json
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Citation
|
| 35 |
+
|
| 36 |
+
If you use this dataset or the CiteGuard framework, please cite the following:
|
| 37 |
+
|
| 38 |
+
```bibtex
|
| 39 |
+
@misc{choi2026citeguardfaithfulcitationattribution,
|
| 40 |
+
title={CiteGuard: Faithful Citation Attribution for LLMs via Retrieval-Augmented Validation},
|
| 41 |
+
author={Yee Man Choi and Xuehang Guo and Yi R. Fung and Qingyun Wang},
|
| 42 |
+
year={2026},
|
| 43 |
+
eprint={2510.17853},
|
| 44 |
+
archivePrefix={arXiv},
|
| 45 |
+
primaryClass={cs.DL},
|
| 46 |
+
url={https://arxiv.org/abs/2510.17853},
|
| 47 |
+
}
|
| 48 |
+
```
|