Add dataset description, task categories, and usage examples
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
| 3 |
configs:
|
| 4 |
- config_name: cvqa
|
| 5 |
data_files:
|
|
@@ -63,4 +66,49 @@ dataset_info:
|
|
| 63 |
download_size: 1014718726
|
| 64 |
dataset_size: 1861309171
|
| 65 |
---
|
| 66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-retrieval
|
| 5 |
+
- image-text-to-text
|
| 6 |
configs:
|
| 7 |
- config_name: cvqa
|
| 8 |
data_files:
|
|
|
|
| 66 |
download_size: 1014718726
|
| 67 |
dataset_size: 1861309171
|
| 68 |
---
|
| 69 |
+
|
| 70 |
+
# M4-RAG: A Massive-Scale Multilingual Multi-Cultural Multimodal RAG
|
| 71 |
+
|
| 72 |
+
[**Paper**](https://huggingface.co/papers/2512.05959) | [**Code**](https://github.com/davidanugraha/M4-RAG)
|
| 73 |
+
|
| 74 |
+
M4-RAG is a massive-scale benchmark spanning 42 languages, 56 regional dialects and registers, and 189 countries, comprising over 80,000 culturally diverse image-question pairs for evaluating retrieval-augmented Visual Question Answering (VQA) across languages and modalities.
|
| 75 |
+
|
| 76 |
+
This repository specifically contains the **Wikipedia Retrieval Corpus**, a controlled retrieval environment containing millions of carefully curated multilingual documents relevant to the query domains.
|
| 77 |
+
|
| 78 |
+
## Dataset Structure
|
| 79 |
+
|
| 80 |
+
The dataset consists of two configurations:
|
| 81 |
+
- `cvqa`: Wikipedia articles relevant to the Culturally-Aware Visual Question Answering domain.
|
| 82 |
+
- `worldcuisines`: Wikipedia articles relevant to the food-related visual question answering domain.
|
| 83 |
+
|
| 84 |
+
## Sample Usage
|
| 85 |
+
|
| 86 |
+
You can load the retrieval corpus using the Hugging Face `datasets` library:
|
| 87 |
+
|
| 88 |
+
```python
|
| 89 |
+
from datasets import load_dataset
|
| 90 |
+
|
| 91 |
+
# Load the CVQA Wikipedia retrieval corpus
|
| 92 |
+
cvqa_corpus = load_dataset("davidanugraha/M4-RAG", "cvqa", split="train")
|
| 93 |
+
|
| 94 |
+
# Load the WorldCuisines Wikipedia retrieval corpus
|
| 95 |
+
worldcuisines_corpus = load_dataset("davidanugraha/M4-RAG", "worldcuisines", split="train")
|
| 96 |
+
```
|
| 97 |
+
|
| 98 |
+
## Related Datasets
|
| 99 |
+
- **CVQA Images**: Available at [`davidanugraha/cvqa`](https://huggingface.co/datasets/davidanugraha/cvqa)
|
| 100 |
+
- **WorldCuisines Images**: Available at [`worldcuisines/vqa-v1.1`](https://huggingface.co/datasets/worldcuisines/vqa-v1.1)
|
| 101 |
+
|
| 102 |
+
## Citation
|
| 103 |
+
|
| 104 |
+
If you use M4-RAG in your research, please cite:
|
| 105 |
+
|
| 106 |
+
```bibtex
|
| 107 |
+
@article{anugraha2025m4rag,
|
| 108 |
+
title={M4-RAG: A Massive-Scale Multilingual Multi-Cultural Multimodal RAG},
|
| 109 |
+
author={Anugraha, David and Irawan, Patrick Amadeus and Singh, Anshul and Lee, En-Shiun Annie and Winata, Genta Indra},
|
| 110 |
+
journal={arXiv preprint arXiv:2512.05959},
|
| 111 |
+
year={2025},
|
| 112 |
+
url={https://arxiv.org/abs/2512.05959}
|
| 113 |
+
}
|
| 114 |
+
```
|