ZTWHHH commited on
Commit
30b1e57
·
verified ·
1 Parent(s): 03f0ddd

Fix prompt template: bare {{ question }} since source question column has <image> baked in (avoid placeholder duplication)

Browse files
Files changed (1) hide show
  1. metadata.json +2 -2
metadata.json CHANGED
@@ -10,7 +10,7 @@
10
  "single_image_start"
11
  ],
12
  "task_type": "vqa",
13
- "prompt_template": "<image>{{ question }}",
14
  "mapping_from_source": {
15
  "media": {
16
  "from": "images",
@@ -40,7 +40,7 @@
40
  "prompt_template_source": {
41
  "origin": "official",
42
  "reference": "https://github.com/EvolvingLMMs-Lab/lmms-eval/blob/main/lmms_eval/tasks/geometry3k/utils.py (geometry3k_doc_to_text — bare question; choices and trailer baked into source question column)",
43
- "notes": "lmms-eval Geometry3K canonical evaluation prompt."
44
  }
45
  }
46
  }
 
10
  "single_image_start"
11
  ],
12
  "task_type": "vqa",
13
+ "prompt_template": "{{ question }}",
14
  "mapping_from_source": {
15
  "media": {
16
  "from": "images",
 
40
  "prompt_template_source": {
41
  "origin": "official",
42
  "reference": "https://github.com/EvolvingLMMs-Lab/lmms-eval/blob/main/lmms_eval/tasks/geometry3k/utils.py (geometry3k_doc_to_text — bare question; choices and trailer baked into source question column)",
43
+ "notes": "lmms-eval Geometry3K canonical evaluation prompt. The question column already contains <image> placeholders and problem+choices+trailer baked in from the source dataset, so the template is bare {{ question }} to avoid duplicating the placeholder."
44
  }
45
  }
46
  }