--- pretty_name: MPF-Bench language: - en license: other task_categories: - image-classification - visual-question-answering tags: - multimodal - vision-language - benchmark - reasoning - evaluation size_categories: - 1K You are a professional image analysis expert. Given one masked image and its candidate patches, select the single candidate that best fills the masked region. Judge continuity, texture, geometry, color, and semantic plausibility. Return only the final patch index inside `` and ``. The answer is deterministic and can be parsed exactly from the returned patch index. ## How To Load ```python from datasets import load_dataset dataset = load_dataset("xyzzzh/MPF-Bench", "bf_g8x6_c4_rect") split_name = list(dataset.keys())[0] sample = dataset[split_name][0] print(split_name) print(sample.keys()) ``` If you work with the raw JSON export instead, load the JSON records directly and read the local image paths referenced by the `images` field. ## Data Source and Provenance MPF-Bench is constructed from widely used natural-image datasets, including: - COCO - Flickr30K The benchmark instances are generated programmatically from source images after data splitting, so that held-out benchmark test images remain separate from images used in the training study described in the paper/project materials. ## Annotation Process MPF-Bench does **not** rely on manual question writing or manual answer annotation for benchmark construction. Instead, labels are generated automatically from the image partition and mask placement procedure. This makes the benchmark: - scalable - exactly verifiable - reproducible across models ## Intended Uses Recommended uses: - zero-shot or few-shot evaluation of VLMs - controlled ablations over ambiguity and local reasoning difficulty - analysis of fine-grained visual reasoning failure modes Possible secondary use: - self-supervised or programmatic training experiments based on exact correctness signals ## Limitations - MPF-Bench measures a specific capability: patch-level local reasoning under controlled ambiguity. It is **not** a full measure of general multimodal intelligence. - High performance on MPF-Bench should not be interpreted as broad robustness across all vision-language tasks. - The dataset is derived from existing natural-image sources and therefore inherits some domain and content biases from those sources. - The benchmark release is centered on representative configurations rather than exhaustive coverage of all possible MPF settings. ## Licensing and Redistribution Notes All source images remain under the licenses of their original datasets. MPF-Bench is intended to distribute benchmark instances and derived metadata for evaluation. Please make sure your use complies with the original dataset terms for COCO, Flickr30K, and any other upstream data sources included in the release pipeline. ## Citation If you find MPF-Bench useful, please cite it as: ```bibtex @misc{zhu2026mpfbench, title = {{MPF-Bench}: A Programmatically Verifiable Benchmark Family for Fine-Grained Visual Reasoning in VLMs}, author = {Xiuyuan Zhu and Ke Lu and Hao Wu and Zijin Du and Yuan Lei and Jian Xue}, year = {2026}, url = {https://xyzzzh.github.io/MPF-Bench/} } ```