File size: 7,406 Bytes
f06e369 | 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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | import json
import os
import re
from typing import Dict, Iterable, Optional
import datasets
logger = datasets.logging.get_logger(__name__)
_HOMEPAGE = "https://mmneedle.github.io/"
_LICENSE = "CC-BY-4.0"
_DESCRIPTION = """\
MMNeedle stress-tests the long-context visual reasoning ability of multimodal LLMs.
Each example provides a sequence of stitched haystack images together with 1, 2, or 5
needle descriptions derived from MS COCO captions. Models must return the index and
spatial location (row, column) of the matching sub-image or indicate that the
needle is absent. This script exposes the complete benchmark as a Hugging Face
`datasets` builder so researchers can load it with `load_dataset` without
reconstructing the data from scratch or pulling it from Google Drive.
"""
_BASE_URL = "https://huggingface.co/datasets/Wang-ML-Lab/MMNeedle/resolve/main"
_URLS = {
"images": f"{_BASE_URL}/data/images_stitched.zip",
"metadata": f"{_BASE_URL}/data/metadata_stitched.zip",
"captions": f"{_BASE_URL}/data/file_to_caption.json",
}
_SINGLE_PATTERN = re.compile(r"^annotations_(?P<seq>\\d+)_(?P<rows>\\d+)_(?P<cols>\\d+)\\.json$")
_MULTI_PATTERN = re.compile(r"^(?P<needles>\\d+)_annotations_(?P<seq>\\d+)_(?P<rows>\\d+)_(?P<cols>\\d+)\\.json$")
class MMNeedleConfig(datasets.BuilderConfig):
"""Builder config (single config for now)."""
def __init__(self, **kwargs):
super().__init__(version=datasets.Version("1.0.0"), **kwargs)
class MMNeedle(datasets.GeneratorBasedBuilder):
BUILDER_CONFIGS = [
MMNeedleConfig(name="default", description="Full MMNeedle benchmark"),
]
DEFAULT_CONFIG_NAME = "default"
def _info(self) -> datasets.DatasetInfo:
features = datasets.Features(
{
"id": datasets.Value("string"),
"sequence_length": datasets.Value("int32"),
"grid_rows": datasets.Value("int32"),
"grid_cols": datasets.Value("int32"),
"needles_per_query": datasets.Value("int32"),
"haystack_images": datasets.Sequence(datasets.Image()),
"needle_locations": datasets.Sequence(
{
"image_index": datasets.Value("int32"),
"row": datasets.Value("int32"),
"col": datasets.Value("int32"),
}
),
"needle_image_ids": datasets.Sequence(datasets.Value("string")),
"needle_captions": datasets.Sequence(datasets.Value("string")),
"has_needle": datasets.Value("bool"),
}
)
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=features,
homepage=_HOMEPAGE,
license=_LICENSE,
)
def _split_generators(self, dl_manager: datasets.DownloadManager):
archives = dl_manager.download_and_extract({k: v for k, v in _URLS.items() if k != "captions"})
captions_path = dl_manager.download(_URLS["captions"])
images_root = _resolve_subdir(archives["images"], "images_stitched")
metadata_root = _resolve_subdir(archives["metadata"], "metadata_stitched")
return [
datasets.SplitGenerator(
name=datasets.Split.TEST,
gen_kwargs={
"images_root": images_root,
"metadata_root": metadata_root,
"captions_path": captions_path,
},
)
]
def _generate_examples(
self,
images_root: str,
metadata_root: str,
captions_path: str,
) -> Iterable:
with open(captions_path, "r", encoding="utf-8") as f:
captions: Dict[str, str] = json.load(f)
metadata_files = sorted(
fname for fname in os.listdir(metadata_root) if fname.endswith(".json")
)
logger.info("Found %d metadata files", len(metadata_files))
for fname in metadata_files:
spec = _parse_metadata_name(fname)
if spec is None:
logger.warning("Skipping unrecognized metadata file: %s", fname)
continue
path = os.path.join(metadata_root, fname)
with open(path, "r", encoding="utf-8") as f:
entries = json.load(f)
for entry in entries:
example_id = f"{spec['needles']}n_{spec['seq']}seq_{spec['rows']}x{spec['cols']}_{entry['id']}"
image_paths = [
os.path.join(images_root, rel_path)
for rel_path in entry.get("image_ids", [])
]
targets = entry.get("target", [])
if isinstance(targets, str):
target_list = [targets]
else:
target_list = list(targets)
index_field = entry.get("index", [])
if isinstance(index_field, int):
index_list = [index_field]
else:
index_list = list(index_field)
row_field = entry.get("row", [])
if isinstance(row_field, int):
row_list = [row_field]
else:
row_list = list(row_field)
col_field = entry.get("col", [])
if isinstance(col_field, int):
col_list = [col_field]
else:
col_list = list(col_field)
needle_locations = []
has_needle = False
for idx, row, col in zip(index_list, row_list, col_list):
has_needle = has_needle or idx != -1
needle_locations.append(
{
"image_index": int(idx),
"row": int(row),
"col": int(col),
}
)
needle_captions = [captions.get(t, "") for t in target_list]
yield example_id, {
"id": example_id,
"sequence_length": len(image_paths),
"grid_rows": spec["rows"],
"grid_cols": spec["cols"],
"needles_per_query": spec["needles"],
"haystack_images": image_paths,
"needle_locations": needle_locations,
"needle_image_ids": target_list,
"needle_captions": needle_captions,
"has_needle": has_needle,
}
def _resolve_subdir(root: str, expected: str) -> str:
candidate = os.path.join(root, expected)
return candidate if os.path.isdir(candidate) else root
def _parse_metadata_name(fname: str) -> Optional[Dict[str, int]]:
match = _SINGLE_PATTERN.match(fname)
if match:
return {
"needles": 1,
"seq": int(match.group("seq")),
"rows": int(match.group("rows")),
"cols": int(match.group("cols")),
}
match = _MULTI_PATTERN.match(fname)
if match:
return {
"needles": int(match.group("needles")),
"seq": int(match.group("seq")),
"rows": int(match.group("rows")),
"cols": int(match.group("cols")),
}
return None
|