ColorBench is a multimodal dataset to comprehensively assess capabilities of VLMs in color understanding, including color perception, reasoning, and robustness, introduced in "ColorBench: Can VLMs See and Understand the Colorful World? A Comprehensive Benchmark for Color Perception, Reasoning, and Robustness".
It provides:
The data/test*.parquet files contain the dataset annotations and images pre-loaded for processing with HF Datasets.
from datasets import load_dataset
color_bench = load_dataset("umd-zhou-lab/ColorBench")
The dataset contains the following fields:
| Field Name | Description |
|---|---|
| idx | Global index of the sample in the dataset |
| id | Index of the sample in each task |
| type | Type of category: Perception, Reasoning, or Robustness |
| task | Type of task: Color Recognition, Color Extraction, Color Counting, and more |
| filename | Path to the image |
| image_url | Source of the image |
| prompt | Prompt with question and choices pre-formatted |
| question | Question about the image |
| choices | Answer choices for the question |
| answer | Correct answer to the question |
| image | Image object (PIL.Image) |
10 commits
1 commits
ColorBench is a multimodal dataset to comprehensively assess capabilities of VLMs in color understanding, including color perception, reasoning, and robustness, introduced in "ColorBench: Can VLMs See and Understand the Colorful World? A Comprehensive Benchmark for Color Perception, Reasoning, and Robustness".
It provides:
The data/test*.parquet files contain the dataset annotations and images pre-loaded for processing with HF Datasets.
from datasets import load_dataset
color_bench = load_dataset("umd-zhou-lab/ColorBench")
The dataset contains the following fields:
| Field Name | Description |
|---|---|
| idx | Global index of the sample in the dataset |
| id | Index of the sample in each task |
| type | Type of category: Perception, Reasoning, or Robustness |
| task | Type of task: Color Recognition, Color Extraction, Color Counting, and more |
| filename | Path to the image |
| image_url | Source of the image |
| prompt | Prompt with question and choices pre-formatted |
| question | Question about the image |
| choices | Answer choices for the question |
| answer | Correct answer to the question |
| image | Image object (PIL.Image) |
10 commits
1 commits