Add dataset card and link to paper

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +58 -0
README.md CHANGED
@@ -2,4 +2,62 @@
2
  license: other
3
  license_name: multiple-original-licenses
4
  license_link: LICENSE
 
 
5
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: other
3
  license_name: multiple-original-licenses
4
  license_link: LICENSE
5
+ task_categories:
6
+ - zero-shot-image-classification
7
  ---
8
+
9
+ # VL-Compositionality-Benchmarks
10
+
11
+ This repository contains a collection of evaluation benchmarks used to assess the compositional understanding of Vision-Language Models (VLMs), as presented in the paper [Cross-Modal Masked Compositional Concept Modeling for Enhancing Visio-Linguistic Compositionality](https://huggingface.co/papers/2606.13288).
12
+
13
+ Official GitHub Repository: [hiker-lw/MACCO](https://github.com/hiker-lw/MACCO)
14
+
15
+ ## Dataset Summary
16
+
17
+ These benchmarks are designed to evaluate how well models like CLIP capture object relations, attribute-object bindings, and word order dependencies, moving beyond "bag-of-words" behavior.
18
+
19
+ The collection includes the following benchmarks:
20
+ - **ARO** (Attributes, Relations, and Order)
21
+ - **VL-Checklist** (including HAKE, SWiG, and VG)
22
+ - **Sugar-Crepe**
23
+ - **VALSE**
24
+ - **What's Up**
25
+
26
+ ## Data Preparation
27
+
28
+ According to the official repository, datasets should be organized under a `datasets/` directory.
29
+
30
+ ### Notes for VL-Checklist
31
+ The VL-Checklist files are split into multiple parts and must be concatenated before extraction. You can use the following commands:
32
+
33
+ ```bash
34
+ cat hake.tar.gz.part-* > hake.tar.gz
35
+ cat swig.tar.gz.part-* > swig.tar.gz
36
+ cat vg.tar.gz.part-* > vg.tar.gz
37
+ ```
38
+
39
+ After extraction, the expected structure for VL-Checklist is:
40
+ ```text
41
+ datasets/
42
+ └── VL_checklist/
43
+ ├── VL_checklist_datasets/
44
+ │ ├── data/
45
+ │ ├── hake/
46
+ │ ├── swig/
47
+ │ └── vg/
48
+ └── VL_checklist_json_data/
49
+ ```
50
+
51
+ ## Citation
52
+
53
+ ```bibtex
54
+ @misc{li2026crossmodalmaskedcompositionalconcept,
55
+ title={Cross-Modal Masked Compositional Concept Modeling for Enhancing Visio-Linguistic Compositionality},
56
+ author={Wei Li and Zhen Huang and Xinmei Tian},
57
+ year={2026},
58
+ eprint={2606.13288},
59
+ archivePrefix={arXiv},
60
+ primaryClass={cs.CV},
61
+ url={https://arxiv.org/abs/2606.13288},
62
+ }
63
+ ```