ZTWHHH commited on
Commit
d2bfb84
·
verified ·
1 Parent(s): 05c6469

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 +61 -57
metadata.json CHANGED
@@ -1,60 +1,64 @@
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_type": "rule_llm_judge",
14
- "score_protocol": {
15
- "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).",
16
- "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."
17
- },
18
- "prompt_template": "<image>{{ question }}\nAnswer the question using a single word or phrase.",
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
- "explode_from": "qa",
29
- "id_template": "{id}_q{idx}"
30
- },
31
- "question": {
32
- "from": "question"
33
- },
34
- "answer": {
35
- "from": "answer",
36
- "optional": true
37
- },
38
- "extra": {
39
- "commonsense_category": {
40
- "from": "commonsense_category"
41
- },
42
- "designer_explanation": {
43
- "from": "designer_explanation"
44
- }
45
- },
46
- "source": {
47
- "format": "huggingface",
48
- "url": {
49
- "test": "https://huggingface.co/datasets/nlphuji/whoops"
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
+ }