CoolFace
Datasetpublic

patrickamadeus/vlms-are-confused-tourists

Vision Language Models are Confused Tourists ✈️ πŸ€” [!NOTE] We are still in the process of beautifying the README of the HF dataset. Nonetheless, our data is fully usable! Although the cultural dimension has been one of the key aspects in evaluating Vision-Language Models (VLMs), their ability to remain stable across diverse cultural inputs remains largely untested, despite being crucial to support diversity and multicultural societies. Existing evaluations often rely on… See the full description on the dataset page: https://huggingface.co/datasets/patrickamadeus/vlms-are-confused-tourists.

sourceHugging Faceapache-2.0updated 9mo agoView on Hugging Face
3likes81downloads
Dataset Card

<div align="center"> <h1>Vision Language Models are Confused Tourists ✈️ πŸ€”</h1> </div>

<div align="center">

![arXiv](https://arxiv.org/abs/2511.17004) ![Hugging Face](https://huggingface.co/datasets/patrickamadeus/vlms-are-confused-tourists) ![GitHub](https://github.com/patrickamadeus/vlms-are-confused-tourists) ![License](LICENSE)

</div>

[!NOTE] We are still in the process of beautifying the README of the HF dataset. Nonetheless, our data is fully usable!

Although the cultural dimension has been one of the key aspects in evaluating Vision-Language Models (VLMs), their ability to remain stable across diverse cultural inputs remains largely untested, despite being crucial to support diversity and multicultural societies. Existing evaluations often rely on benchmarks featuring only a singular cultural concept per image, overlooking scenarios where multiple, potentially unrelated cultural cues coexist. To address this gap, we introduce ConfusedTourist, a novel cultural adversarial robustness suite designed to assess VLMs' stability against perturbed geographical cues. Our experiments reveal a critical vulnerability, where accuracy drops heavily under simple image-stacking perturbations and even worsens with its image-generation-based variant. Interpretability analyses further show that these failures stem from systematic attention shifts toward distracting cues, diverting the model from its intended focus. These findings highlight a critical challenge: visual cultural concept mixing can substantially impair even state-of-the-art VLMs, underscoring the urgent need for more culturally robust multimodal understanding.

πŸ“Š Dataset Specification

ConfusedTourist assesses VLM stability against perturbed geographical cues across three cultural domains:

  1. 1.Cuisine πŸ›
  2. 2.Attire πŸ₯‹
  3. 3.Musical Instruments πŸͺ•

All perturbations are done by embedding an adversarial country's:

  • β€”FLAG 🏳️ into the scene
  • β€”A background LANDMARK πŸ—Ό
  • β€”BOTH πŸ—ΌπŸ³οΈ
Feature NameData TypeDescription
idint32Unique sample identifier
imageimageThe visual input (Original or Perturbed)
itemstringThe target cultural object name
origin_countrystringGround truth country of the item
adversarial_countrystringCountry associated with the distractor cue
categorystringCultural category (e.g., Food, Clothing)
difficultystringComplexity level of the adversarial setup
perturb_methodstringMethod used (e.g., Stacking vs. Generative)
landmark_namestringName of the landmark used as a pivot
perturb_contextstringContextual metadata for the perturbation
pair_methodstringLogic used for item-distractor pairing
item_url / flag_urlstringSource URLs for the raw visual assets
true_country_altstringValid alternative names for the origin country
SplitExamplesDataset SizeDownload Size
Train5,451347.58 MB344.37 MB

πŸš€ Usage

<details> <summary><b>πŸ“‚ Option 1: Download Dataset (Recommended)</b></summary>

πŸ“₯ Download the complete dataset from Hugging Face with full original + perturbed images and other data points:

Please run the following script:

python
from datasets import load_dataset

# Load the full suite
ds = load_dataset("patrickamadeus/vlms-are-confused-tourists")

# Access a sample
print(ds['train'][0]['item']) # Output: 'Adobo'
print(ds['train'][0]['origin_country']) # Output: 'Philippines'

This is the fastest way to get started. Alternatively, you can also directly download the parquet files:

  • β€”Go to our parquet files
  • β€”Download ready-to-use features with their corresponding metadatas </details>

<details> <summary><b>πŸ–ΌοΈ Option 2: Regenerate Image</b></summary> Visit our Github for more details. </details>

⭐️ Evaluate

Simply use our features with your designated prompt, or visit our Github for more details.

πŸ“– Citation

bibtex
@article{irawan2025vision,
  title={Vision Language Models are Confused Tourists},
  author={Irawan, Patrick Amadeus and Hanif, Ikhlasul Akmal and Kautsar, Muhammad Dehan Al and Winata, Genta Indra and Koto, Fajri and Aji, Alham Fikri},
  journal={arXiv preprint arXiv:2511.17004},
  year={2025}
}

πŸ™ Acknowledgement

We would like to thank VLMs are Biased and VLMs are Blind for their immense inspiration in kickstarting our project in a more niche domain.