File size: 6,969 Bytes
5bd5ff9 e5e1a3e 80ad4ca 5bd5ff9 e5e1a3e 80ad4ca | 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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | ---
configs:
- config_name: Absolute_depth
data_files:
- split: train
path: train/Absolute_depth/train-*.parquet
- config_name: Action
data_files:
- split: train
path: train/Action/train-*.parquet
- config_name: Color
data_files:
- split: train
path: train/Color/train-*.parquet
- config_name: Counting
data_files:
- split: train
path: train/Counting/train-*.parquet
- config_name: Emotion
data_files:
- split: train
path: train/Emotion/train-*.parquet
- config_name: Fine-grained
data_files:
- split: train
path: train/Fine-grained/train-*.parquet
- config_name: Localization
data_files:
- split: train
path: train/Localization/train-*.parquet
- config_name: OCR
data_files:
- split: train
path: train/OCR/train-*.parquet
- config_name: Orientation
data_files:
- split: train
path: train/Orientation/train-*.parquet
- config_name: Recognition
data_files:
- split: train
path: train/Recognition/train-*.parquet
- config_name: Relative_depth
data_files:
- split: train
path: train/Relative_depth/train-*.parquet
- config_name: Scene_Classification
data_files:
- split: train
path: train/Scene_Classification/train-*.parquet
- config_name: Spatial
data_files:
- split: train
path: train/Spatial/train-*.parquet
- config_name: Texture
data_files:
- split: train
path: train/Texture/train-*.parquet
license: cc-by-4.0
task_categories:
- visual-question-answering
- image-classification
- image-to-text
language:
- en
tags:
- multimodal
- vision-language
- benchmark
- instruction-tuning
size_categories:
- 100K<n<1M
---
# AVA-Bench
Training dataset for the paper **AVA-Bench: Atomic Visual Ability Benchmark for Vision Foundation Models** ([arXiv:2506.09082](https://arxiv.org/abs/2506.09082)) accepted in **CVPR 2026**.
AVA-Bench is a diagnostic benchmark for evaluating Vision Foundation Models (VFMs) through Atomic Visual Abilities (AVAs): fundamental perceptual skills such as localization, counting, OCR, spatial understanding, depth estimation, color recognition, texture recognition, and fine-grained recognition.
AVA-Bench disentangls visual perception into **14 atomic visual capabilities**, each with distribution-matched training and evaluation splits. This allows researchers to measure where a VFM excels or fails and to construct capability-level “ability fingerprints” for model comparison and selection.
This Hub release contains the **training split** of AVA-Bench. The evaluation split is released separately; see the project page and paper for details.
## Capabilities
AVA-Bench covers **14 atomic visual capabilities**, each released as its own subset/config:
| Capability | Tests |
|---|---|
| `Action` | Recognizing human/animal actions in images |
| `Color` | Identifying object colors |
| `Counting` | Counting instances of an object |
| `Emotion` | Recognizing emotion from facial expressions/scenes |
| `Fine-grained` | Fine-grained category discrimination, such as bird, plant, animal, fungi, or aircraft categories |
| `Localization` | Locating objects via bounding-box queries |
| `OCR` | Reading text rendered in images |
| `Orientation` | Determining the orientation or pose of objects |
| `Recognition` | Object/entity recognition |
| `Scene_Classification` | Classifying the overall scene/place |
| `Spatial` | Reasoning about spatial relationships between objects |
| `Texture` | Identifying surface textures |
| `Absolute_depth` | Estimating absolute depth from a single image |
| `Relative_depth` | Comparing depth between two regions |
## Dataset structure
Each subset has a single `train` split, stored as Parquet shards with image bytes **embedded** in the file.
### Data fields
Every example contains:
- `image` (`datasets.Image`) — the input image, decoded as a PIL image on access.
- `id` (`string`) — unique example identifier.
- `conversations` (`list` of `{from, value}`) — instruction-tuning style turns. The `human` turn includes the question, usually with an `<image>` placeholder, and the `gpt` turn includes the ground-truth answer.
Some capabilities may additionally include fields such as:
- `height`
- `width`
- `category`
- `area`
- bounding-box or region metadata, depending on the capability
Per-subset row counts are visible in the dataset viewer's config dropdown.
## Usage
Please go to github to use the dataset to evaluate Vision Foundation Models. If you want to check the dataset:
```python
from datasets import load_dataset
# Load one capability
ds = load_dataset("act13/AVA-Bench", name="Counting", split="train")
print(ds[0])
# {
# 'id': '...',
# 'image': <PIL.Image.Image image mode=RGB ...>,
# 'conversations': [
# {'from': 'human', 'value': '<image>\n...'},
# {'from': 'gpt', 'value': '...'}
# ],
# ...
# }
```
To stream without downloading the full subset:
```python
from datasets import load_dataset
ds = load_dataset(
"act13/AVA-Bench",
name="Counting",
split="train",
streaming=True,
)
for ex in ds.take(5):
print(ex["conversations"][0]["value"])
print(ex["conversations"][1]["value"])
```
## Intended uses
AVA-Bench is intended for research on vision foundation models and vision-language systems. Suitable uses include:
- Training or instruction-tuning vision-language models on atomic visual abilities.
- Diagnosing which visual capabilities a VFM lacks.
- Comparing VFMs through capability-level performance rather than only aggregate VQA accuracy.
- Constructing balanced training mixtures across visual abilities.
- Studying how different VFM pretraining objectives affect downstream perceptual capabilities.
## Source datasets
AVA-Bench is curated from multiple existing datasets, depending on the atomic visual ability. Source datasets include, but are not necessarily limited to:
- Objects365
- LVIS
- iNaturalist-2021
- DIOR
- NYU-Depth V2
- KITTI
- COCO-Text
- IIIT5K
- TextVQA
- EgoOrientBench
- CURE-OR
- Places434
- AID
- CUB-200-2011
- FGVC-Aircraft
- MiT
- DTD
- Kylberg
- KTH-TIPS
- KTH-TIPS2
Please see the paper for the full per-capability dataset construction details and source-license breakdown.
## License
This dataset card and the AVA-Bench organization/annotations are released under **CC-BY-4.0**.
Underlying images retain the licenses of their original source datasets. Users are responsible for respecting the license terms and usage restrictions of each source dataset.
## Citation
If you use AVA-Bench, please cite:
```bibtex
@article{mai2025ava,
title={Ava-bench: Atomic visual ability benchmark for vision foundation models},
author={Mai, Zheda and Chowdhury, Arpita and Wang, Zihe and Jeon, Sooyoung and Wang, Lemeng and Hou, Jiacheng and Chao, Wei-Lun},
journal={arXiv preprint arXiv:2506.09082},
year={2025}
}
```
## Contact
Open a discussion on this dataset's Community tab, or reach the authors via the contact information provided in the paper. |