metadata: migrate score_type -> score_pipeline (atomic stage contract; see mm-eval scorer docs/en/SCORING.md)
Browse files- metadata.json +72 -69
metadata.json
CHANGED
|
@@ -1,72 +1,75 @@
|
|
| 1 |
{
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 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 |
+
}
|
|
|