PeiyangLiu commited on
Commit
be65239
·
verified ·
1 Parent(s): 8e3483b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - visual-question-answering
5
+ - question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - multi-hop
10
+ - evidence-localization
11
+ - chain-of-evidence
12
+ - 2wikimultihopqa
13
+ - qwen-vl
14
+ size_categories:
15
+ - 10K<n<100K
16
+ ---
17
+
18
+ # CoE (Chain of Evidence) — 2WikiMultiHopQA with Wikipedia Screenshots
19
+
20
+ Training dataset for the CoE paper: single-hop evidence localization on Wikipedia screenshots, expanded from 2WikiMultiHopQA.
21
+
22
+ ## Contents
23
+
24
+ `wiki_coe_dataset.tar.zst` (165 MB compressed, ~1 GB uncompressed):
25
+
26
+ ```
27
+ wiki_coe/
28
+ ├── train_split_single_hop.json # 89,819 training samples (95% split)
29
+ ├── val_split_single_hop.json # 4,744 validation samples (5% split)
30
+ ├── train_single_hop.json # 94,563 single-hop samples (full)
31
+ ├── test_single_hop.json # 92,456 test samples
32
+ ├── train_clean.json # 39,823 multi-hop (filtered)
33
+ ├── test_clean.json # 38,588 multi-hop (filtered)
34
+ ├── train.json / test.json # raw multi-hop 2Wiki
35
+ └── screenshots/ # ~76,000 Wikipedia PNGs
36
+ ```
37
+
38
+ ## Split
39
+
40
+ - Train: **89,819** single-hop samples
41
+ - Val: **4,744** single-hop samples
42
+ - Split at multi-hop parent level (no hop-level leakage)
43
+
44
+ ## Schema (single-hop JSON record)
45
+
46
+ ```json
47
+ {
48
+ "question": "...",
49
+ "answer": "...",
50
+ "evidence_chain": [
51
+ {"title": "...", "image": "Title_hash.png",
52
+ "bbox": [x1, y1, x2, y2], "paragraph": "..."}
53
+ ],
54
+ "images": ["Title_hash.png"]
55
+ }
56
+ ```
57
+
58
+ ## Decompress
59
+
60
+ ```bash
61
+ tar -I 'zstd -d' -xf wiki_coe_dataset.tar.zst
62
+ ```