ZTWHHH commited on
Commit
f317e05
·
verified ·
1 Parent(s): 56380ee

Add manifest (metadata.json)

Browse files
Files changed (1) hide show
  1. metadata.json +27 -14
metadata.json CHANGED
@@ -1,8 +1,8 @@
1
  {
2
- "name": "Q-Bench+",
3
- "release_date": "2024-01-01",
4
  "subsets": {
5
- "main": {
6
  "language": [
7
  "en"
8
  ],
@@ -10,7 +10,12 @@
10
  "multi_image_start"
11
  ],
12
  "task_type": "multiple_choice_vqa",
13
- "prompt_template": "<image><image>{% if hint %}Hint: {{ hint }}\n{% endif %}Question: {{ question }}\nOptions:\n{% for k, v in options.items() %}{{ k }}. {{ v }}\n{% endfor %}Please select the correct answer from the options above. \n",
 
 
 
 
 
14
  "mapping_from_source": {
15
  "media": {
16
  "from": "images",
@@ -28,14 +33,27 @@
28
  "from": "answer",
29
  "optional": true
30
  },
31
- "options": {
32
- "from": "options",
33
- "optional": true,
34
- "note": "list source values are normalized to {A,B,...} dict"
35
- },
36
  "extra": {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  "question_type": {
38
  "from": "question_type"
 
 
 
39
  }
40
  },
41
  "source": {
@@ -44,11 +62,6 @@
44
  "dev": "https://huggingface.co/datasets/q-future/Q-Bench2-HF"
45
  }
46
  }
47
- },
48
- "prompt_template_source": {
49
- "origin": "official",
50
- "reference": "https://github.com/open-compass/VLMEvalKit/blob/main/vlmeval/dataset/image_mcq.py (Q-Bench-Plus uses ImageMCQDataset.build_prompt with multi-image variant)",
51
- "notes": "Tier 3: VLMEvalKit ImageMCQDataset.build_prompt with multi-image extension (Q-Bench Plus paired-image MCQ)."
52
  }
53
  }
54
  }
 
1
  {
2
+ "name": "Q-Bench-Plus",
3
+ "release_date": "2024-04-15",
4
  "subsets": {
5
+ "default": {
6
  "language": [
7
  "en"
8
  ],
 
10
  "multi_image_start"
11
  ],
12
  "task_type": "multiple_choice_vqa",
13
+ "prompt_template": "{% for _ in range(n_images) %}<image>{% endfor %}{{ question }}\nA. {{ option0 }}\nB. {{ option1 }}\nC. {{ option2 }}\nD. {{ option3 }}\nAnswer with the option's letter from the given choices directly.",
14
+ "prompt_template_source": {
15
+ "origin": "official",
16
+ "reference": "https://huggingface.co/datasets/q-future/Q-Bench2-HF",
17
+ "notes": "Tier 1: Q-Bench2 (Q-Bench+) paired-image quality MCQ; dev split is the public-labeled split."
18
+ },
19
  "mapping_from_source": {
20
  "media": {
21
  "from": "images",
 
33
  "from": "answer",
34
  "optional": true
35
  },
 
 
 
 
 
36
  "extra": {
37
+ "n_images": {
38
+ "from": "n_images"
39
+ },
40
+ "option0": {
41
+ "from": "option0"
42
+ },
43
+ "option1": {
44
+ "from": "option1"
45
+ },
46
+ "option2": {
47
+ "from": "option2"
48
+ },
49
+ "option3": {
50
+ "from": "option3"
51
+ },
52
  "question_type": {
53
  "from": "question_type"
54
+ },
55
+ "question_concern": {
56
+ "from": "question_concern"
57
  }
58
  },
59
  "source": {
 
62
  "dev": "https://huggingface.co/datasets/q-future/Q-Bench2-HF"
63
  }
64
  }
 
 
 
 
 
65
  }
66
  }
67
  }