lchen1019/awesome-mllm-benchmarks-samples

Dataset

Awesome MLLM Benchmarks – Sample Data

1

38 commits

1 linked in READMEs

updated Aug 13, 2026

See the code

README

Awesome MLLM Benchmarks – Sample Data

🌐 Interactive Dashboard · 💻 GitHub

Awesome Stars License

This dataset hosts the sample data (images, questions, answers, metadata) used by the Awesome MLLM Benchmarks interactive dashboard. It provides curated preview samples from 130+ multimodal LLM benchmarks across 20+ categories.

Overview

StatCount
Benchmarks with samples125
Total subtasks248
Total files (images + metadata)~8,000
Categories20+

Each benchmark folder contains ~30 representative samples with images and a data.json metadata file, enabling quick browsing without downloading the full benchmark datasets.

Categories

CategoryExample Benchmarks
OCR / Doc / ChartTextVQA, DocVQA, ChartQA, OCRBench, ChartX, CC-OCR
Spatial IntelligenceBLINK, DA-2K, CV-Bench, All-Angles, VSI-Bench, MMSI-Bench, RealWorldQA
KnowledgeMMBench, MMStar, HallusionBench, VibeEval, WorldVQA
MathMathVista, MathVision, DynaMath, We-Math, MathCanvas, OlympiadBench
Reasoning & LogicMMMU, LogicVista, EMMA, VisualPuzzles, ARC-AGI
STEMMMMU-Pro, ScienceQA, MEGA-Bench, GPQA-Diamond
PerceptionVLMsAreBlind, MMVP, V*, HRBench
GroundingRefCOCO, ScreenSpot, FSC-147
CodingDesign2Code, ChartMimic, UniSVG, FronTalk
MedicalSLAKE, PMC-VQA, MedXpertQA
VideoVideoMME, MLVU, MVBench, StreamingBench, MotionBench, GameplayQA
GenerationStructEval-V
AgentOSWorld, AndroidWorld, Online-Mind2Web

Dataset Structure

samples/
├── <BenchmarkName>/
│   ├── <subtask>/
│   │   ├── data.json          # Sample metadata (questions, answers, options, etc.)
│   │   ├── 0_image.jpg        # Sample images
│   │   ├── 1_image.jpg
│   │   └── ...
│   └── <subtask>/
│       └── ...
└── ...

data.json Format

Each data.json is a JSON array of sample entries. The exact fields vary by benchmark, but common fields include:

FieldTypeDescription
questionstringThe question or prompt
imagestringFilename of the associated image
answerstringGround truth answer
optionsarrayMultiple-choice options (if applicable)

Some benchmarks include additional fields like category, difficulty, subject, knowledge, etc.

Usage

Visit lchen1019.github.io/awesome-mllm-benchmarks to browse samples interactively with full rendering support (LaTeX, images, multi-view, etc.).

Clone Locally

# Clone the main project
git clone https://github.com/lchen1019/awesome-mllm-benchmarks.git
cd awesome-mllm-benchmarks

# Download sample data from Hugging Face
# Option 1: Using huggingface_hub
python -c "
from huggingface_hub import snapshot_download
snapshot_download(
    repo_id='lchen1019/awesome-mllm-benchmarks-samples',
    repo_type='dataset',
    local_dir='samples'
)
"

# Option 2: Using git
git clone https://huggingface.co/datasets/lchen1019/awesome-mllm-benchmarks-samples samples

# Start the local server
python serve.py 8080

Load with Python

import json
from pathlib import Path

# Load samples for a specific benchmark
benchmark = "MathVista"
subtask = "default"
data = json.loads(Path(f"samples/{benchmark}/{subtask}/data.json").read_text())

for sample in data[:3]:
    print(f"Q: {sample['question'][:100]}...")
    print(f"A: {sample['answer']}")
    print()

Citation

