Commit ·
fec25cb
1
Parent(s): 82a1c36
Add dataset card, link to paper and code (#1)
Browse files- Add dataset card, link to paper and code (d26faf676451245021e0a9464ea52eb2024de808)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-text-to-text
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# AVerImaTeC-Filled
|
| 8 |
+
|
| 9 |
+
This dataset provides a filled knowledge store and precomputed embeddings for the AVerImaTeC shared task, supporting the system described in the paper [VILLAIN at AVerImaTeC: Verifying Image-Text Claims via Multi-Agent Collaboration](https://huggingface.co/papers/2602.04587).
|
| 10 |
+
|
| 11 |
+
[**Code**](https://github.com/ssu-humane/VILLAIN) | [**Paper**](https://huggingface.co/papers/2602.04587)
|
| 12 |
+
|
| 13 |
+
## Dataset Description
|
| 14 |
+
|
| 15 |
+
Generating embeddings for knowledge stores (both text and image) is computationally expensive and time-consuming. This repository releases precomputed assets to facilitate research and reproducibility for the AVerImaTeC task.
|
| 16 |
+
|
| 17 |
+
It includes:
|
| 18 |
+
- **Filled `text_related` knowledge store**: Data for the validation and test splits.
|
| 19 |
+
- **Vector Store**: For saving and loading persistent data.
|
| 20 |
+
- **Precomputed text embeddings**: For both the original and filled knowledge bases.
|
| 21 |
+
- **Precomputed image embeddings**: For both the original and filled knowledge bases.
|
| 22 |
+
|
| 23 |
+
## Citation
|
| 24 |
+
|
| 25 |
+
If you find this dataset or the associated code useful, please cite:
|
| 26 |
+
|
| 27 |
+
```bibtex
|
| 28 |
+
@article{jung2026villain,
|
| 29 |
+
title={VILLAIN at AVerImaTeC: Verifying Image-Text Claims via Multi-Agent Collaboration},
|
| 30 |
+
author={Jung, Jaeyoon and Yoon, Yejun and Yoon, Seunghyun and Park, Kunwoo},
|
| 31 |
+
journal={arXiv preprint arXiv:2602.04587},
|
| 32 |
+
year={2026}
|
| 33 |
+
}
|
| 34 |
+
```
|