ZTWHHH commited on
Commit
22435f2
·
verified ·
1 Parent(s): 95367c2

metadata: migrate score_type -> score_pipeline (atomic stage contract; see mm-eval scorer docs/en/SCORING.md)

Browse files
Files changed (1) hide show
  1. metadata.json +66 -63
metadata.json CHANGED
@@ -1,66 +1,69 @@
1
  {
2
- "name": "We-Math",
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_qa",
13
- "score_type": "rule",
14
- "score_protocol": {
15
- "reference": "official We-Math/We-Math@README + evaluation/four_dimensional_metrics.py & evaluation/accuracy.py — 'we use string matching to directly extract answers, which eliminates the high cost of using additional models for further answer extraction' (rule-based option-letter extraction, exact compare). [Quote re-verified verbatim in the official README 2026-07-07; rule pipeline re-verified vendored at VLMEvalKit@vlmeval/dataset/utils/wemath.py:28-41 (split on 'Answer', strip, first char in A-H, compare).]",
16
- "note": "Official headline is the four-dimensional metric set (IK/IG/CM/RM) plus step-wise accuracy, computed by grouping one-step sub-problems with their multi-step composite problem (problem_id/step_key, vendored in VLMEvalKit vlmeval/dataset/utils/wemath.py:16-238); a per-sample accuracy scorer will not reproduce those group scores (grouping keys ARE shipped in extra). VLMEvalKit grades WeMath via mcq_vanilla_eval (image_mcq.py WeMath.evaluate -> utils/multiple_choice.py mcq_vanilla_eval, rule can_infer + GPT extraction fallback), i.e. llm_extract — disagrees with the official rule-only protocol; official preferred."
17
- },
18
- "prompt_template": "<image>{{ question }}\nOptions:\n{% for k, v in options.items() %}{{ k }}. {{ v }}{% if not loop.last %}\n{% endif %}{% endfor %}\nPlease select the correct answer from the options above. \n",
19
- "mapping_from_source": {
20
- "media": {
21
- "from": "image",
22
- "type": "list",
23
- "min_items": 1,
24
- "max_items": 1
25
- },
26
- "id": {
27
- "from": "id"
28
- },
29
- "question": {
30
- "from": "question"
31
- },
32
- "answer": {
33
- "from": "answer",
34
- "optional": true
35
- },
36
- "options": {
37
- "from": "options",
38
- "optional": true,
39
- "note": "list source values are normalized to {A,B,...} dict"
40
- },
41
- "extra": {
42
- "knowledge_concept": {
43
- "from": "knowledge_concept"
44
- },
45
- "problem_id": {
46
- "from": "problem_id"
47
- },
48
- "step_key": {
49
- "from": "step_key"
50
- }
51
- },
52
- "source": {
53
- "format": "huggingface",
54
- "url": {
55
- "testmini": "https://huggingface.co/datasets/We-Math/We-Math"
56
- }
 
 
 
 
 
 
 
 
 
 
57
  }
58
- },
59
- "prompt_template_source": {
60
- "origin": "official",
61
- "reference": "https://github.com/open-compass/VLMEvalKit/blob/main/vlmeval/dataset/image_mcq.py (ImageMCQDataset.build_prompt — canonical MCQ trailer with options bullets)",
62
- "notes": "Tier 3: VLMEvalKit ImageMCQDataset.build_prompt; We-Math is evaluated via VLMEvalKit's standard MCQ flow."
63
- }
64
  }
65
- }
66
- }
 
1
  {
2
+ "name": "We-Math",
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_qa",
13
+ "score_pipeline": [
14
+ "exact-match",
15
+ "rule-match"
16
+ ],
17
+ "score_protocol": {
18
+ "reference": "official We-Math/We-Math@README + evaluation/four_dimensional_metrics.py & evaluation/accuracy.py 'we use string matching to directly extract answers, which eliminates the high cost of using additional models for further answer extraction' (rule-based option-letter extraction, exact compare). [Quote re-verified verbatim in the official README 2026-07-07; rule pipeline re-verified vendored at VLMEvalKit@vlmeval/dataset/utils/wemath.py:28-41 (split on 'Answer', strip, first char in A-H, compare).]",
19
+ "note": "Official headline is the four-dimensional metric set (IK/IG/CM/RM) plus step-wise accuracy, computed by grouping one-step sub-problems with their multi-step composite problem (problem_id/step_key, vendored in VLMEvalKit vlmeval/dataset/utils/wemath.py:16-238); a per-sample accuracy scorer will not reproduce those group scores (grouping keys ARE shipped in extra). VLMEvalKit grades WeMath via mcq_vanilla_eval (image_mcq.py WeMath.evaluate -> utils/multiple_choice.py mcq_vanilla_eval, rule can_infer + GPT extraction fallback), i.e. llm_extract — disagrees with the official rule-only protocol; official preferred."
20
+ },
21
+ "prompt_template": "<image>{{ question }}\nOptions:\n{% for k, v in options.items() %}{{ k }}. {{ v }}{% if not loop.last %}\n{% endif %}{% endfor %}\nPlease select the correct answer from the options above. \n",
22
+ "mapping_from_source": {
23
+ "media": {
24
+ "from": "image",
25
+ "type": "list",
26
+ "min_items": 1,
27
+ "max_items": 1
28
+ },
29
+ "id": {
30
+ "from": "id"
31
+ },
32
+ "question": {
33
+ "from": "question"
34
+ },
35
+ "answer": {
36
+ "from": "answer",
37
+ "optional": true
38
+ },
39
+ "options": {
40
+ "from": "options",
41
+ "optional": true,
42
+ "note": "list source values are normalized to {A,B,...} dict"
43
+ },
44
+ "extra": {
45
+ "knowledge_concept": {
46
+ "from": "knowledge_concept"
47
+ },
48
+ "problem_id": {
49
+ "from": "problem_id"
50
+ },
51
+ "step_key": {
52
+ "from": "step_key"
53
+ }
54
+ },
55
+ "source": {
56
+ "format": "huggingface",
57
+ "url": {
58
+ "testmini": "https://huggingface.co/datasets/We-Math/We-Math"
59
+ }
60
+ }
61
+ },
62
+ "prompt_template_source": {
63
+ "origin": "official",
64
+ "reference": "https://github.com/open-compass/VLMEvalKit/blob/main/vlmeval/dataset/image_mcq.py (ImageMCQDataset.build_prompt — canonical MCQ trailer with options bullets)",
65
+ "notes": "Tier 3: VLMEvalKit ImageMCQDataset.build_prompt; We-Math is evaluated via VLMEvalKit's standard MCQ flow."
66
+ }
67
  }
 
 
 
 
 
 
68
  }
69
+ }