Duke Study Finds Creative Output Across Frontier LLMs Is Converging Toward Semantic Monoculture

A longitudinal study by researchers at Duke University has documented a measurable decline in output diversity across major large language model families. Tracking 69 foundation model checkpoints released between March 2023 and July 2026, the researchers found that generative responses to open-ended creative and ideation prompts are increasingly converging toward semantic uniformity across competing providers. The paper, titled Are LLMs becoming similarly creative? Evidence from three years of

2 min
Duke Study Finds Creative Output Across Frontier LLMs Is Converging Toward Semantic Monoculture

A longitudinal study by researchers at Duke University has documented a measurable decline in output diversity across major large language model families. Tracking 69 foundation model checkpoints released between March 2023 and July 2026, the researchers found that generative responses to open-ended creative and ideation prompts are increasingly converging toward semantic uniformity across competing providers.

The paper, titled Are LLMs becoming similarly creative? Evidence from three years of models, evaluated systems across 12 distinct provider lineages: Anthropic, Cohere, DeepSeek, Google, Meta, MiniMax, Mistral AI, Moonshot AI, OpenAI, Qwen, xAI, and Z.ai.

Measuring Semantic Distance Over Three Years

To evaluate creative diversity over time, the authors tested models across two distinct prompt suites under unified sampling parameters (temperature 1.0, top-p 1.0):

  • The Alternate Uses Task (AUT): A standard psychology protocol testing divergent thinking by asking models to propose unconventional uses for everyday objects such as books, shoes, and hammers.
  • Infinity-Chat100: A curated benchmark of 100 open-ended prompts derived from natural conversations, covering brainstorming, creative problem solving, and unstructured writing.
Three-Year Timeline of LLM Output Diversity and Semantic Convergence

Generated responses were mapped into dense vector embeddings using the all-MiniLM-L6-v2 sentence-transformer. The researchers grouped the 27 release months into nine consecutive intervals and calculated pairwise semantic distances exclusively between models from different provider families.

Regression analysis across successive release cohorts confirmed a statistically significant downward trend in cross-provider semantic distance. While earlier model generations (2023–2024) produced divergent stylistic and conceptual responses to identical prompts, recent generations (2025–2026) show tightly clustered embedding distributions regardless of the underlying developer.

Drivers of Algorithmic Monoculture

The authors attribute this growing semantic homogenization to several structural factors in the current LLM development pipeline:

  1. Shared Pre-Training Corpora: Widespread reliance on overlapping web crawls (Common Crawl, FineWeb) and shared synthetic data generation pipelines creates similar foundational world representations.
  2. Preference Alignment Convergence: Standardized reinforcement learning from human feedback (RLHF) and direct preference optimization (DPO) datasets penalize atypical token sequences in favor of predictable, helpful responses.
  3. Cross-Distillation Loops: The widespread practice of fine-tuning open-weight models on outputs harvested from frontier proprietary systems compresses model behavioral variance toward industry-standard modes.

The findings highlight growing concerns over algorithmic monoculture, indicating that as enterprise workflows rely more heavily on multi-provider LLM ensembles, the true diversity of ideas and solutions generated across different models is narrowing.

Sources

Written by

More to read

  • Request Hedging in Production LLM Serving: Architecture, Tail-Latency Mitigation, and Cancellation Protocols

    In distributed computing, tail latency—the 95th, 99th, and 99.9th percentiles—dictates overall user experience, service-level agreements (SLAs), and multi-step agent execution reliability. While median response times (P50) in large language model (LLM) serving often appear acceptable, tail latencies frequently degrade by 4x to 10x. In multi-turn chat applications, real-time voice agents, and multi-agent DAG pipelines, a single straggler request stalls entire execution chains. Request hedging, a

    1 min
  • OpenAI Reverses Policy Stance on California SB 53, Urges Stricter Frontier AI Safeguards

    OpenAI has publicly called on California lawmakers to expand and strengthen the state's flagship artificial intelligence legislation, Senate Bill 53 (SB 53), marking a clear pivot from the company's previous opposition to state-level AI safety mandates. In a formal statement published by OpenAI's global affairs team, the company argued that California's Transparency in Frontier Artificial Intelligence Act should be updated to mandate active monitoring of frontier models during training and eval

    1 min
  • LayerSkip and Self-Speculative Decoding: How Layer Dropout and Shared Early Exits Accelerate LLM Generation

    LayerSkip and Self-Speculative Decoding: How Layer Dropout and Shared Early Exits Accelerate LLM Generation Standard autoregressive large language model (LLM) inference is severely bottlenecked by memory bandwidth. In transformer decoders, generating a sequence of $N$ tokens requires loading all model parameters from High Bandwidth Memory (HBM) to on-chip SRAM $N$ separate times. While speculative decoding mitigates this bandwidth tax by using a smaller draft model to propose candidate tokens v

    1 min