ZTWHHH commited on
Commit
6c3d71d
·
verified ·
1 Parent(s): 249c06c

Add v2 manifest (metadata.json)

Browse files
Files changed (1) hide show
  1. metadata.json +56 -0
metadata.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "MMEvalPro",
3
+ "release_date": "2024-07-01",
4
+ "subsets": {
5
+ "main": {
6
+ "language": [
7
+ "en"
8
+ ],
9
+ "modalities": [
10
+ "single_image_start"
11
+ ],
12
+ "task_type": "multiple_choice_vqa",
13
+ "prompt_template": "<image>{{ question }}\n{% for k, v in options.items() %}{{ k }}. {{ v }}\n{% endfor %}Answer with the option letter from the given choices directly.",
14
+ "mapping_from_source": {
15
+ "media": {
16
+ "from": "image",
17
+ "type": "list",
18
+ "min_items": 1,
19
+ "max_items": 1
20
+ },
21
+ "id": {
22
+ "from": "index"
23
+ },
24
+ "question": {
25
+ "from": "question"
26
+ },
27
+ "answer": {
28
+ "from": "answer",
29
+ "optional": true
30
+ },
31
+ "options": {
32
+ "from": "choices",
33
+ "optional": true,
34
+ "note": "list source values are normalized to {A,B,...} dict"
35
+ },
36
+ "extra": {
37
+ "source": {
38
+ "from": "source"
39
+ },
40
+ "question_category": {
41
+ "from": "question_category"
42
+ },
43
+ "eval_type": {
44
+ "from": "eval_type"
45
+ }
46
+ },
47
+ "source": {
48
+ "format": "huggingface",
49
+ "url": {
50
+ "test": "https://huggingface.co/datasets/MM-Diagnose/MMEvalPro"
51
+ }
52
+ }
53
+ }
54
+ }
55
+ }
56
+ }