News

2.6 Billion Sketches Show Why LLMs Miss Cultural Nuance

A new study analyzing billions of human sketches reveals that visual representations capture cultural variation far better than text-based models, with implications for how we build and evaluate multimodal AI.

July 12, 2026· 2 min read· Source: arXiv.org
2.6 Billion Sketches Show Why LLMs Miss Cultural Nuance

Researchers at MIT and other institutions have published a study analyzing 2.6 billion hand-drawn sketches of common concepts from 236 countries. The paper, posted on arXiv, argues that text-based models—including large language models—compress away the rich cultural and embodied variation that visual representations preserve.

What They Did

The team used data from a popular online drawing game (think Quick, Draw!) where users are prompted to sketch a concept like "dog" or "house" in under 20 seconds. They trained embedding models on these sketches and compared the resulting geometry to word embeddings from multilingual language models.

Key Findings

Three results stand out for anyone building or evaluating AI systems:

  • Concepts are not universal. Even for a single word like "bread," people from different cultures draw vastly different exemplars—a baguette vs. a naan vs. a sliced loaf. The variation is largest for concepts involving touch or manipulation (e.g., "hammer," "cup"), suggesting embodied experience drives visual imagination more than dictionary definitions.
  • Visual embeddings diverge from text embeddings. The geometric structure of sketch embeddings captures semantic and cultural relationships that word embeddings compress away. Cross-cultural distances derived from sketches align 45% more closely with established cultural metrics than distances from text embeddings do.
  • Language models flatten diversity. The authors argue that because words are shared conventions that compress individual variation, any system trained solely on text will systematically underestimate how differently people conceptualize the same thing.

Why This Matters for AI Engineers

If you're building multimodal models, RAG pipelines, or any system that claims to understand human concepts, this paper is a warning label. Text-only training data inherits a bias toward consensus representations. A model that has never seen a sketch of a "shoe" from a culture where shoes are removed before entering a home will have a narrower concept than a human would.

The work also suggests a practical path forward: sketch embeddings could serve as a richer grounding signal for multimodal models, potentially improving cross-cultural robustness. The dataset is already public, so there's nothing stopping teams from incorporating this kind of data into training or evaluation pipelines.

The paper is a reminder that "concept" is not a stable thing—it's a function of modality, culture, and embodiment. Ignoring that means shipping models that are dumber than they look on leaderboards.