ZTWHHH commited on
Commit
b522c09
·
verified ·
1 Parent(s): 97eeaca

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 +72 -69
metadata.json CHANGED
@@ -1,72 +1,75 @@
1
  {
2
- "name": "VisualMRC",
3
- "release_date": "2026-05-26",
4
- "subsets": {
5
- "main": {
6
- "language": [
7
- "en"
8
- ],
9
- "modalities": [
10
- "single_image_start"
11
- ],
12
- "task_type": "open_ended_qa",
13
- "score_type": "caption_metrics",
14
- "score_params": {
15
- "metrics": [
16
- "rouge_l",
17
- "bleu4",
18
- "meteor",
19
- "cider"
20
- ]
21
- },
22
- "score_protocol": {
23
- "reference": "Official VisualMRC paper (arXiv:2101.11272, AAAI 2021, 'Evaluation metrics' §: 'we used BLEU, METEOR, ROUGE-L, and CIDEr' following generative MRC/captioning; BERTScore additionally reported in result tables; ROUGE-L used for model selection). No lmms-eval or VLMEvalKit task exists (re-confirmed 2026-07-07: no visualmrc task in either local clone).",
24
- "note": "Generative reading-comprehension answers graded with captioning-style reference metrics over a single reference answer per question; paper declares no single headline — ROUGE-L listed first here since the paper selects models by ROUGE-L. Official tables also report BERTScore (now representable in the caption_metrics enum but kept out of params to match the paper's core four). metadata.json prompt citation of lmms_eval/tasks/visualmrc is bogus — must be corrected."
25
- },
26
- "prompt_template": "<image>{{ question }}",
27
- "mapping_from_source": {
28
- "media": {
29
- "from": "image",
30
- "type": "list",
31
- "min_items": 1,
32
- "max_items": 1
33
- },
34
- "id": {
35
- "from": "id"
36
- },
37
- "question": {
38
- "from": "question"
39
- },
40
- "answer": {
41
- "from": "answer",
42
- "optional": true
43
- },
44
- "extra": {
45
- "qa_idx": {
46
- "from": "qa_idx"
47
- },
48
- "url": {
49
- "from": "url"
50
- },
51
- "screenshot_filename": {
52
- "from": "screenshot_filename"
53
- },
54
- "image_filename": {
55
- "from": "image_filename"
56
- }
57
- },
58
- "source": {
59
- "format": "huggingface",
60
- "url": {
61
- "test": "https://huggingface.co/datasets/jeepliu/VisualMRC"
62
- }
 
 
 
 
 
 
 
 
 
 
63
  }
64
- },
65
- "prompt_template_source": {
66
- "origin": "fallback",
67
- "reference": "T2",
68
- "notes": "Tier 5: no higher tier publishes a prompt. T1: nttmdlab-nlp/VisualMRC is a data-only repo (AAAI 2021; LayoutT5/LayoutBART fine-tuned seq2seq baselines, pre-LLM, no prompt template); T2: no prompt column in jeepliu/VisualMRC; T3: no VLMEvalKit visualmrc; T4: no lmms-eval tasks/visualmrc (clone @047ec52). Bare-question T2 chosen because answers are abstractive full sentences graded with reference text metrics — a short-answer cue would suppress the expected long-form output."
69
- }
70
  }
71
- }
72
- }
 
1
  {
2
+ "name": "VisualMRC",
3
+ "release_date": "2026-05-26",
4
+ "subsets": {
5
+ "main": {
6
+ "language": [
7
+ "en"
8
+ ],
9
+ "modalities": [
10
+ "single_image_start"
11
+ ],
12
+ "task_type": "open_ended_qa",
13
+ "score_pipeline": {
14
+ "unsupported": "caption-metrics",
15
+ "reason": "requires corpus-level caption metrics (CIDEr/BLEU/ROUGE/BERTScore); use the benchmark's own evaluator"
16
+ },
17
+ "score_params": {
18
+ "metrics": [
19
+ "rouge_l",
20
+ "bleu4",
21
+ "meteor",
22
+ "cider"
23
+ ]
24
+ },
25
+ "score_protocol": {
26
+ "reference": "Official VisualMRC paper (arXiv:2101.11272, AAAI 2021, 'Evaluation metrics' §: 'we used BLEU, METEOR, ROUGE-L, and CIDEr' following generative MRC/captioning; BERTScore additionally reported in result tables; ROUGE-L used for model selection). No lmms-eval or VLMEvalKit task exists (re-confirmed 2026-07-07: no visualmrc task in either local clone).",
27
+ "note": "Generative reading-comprehension answers graded with captioning-style reference metrics over a single reference answer per question; paper declares no single headline — ROUGE-L listed first here since the paper selects models by ROUGE-L. Official tables also report BERTScore (now representable in the caption_metrics enum but kept out of params to match the paper's core four). metadata.json prompt citation of lmms_eval/tasks/visualmrc is bogus — must be corrected."
28
+ },
29
+ "prompt_template": "<image>{{ question }}",
30
+ "mapping_from_source": {
31
+ "media": {
32
+ "from": "image",
33
+ "type": "list",
34
+ "min_items": 1,
35
+ "max_items": 1
36
+ },
37
+ "id": {
38
+ "from": "id"
39
+ },
40
+ "question": {
41
+ "from": "question"
42
+ },
43
+ "answer": {
44
+ "from": "answer",
45
+ "optional": true
46
+ },
47
+ "extra": {
48
+ "qa_idx": {
49
+ "from": "qa_idx"
50
+ },
51
+ "url": {
52
+ "from": "url"
53
+ },
54
+ "screenshot_filename": {
55
+ "from": "screenshot_filename"
56
+ },
57
+ "image_filename": {
58
+ "from": "image_filename"
59
+ }
60
+ },
61
+ "source": {
62
+ "format": "huggingface",
63
+ "url": {
64
+ "test": "https://huggingface.co/datasets/jeepliu/VisualMRC"
65
+ }
66
+ }
67
+ },
68
+ "prompt_template_source": {
69
+ "origin": "fallback",
70
+ "reference": "T2",
71
+ "notes": "Tier 5: no higher tier publishes a prompt. T1: nttmdlab-nlp/VisualMRC is a data-only repo (AAAI 2021; LayoutT5/LayoutBART fine-tuned seq2seq baselines, pre-LLM, no prompt template); T2: no prompt column in jeepliu/VisualMRC; T3: no VLMEvalKit visualmrc; T4: no lmms-eval tasks/visualmrc (clone @047ec52). Bare-question T2 chosen because answers are abstractive full sentences graded with reference text metrics — a short-answer cue would suppress the expected long-form output."
72
+ }
73
  }
 
 
 
 
 
 
74
  }
75
+ }