CoolFace
Datasetpublic

umd-zhou-lab/ColorBench

๐ŸŽจ ColorBench ๐Ÿ“– Paper | ๐Ÿ’ป GitHub 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: More than 5,800 image-text questions covering diverse application scenarios and practical challenges for VLMs evaluation.โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/umd-zhou-lab/ColorBench.

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
5likes205downloads
Dataset Card

๐ŸŽจ ColorBench

**๐Ÿ“– Paper** | **๐Ÿ’ป GitHub**

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:

  • โ€”More than 5,800 image-text questions covering diverse application scenarios and practical challenges for VLMs evaluation.
  • โ€”3 categories and 11 tasks for various color-centric capabilities evaluation including Perception (Color Recognition, Color Extraction and Object Recognition), Reasoning (Color Proportion, Color Comparison, Color Counting, and more) and Robustness.

๐Ÿ“ƒ Instruction

The data/test*.parquet files contain the dataset annotations and images pre-loaded for processing with HF Datasets.

bash
from datasets import load_dataset

color_bench = load_dataset("umd-zhou-lab/ColorBench")

๐Ÿ“‚ Dataset Description

The dataset contains the following fields:

Field NameDescription
idxGlobal index of the sample in the dataset
idIndex of the sample in each task
typeType of category: Perception, Reasoning, or Robustness
taskType of task: Color Recognition, Color Extraction, Color Counting, and more
filenamePath to the image
image_urlSource of the image
promptPrompt with question and choices pre-formatted
questionQuestion about the image
choicesAnswer choices for the question
answerCorrect answer to the question
imageImage object (PIL.Image)