@misc{awesome-mllm-benchmarks,
  title        = {Awesome MLLM Benchmarks: An Interactive Explorer for MLLM Benchmarks},
  author       = {Chen, Lin},
  year         = {2026},
  howpublished = {\url{https://github.com/lchen1019/awesome-mllm-benchmarks}},
  note         = {Accessed: 2026}
}

License

This dataset collection is released under the Apache 2.0 License. Individual benchmark samples may be subject to their original licenses. Please refer to each benchmark's source for specific licensing terms.

awesome-list
benchmark
evaluation
mllm
multimodal

Contributors

lchen1019

38 commits

lchen1019/awesome-mllm-benchmarks-samples

Dataset

Awesome MLLM Benchmarks – Sample Data

1

38 commits

1 linked in READMEs

updated Aug 13, 2026

See the code

README

Awesome MLLM Benchmarks – Sample Data

🌐 Interactive Dashboard · 💻 GitHub

Awesome Stars License

This dataset hosts the sample data (images, questions, answers, metadata) used by the Awesome MLLM Benchmarks interactive dashboard. It provides curated preview samples from 130+ multimodal LLM benchmarks across 20+ categories.

Overview

StatCount
Benchmarks with samples125
Total subtasks248
Total files (images + metadata)~8,000
Categories20+

Each benchmark folder contains ~30 representative samples with images and a data.json metadata file, enabling quick browsing without downloading the full benchmark datasets.

Categories

CategoryExample Benchmarks
OCR / Doc / ChartTextVQA, DocVQA, ChartQA, OCRBench, ChartX, CC-OCR
Spatial IntelligenceBLINK, DA-2K, CV-Bench, All-Angles, VSI-Bench, MMSI-Bench, RealWorldQA
KnowledgeMMBench, MMStar, HallusionBench, VibeEval, WorldVQA
MathMathVista, MathVision, DynaMath, We-Math, MathCanvas, OlympiadBench
Reasoning & LogicMMMU, LogicVista, EMMA, VisualPuzzles, ARC-AGI
STEMMMMU-Pro, ScienceQA, MEGA-Bench, GPQA-Diamond
PerceptionVLMsAreBlind, MMVP, V*, HRBench
GroundingRefCOCO, ScreenSpot, FSC-147
CodingDesign2Code, ChartMimic, UniSVG, FronTalk
MedicalSLAKE, PMC-VQA, MedXpertQA
VideoVideoMME, MLVU, MVBench, StreamingBench, MotionBench, GameplayQA
GenerationStructEval-V
AgentOSWorld, AndroidWorld, Online-Mind2Web

Dataset Structure

samples/
├── <BenchmarkName>/
│   ├── <subtask>/
│   │   ├── data.json          # Sample metadata (questions, answers, options, etc.)
│   │   ├── 0_image.jpg        # Sample images
│   │   ├── 1_image.jpg
│   │   └── ...
│   └── <subtask>/
│       └── ...
└── ...

data.json Format

Each data.json is a JSON array of sample entries. The exact fields vary by benchmark, but common fields include:

FieldTypeDescription
questionstringThe question or prompt
imagestringFilename of the associated image
answerstringGround truth answer
optionsarrayMultiple-choice options (if applicable)

Some benchmarks include additional fields like category, difficulty, subject, knowledge, etc.

Usage

Visit lchen1019.github.io/awesome-mllm-benchmarks to browse samples interactively with full rendering support (LaTeX, images, multi-view, etc.).

Clone Locally

# Clone the main project
git clone https://github.com/lchen1019/awesome-mllm-benchmarks.git
cd awesome-mllm-benchmarks

# Download sample data from Hugging Face
# Option 1: Using huggingface_hub
python -c "
from huggingface_hub import snapshot_download
snapshot_download(
    repo_id='lchen1019/awesome-mllm-benchmarks-samples',
    repo_type='dataset',
    local_dir='samples'
)
"

# Option 2: Using git
git clone https://huggingface.co/datasets/lchen1019/awesome-mllm-benchmarks-samples samples

# Start the local server
python serve.py 8080

Load with Python

import json
from pathlib import Path

# Load samples for a specific benchmark
benchmark = "MathVista"
subtask = "default"
data = json.loads(Path(f"samples/{benchmark}/{subtask}/data.json").read_text())

for sample in data[:3]:
    print(f"Q: {sample['question'][:100]}...")
    print(f"A: {sample['answer']}")
    print()

Citation

@misc{awesome-mllm-benchmarks,
  title        = {Awesome MLLM Benchmarks: An Interactive Explorer for MLLM Benchmarks},
  author       = {Chen, Lin},
  year         = {2026},
  howpublished = {\url{https://github.com/lchen1019/awesome-mllm-benchmarks}},
  note         = {Accessed: 2026}
}

License

This dataset collection is released under the Apache 2.0 License. Individual benchmark samples may be subject to their original licenses. Please refer to each benchmark's source for specific licensing terms.

awesome-list
benchmark
evaluation
mllm
multimodal

Contributors

lchen1019

38 commits