File size: 3,876 Bytes
3306239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f835659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6af8ce0
 
 
f835659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a584143
f835659
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
---
dataset_info:
  features:
  - name: image_path
    dtype: string
  - name: food1_id
    dtype: int64
  - name: food1_name
    dtype: string
  - name: food1_country
    dtype: string
  - name: food1_continent
    dtype: string
  - name: food2_id
    dtype: int64
  - name: food2_name
    dtype: string
  - name: food2_country
    dtype: string
  - name: food2_continent
    dtype: string
  - name: background_continent
    dtype: string
  - name: background_country
    dtype: string
  - name: background_name
    dtype: string
  - name: image
    dtype: image
  splits:
  - name: SF
    num_bytes: 236917019.0
    num_examples: 247
  - name: MF
    num_bytes: 1783068852.0
    num_examples: 949
  - name: MFB_landmark
    num_bytes: 3089759632.48
    num_examples: 4740
  - name: MFB_street
    num_bytes: 2192091002.305
    num_examples: 4745
  - name: SFB_landmark
    num_bytes: 4952856483.5
    num_examples: 6175
  - name: SFB_street
    num_bytes: 3326863971.425
    num_examples: 6175
  download_size: 15284488007
  dataset_size: 15581556960.71
configs:
- config_name: default
  data_files:
  - split: SF
    path: data/SF-*
  - split: MF
    path: data/MF-*
  - split: MFB_landmark
    path: data/MFB_landmark-*
  - split: MFB_street
    path: data/MFB_street-*
  - split: SFB_landmark
    path: data/SFB_landmark-*
  - split: SFB_street
    path: data/SFB_street-*
---

# CultureMix Dataset Assets

This repository hosts the image assets and metadata that back the official **CultureMix** benchmark introduced in “World in a Frame: Understanding Culture Mixing as a New Challenge for Vision-Language Models” [CultureMix](https://arxiv.org/pdf/2511.22787). The dataset probes how LVLMs behave when multiple cultural cues (foods, landmarks, or street scenes) co-exist in a single frame.

## Directory Layout

```
datasets/final/
├── SF/                # Single-food crops rendered on white background
├── MF/                # Two-food compositions (food-only)
├── MFB_landmark/      # Two foods + landmark background
├── MFB_street/        # Two foods + street background
├── SFB_landmark/      # Single food + landmark background
├── SFB_street/        # Single food + street background
└── metadata/          # CSV manifests describing every split
    ├── sf.csv
    ├── mf.csv
    ├── mfb_landmark.csv
    ├── mfb_street.csv
    ├── sfb_landmark.csv
    └── sfb_street.csv
```

Each filename encodes the food IDs (and background slug for *_landmark/*_street variants). The CSVs mirror those filenames and append the textual labels needed for evaluation or model training.

## Metadata Schema

Every CSV under `datasets/final/metadata/` exposes the same column set to keep Hugging Face splits aligned:

| Column | Description |
| --- | --- |
| `image_path` | Relative path under `datasets/final/` |
| `image` | |
| `food1_id`, `food1_name`, `food1_country`, `food1_continent` | Netadata for the left food |
| `food2_id`, `food2_name`, `food2_country`, `food2_continent` | etadata for the right food (empty/`None` for single-food splits) |
| `background_continent`, `background_country`, `background_name` | Background label (empty when not applicable) |

## Citation

Please cite the CultureMix paper when using these assets:

```
@article{kim2025culturemix,
  title={World in a Frame: Understanding Culture Mixing as a New Challenge for Vision-Language Models},
  author={Kim, Eunsu and Park, Junyeong and An, Na Min and Kim, Junseong and Patel, Hitesh Laxmichand and Jin, Jiho and Kruk, Julia and Agarwal, Amit and Panda, Srikant and Ilasariya, Fenal Ashokbhai and Shim, Hyunjung and Oh, Alice},
  year={2025},
  journal={arXiv preprint arXiv:2511.22787}
}
```

---

For questions about data corrections or additional releases, please reach out via email (kes0317@kaist.ac.kr).