PeiyangLiu commited on
Commit
0bbff95
·
verified ·
1 Parent(s): aec9aa5

Add README card

Browse files
Files changed (1) hide show
  1. README.md +66 -5
README.md CHANGED
@@ -1,11 +1,72 @@
1
  ---
 
 
 
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
3
  ---
4
- 数据集文件元信息以及数据文件,请浏览“数据集文件”页面获取。
5
 
6
- 当前数据集卡片使用的是默认模版,数据集的贡献者未提供更加详细的数据集介绍,但是您可以通过如下GIT Clone命令,或者ModelScope SDK来下载数据集
7
 
8
- #### 下载方法
9
- :modelscope-code[]{type="sdk"}
10
- :modelscope-code[]{type="git"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
 
1
  ---
2
+ pretty_name: Wiki-CoE
3
+ language:
4
+ - en
5
  license: apache-2.0
6
+ task_categories:
7
+ - question-answering
8
+ - visual-question-answering
9
+ tags:
10
+ - multimodal
11
+ - visual-question-answering
12
+ - chain-of-evidence
13
+ - document-understanding
14
+ - wiki
15
+ size_categories:
16
+ - 10K<n<100K
17
  ---
 
18
 
19
+ # Wiki-CoE
20
 
21
+ Wiki-CoE is a multimodal question-answering dataset for evaluating whether a model can answer questions from visual evidence and produce an explicit chain of evidence. Each example pairs a natural-language question with one or more Wikipedia page screenshots and asks the model to return both the answer and the supporting evidence.
22
+
23
+ The dataset is intended for research on visual reasoning, evidence localization, and chain-of-evidence style multimodal QA.
24
+
25
+ ## Dataset contents
26
+
27
+ The main release is under `release_strict_chainsplit_20260428_1338/`:
28
+
29
+ | File | Description |
30
+ |---|---:|
31
+ | `train.json` | training split, 35,210 examples |
32
+ | `test.json` | test split, 35,208 examples |
33
+ | `val_1000_seed42.json` | small validation subset, 1,000 examples |
34
+ | `split_report.json` | high-level split statistics |
35
+ | `val_1000_seed42_manifest.json` | validation subset indices |
36
+
37
+ Each example contains:
38
+
39
+ | Field | Description |
40
+ |---|---|
41
+ | `question` | input question |
42
+ | `answer` | short answer |
43
+ | `type` | reasoning type |
44
+ | `num_hops` | number of evidence hops |
45
+ | `evidence_chain` | ordered evidence screenshots, bounding boxes, and sub-questions |
46
+ | `evidences` | supporting evidence metadata |
47
+
48
+ ## Screenshot archive
49
+
50
+ The screenshot images are stored as a split archive under `release_assets/`.
51
+
52
+ To reconstruct the image directory:
53
+
54
+ ```bash
55
+ cat release_assets/screenshots_trimmed.tar.zst.part-* > screenshots_trimmed.tar.zst
56
+ tar --use-compress-program=unzstd -xf screenshots_trimmed.tar.zst
57
+ ```
58
+
59
+ This creates:
60
+
61
+ ```text
62
+ screenshots_trimmed/
63
+ ```
64
+
65
+ The archive contains 76,000 PNG screenshots. SHA256 checksums for the archive parts are provided in `release_assets/screenshots_trimmed.tar.zst.sha256`.
66
+
67
+ ## Related resources
68
+
69
+ - Code: https://github.com/PeiYangLiu/CoE
70
+ - Wiki-CoE model checkpoint: https://huggingface.co/PeiyangLiu/CoE-Wiki-CoE-8B
71
+ - SlideVQA model checkpoint: https://huggingface.co/PeiyangLiu/CoE-SlideVQA-8B
72