Dataset Preview
Full Screen
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Job manager crashed while running this job (missing heartbeats).
Error code:   JobManagerCrashedError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

image
image
label
class label
1,95500010019
1,95500010019
1,95500010019
1,95700010031
1,95700010031
1,95700010031
1,95900010054
1,95900010054
1,95900010054
1,96600010168
1,96600010168
1,96600010168
1,96800010183
1,96800010183
1,96800010183
1,96900010192
1,96900010192
1,96900010192
1,97100010224
1,97100010224
1,97100010224
1,97300010289
1,97300010289
1,97300010289
1,97500010296
1,97500010296
1,97500010296
1,97700010319
1,97700010319
1,97700010319
1,97800010332
1,97800010332
1,97800010332
1,97900010336
1,97900010336
1,97900010336
1,98300010373
1,98300010373
1,98300010373
1,98400010377
1,98400010377
1,98400010377
1,98700010416
1,98700010416
1,98700010416
1,98800010422
1,98800010422
1,98800010422
1,99100010532
1,99100010532
1,99100010532
1,99200010538
1,99200010538
1,99200010538
1,99400010563
1,99400010563
1,99400010563
1,99500010597
1,99500010597
1,99500010597
1,99600010600
1,99600010600
1,99600010600
1,99700010601
1,99700010601
1,99700010601
1,99900010622
1,99900010622
1,99900010622
2,00000010624
2,00000010624
2,00000010624
2,00100010625
2,00100010625
2,00100010625
2,00300010641
2,00300010641
2,00300010641
2,00400010650
2,00400010650
2,00400010650
2,00500010652
2,00500010652
2,00500010652
2,00600010659
2,00600010659
2,00600010659
2,00800010723
2,00800010723
2,00800010723
2,01000010760
2,01000010760
2,01000010760
2,01100010772
2,01100010772
2,01100010772
2,01200010789
2,01200010789
2,01200010789
2,01300010795
End of preview.

[CVPR 2024] SPEC Benchmark: Evaluating VLMs in Fine-grained and Compositional Understanding

introduced in the CVPR 2024 paper Synthesize, Diagnose, and Optimize: Towards Fine-Grained Vision-Language Understanding

Code | πŸ€— Paper | πŸ“– arXiv

To evaluate the understanding capability of visual-language models on fine-grained concepts, we propose a new benchmark, SPEC, which consists of six distinct subsets, distributed across the dimensions of Size, Position, Existence, and Count. Each test case consists of an image candidate set, which differs only in certain visual concepts, and a text candidate set, which differs only in the corresponding language concept.

πŸ”§ Usage

install

git clone https://github.com/wjpoom/SPEC.git
cd SPEC/
pip install -e .

prepare data

  • run the following code in Python shell, replace /path/to/save/data with a specified dir to store the data.
import zipfile
import os
from huggingface_hub import hf_hub_download

data_root = '/path/to/save/data'
hf_hub_download(repo_id='wjpoom/SPEC', repo_type='dataset', filename='data.zip', local_dir=data_root)

with zipfile.ZipFile(os.path.join(data_root, 'data.zip'), 'r') as zip_ref:
    zip_ref.extractall(os.path.join(data_root))
    
os.remove(os.path.join(data_root, 'data.zip'))

explore the dataset

  • We provide a πŸ““notebook that enables you to visually explore the test samples in the SPEC dataset.
  • Run this notebook either locally or online using Colab.

reproduce the results

  • In our paper, we evaluated four popular VLMs using our SPEC dataset, namely: CLIP, BLIP, FLAVA and CoCa.
  • To reproduce the results with these VLMs, you can run this script.
  • You can also reproduce with this local notebook or the online Colab notebook.

evaluate custom VLMs

  • If you want to evaluate your custom model on SPEC, you can follow the instructions in this document.

  • βœ’οΈ Citation

If you use our code or data in this repo or find our work helpful, please consider giving a citation:

@inproceedings{spec2024,
  title={Synthesize Diagnose and Optimize: Towards Fine-Grained Vision-Language Understanding},
  author={Peng, Wujian and Xie, Sicheng and You, Zuyao and Lan, Shiyi and Wu, Zuxuan},
  booktitle={CVPR},
  year={2024}
}
Downloads last month
36