Add README stub
Browse files
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
|
| 3 |
+
# DVisRAG-Ret-Test-RealWorld-MP-DocVQA
|
| 4 |
+
|
| 5 |
+
## Description
|
| 6 |
+
Placeholder repository for DVisRAG (retrieval-oriented VQA).
|
| 7 |
+
- **Split:** Test
|
| 8 |
+
- **Domain:** RealWorld
|
| 9 |
+
- **Task:** MP-DocVQA
|
| 10 |
+
- **Source:** industrial documents from MP-DocVQA.
|
| 11 |
+
|
| 12 |
+
## Upstream / Clean Source Links
|
| 13 |
+
- `openbmb/VisRAG-Ret-Test-MP-DocVQA` (https://huggingface.co/datasets/openbmb/VisRAG-Ret-Test-MP-DocVQA)
|
| 14 |
+
|
| 15 |
+
## Planned data layout
|
| 16 |
+
- `corpus/`, `queries/`, `qrels/` (BEIR-style)
|
| 17 |
+
|
| 18 |
+
## Loading (example)
|
| 19 |
+
from datasets import load_dataset
|
| 20 |
+
repo_id = "robustvisrag/DVisRAG-Ret-Test-RealWorld-MP-DocVQA"
|
| 21 |
+
corpus = load_dataset(repo_id, name="corpus", split="train")
|
| 22 |
+
queries = load_dataset(repo_id, name="queries", split="train")
|