metadata: migrate score_type -> score_pipeline (atomic stage contract; see mm-eval scorer docs/en/SCORING.md)
Browse files- metadata.json +61 -57
metadata.json
CHANGED
|
@@ -1,60 +1,64 @@
|
|
| 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 |
-
"prompt_template_source": {
|
| 54 |
-
"origin": "fallback",
|
| 55 |
-
"reference": "T1",
|
| 56 |
-
"notes": "Tier 5: no higher tier publishes a prompt. T1: whoops-benchmark.github.io and the ICCV 2023 paper publish no reusable model-input prompt (paper VQA numbers use BLIP2 whose 'Question: {} Short answer:' is BLIP2's own convention, not a WHOOPS-authored prompt); T2: no prompt column in nlphuji/whoops; T3: no VLMEvalKit whoops; T4: no lmms-eval tasks/whoops (clone @047ec52). Template is the canonical single-image short-answer fallback."
|
| 57 |
-
}
|
| 58 |
}
|
| 59 |
-
|
| 60 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"name": "WHOOPS!",
|
| 3 |
+
"release_date": "2023-03-13",
|
| 4 |
+
"subsets": {
|
| 5 |
+
"main": {
|
| 6 |
+
"language": [
|
| 7 |
+
"en"
|
| 8 |
+
],
|
| 9 |
+
"modalities": [
|
| 10 |
+
"single_image_start"
|
| 11 |
+
],
|
| 12 |
+
"task_type": "short_answer_qa",
|
| 13 |
+
"score_pipeline": [
|
| 14 |
+
"exact-match",
|
| 15 |
+
"rule-match",
|
| 16 |
+
"llm-judge"
|
| 17 |
+
],
|
| 18 |
+
"score_protocol": {
|
| 19 |
+
"reference": "WHOOPS! paper (Bitton-Guetta et al., ICCV 2023; arxiv 2303.07274) — the VQA sub-task is graded with BEM (BERT-based answer-equivalence classifier judging prediction vs reference correct/incorrect), reported alongside exact match. mm-eval ships the VQA sub-task (WHOOPS.json explodes `qa` into question/answer).",
|
| 20 |
+
"note": "Official headline metric is BEM (learned BERT answer-equivalence), not a rule or an LLM judge. Modeled as rule_llm_judge (exact match short-circuit + LLM judge for semantic equivalence) as the closest reproducible analog; results will differ numerically from BEM. WHOOPS also has captioning/explanation/matching sub-tasks not shipped here."
|
| 21 |
+
},
|
| 22 |
+
"prompt_template": "<image>{{ question }}\nAnswer the question using a single word or phrase.",
|
| 23 |
+
"mapping_from_source": {
|
| 24 |
+
"media": {
|
| 25 |
+
"from": "image",
|
| 26 |
+
"type": "list",
|
| 27 |
+
"min_items": 1,
|
| 28 |
+
"max_items": 1
|
| 29 |
+
},
|
| 30 |
+
"id": {
|
| 31 |
+
"from": "id",
|
| 32 |
+
"explode_from": "qa",
|
| 33 |
+
"id_template": "{id}_q{idx}"
|
| 34 |
+
},
|
| 35 |
+
"question": {
|
| 36 |
+
"from": "question"
|
| 37 |
+
},
|
| 38 |
+
"answer": {
|
| 39 |
+
"from": "answer",
|
| 40 |
+
"optional": true
|
| 41 |
+
},
|
| 42 |
+
"extra": {
|
| 43 |
+
"commonsense_category": {
|
| 44 |
+
"from": "commonsense_category"
|
| 45 |
+
},
|
| 46 |
+
"designer_explanation": {
|
| 47 |
+
"from": "designer_explanation"
|
| 48 |
+
}
|
| 49 |
+
},
|
| 50 |
+
"source": {
|
| 51 |
+
"format": "huggingface",
|
| 52 |
+
"url": {
|
| 53 |
+
"test": "https://huggingface.co/datasets/nlphuji/whoops"
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
},
|
| 57 |
+
"prompt_template_source": {
|
| 58 |
+
"origin": "fallback",
|
| 59 |
+
"reference": "T1",
|
| 60 |
+
"notes": "Tier 5: no higher tier publishes a prompt. T1: whoops-benchmark.github.io and the ICCV 2023 paper publish no reusable model-input prompt (paper VQA numbers use BLIP2 whose 'Question: {} Short answer:' is BLIP2's own convention, not a WHOOPS-authored prompt); T2: no prompt column in nlphuji/whoops; T3: no VLMEvalKit whoops; T4: no lmms-eval tasks/whoops (clone @047ec52). Template is the canonical single-image short-answer fallback."
|
| 61 |
+
}
|
| 62 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
}
|
| 64 |
+
}
|
|
|