The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Language models do not produce fixed measurements: sampling, hidden updates, floating-point effects and expert routing make LLM outputs variable and able to change empirical results; researchers should record model identifiers, timestamps, seeds when available, and provide multiple draws and replication materials so analyses can be assessed and reproduced.

Randomness in large language models: What researchers need to know (and report)
Guillaume Coqueret, Joan Llull, Florian Oswald, Christophe Pérignon, Christoph Scheuch, Lars Vilhuber · July 27, 2026
arxiv descriptive medium evidence 8/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Guillaume Coqueret unresolved corpus identity
  2. Joan Llull unresolved corpus identity
  3. Florian Oswald unresolved corpus identity
  4. Christophe Pérignon unresolved corpus identity
  5. Christoph Scheuch unresolved corpus identity
  6. Lars Vilhuber unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Guillaume Coqueret provider ID
  2. J. Llull provider ID
  3. Florian Oswald provider ID
  4. Christophe P'erignon provider ID
  5. Christoph Scheuch provider ID
  6. Lars Vilhuber provider ID
LLM outputs are stochastic due to deliberate sampling, silent model updates, numerical rounding, and expert routing, so researchers should treat model-generated data as draws from a distribution and report generation details and multiple runs to ensure reproducibility.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Large language models (LLMs) are increasingly used to generate data for research. Typical use cases are classifications, annotations, information extraction, and generation of numerical scores. Unlike conventional measurements, LLM outputs can vary across repeated requests even when the prompt and apparent model settings remain unchanged. This variation arises from deliberate sampling, silent model updates, numerical rounding, or expert routing. Setting a dedicated temperature parameter to zero removes deliberate sampling when that option is available, but it does not eliminate the other sources of randomness. Exact reproduction is therefore generally not possible when using proprietary application programming interfaces. Local execution of open-weight models offers greater control, but reproducibility still depends on the complete hardware and software stack. We illustrate these issues through sentiment classifications of corporate filings and examine their consequences for downstream regression results. We then propose a reporting standard for articles and replication packages, as well as guidance for data editors and authors. Together, these findings and recommendations establish that LLM outputs should be treated as draws from a distribution rather than as fixed measurements.

Summary

Main Finding

Large language model (LLM) outputs are inherently stochastic for multiple reasons beyond the commonly discussed sampling temperature. Because model outputs are draws from a distribution — not fixed measurements — researchers must treat, report, and analyze LLM-generated data accordingly. Exact reproduction is generally impossible when using hosted proprietary APIs; even open-weight local runs retain nontrivial sources of nondeterminism (hardware, libraries, parallelism). The paper documents the sources of randomness, demonstrates their empirical impact via sentiment classification of corporate filings and downstream regressions, and proposes a reporting standard and practical guidance for authors and data editors.

Key Points

  • LLM output variation arises from several distinct mechanisms:
    • Deliberate sampling (temperature, top-k/top-p, seed). Setting temperature = 0 (greedy decoding) reduces sampling randomness when exposed, but many providers now hide or manage temperature.
    • Silent model updates: providers can change models, system messages, routing, or guardrails over time without changing API names, breaking reruns.
    • Floating-point rounding and parallel numerical nondeterminism: batching, hardware differences (GPU type/count), and scheduling can flip near-tied logits and change generated tokens even under zero temperature.
    • Expert routing / mixture-of-experts: routing decisions can depend on batch composition, so concurrent requests can affect outputs.
  • Researchers have varying degrees of control:
    • Controllable: prompts, explicit decoding parameters (if provided), multiple independent model draws, archiving raw outputs and prompts.
    • Partly controllable or not controllable: underlying model weights, serving infra, provider-side sampling policies, hardware specifics for hosted APIs.
  • Empirical consequences:
    • The authors illustrate through sentiment classification of annual corporate filings that repeated LLM calls can produce different labels, which in turn can change regression coefficients and significance in downstream analyses.
    • Aggregation (averaging or majority voting across multiple independent runs) improves stability and consistency of measurements.
  • Policy and practice recommendation:
    • Treat LLM outputs as stochastic: report them as distributions, not point measurements.
    • Authors should archive prompts, raw model outputs, model identifiers, timestamps, provider fingerprints, and decoding parameters; run multiple independent draws and report variability.
    • Data editors should require extended metadata for LLM-generated data and adapt reproducibility checks to account for nondeterminism.

Data & Methods

  • Literature/usage survey:
    • Sample: 145 high-ranked journals (AJG rank 4 or 4*) over January 2020–July 2026 (105,464 publications).
    • Detection: searched OpenAlex abstracts for mentions of 212 LLM names and general LLM terms (“LLM”, “generative AI”, etc.).
    • Findings: sharp rise in LLM mentions; by July 2026 ~6% of papers in these journals had LLM-related keywords in title/abstract (conservative estimate). Closed-weight models (OpenAI, Google, etc.) dominate usage; many providers do not expose temperature settings.
  • Empirical experiment (illustrative):
    • Task: sentiment classification of annual corporate filings (common use-case where model output becomes data).
    • Approach: repeated model calls to produce labels/scores; examined variation across runs and measured consequences in downstream regressions (how coefficients/significance change when using different draws).
    • Results: repeated runs yield nontrivial label variation; downstream regression estimates and significance can change; aggregating multiple draws reduces instability.
  • Related evidence cited:
    • Prior studies documenting instability (Ouyang et al. 2024; He 2025; Wang & Wang 2025; Li et al. 2025; Atil et al. 2024) and demonstrating that aggregation across runs can improve consistency.

Implications for AI Economics

  • Measurement error and inference:
    • LLM-induced variability introduces an additional, often underreported source of measurement error that can bias estimates, change standard errors and p-values, and affect identification strategies when model outputs are treated as covariates, outcomes, or sample selectors.
    • Single-run analyses risk reporting results that are contingent on an unobserved draw from a model’s output distribution.
  • Best-practice methods to mitigate risks:
    • Multiple independent draws: obtain many replicate outputs per observation and report distributional summaries (means, medians, variances), confidence intervals, or bootstrap-style uncertainty over model draws.
    • Aggregation/ensembling: use majority vote, averaged continuous scores, or other aggregation rules to stabilize measurements.
    • Sensitivity analysis: show robustness of main results across independent runs, across different models (when possible), and to alternative aggregation rules.
    • Prefer open-weight/local execution for greater control where reproducibility is critical, but still archive hardware/software stack info since floating-point and parallelism effects remain.
    • When possible, set and report deterministic decoding (temperature = 0) and seeds — but report caveats: seeds only help when the full stack is controlled and provider guarantees hold.
  • Reporting and reproducibility requirements for economic research:
    • Researchers should include in papers and replication packages: prompts (exact text), full raw outputs from each run, model identifier returned by the API, date/time of calls, provider/endpoint, all decoding parameters (temperature, top-k/top-p, seed), number of independent draws per observation, aggregation rule(s), and any available provider fingerprints/version metadata.
    • Data editors and journals should update policies to treat LLM-generated data as probabilistic: require metadata, multiple-run evidence, and archiving of raw outputs; accept probabilistic replication (reproducing reported distributions/predictive variability) rather than exact bitwise reproduction when exact reproduction is impossible.
  • Broader implications:
    • Many published results relying on single-run LLM-generated variables may be fragile; the research community should re-evaluate key findings where model-generated measurements are central.
    • As closed providers increasingly manage sampling parameters server-side, researchers will have less ability to eliminate randomness — increasing the importance of reporting, replication with multiple draws, and alternative measurement designs.

Practical checklist (compact) for authors to include with LLM-generated data: - Exact prompt text(s) and any preprocessing rules. - Raw model outputs for every run (not only aggregated labels). - Model identifier(s) returned by API, provider endpoint, date/time of calls. - Decoding parameters: temperature, top-k, top-p, seed (if exposed). - Number of independent draws per input and aggregation rule(s). - Notes on whether model weights are open/closed and whether run was local or hosted; if local, record hardware, OS, library versions, and precision settings. - Statement acknowledging nondeterminism and sensitivity analyses demonstrating robustness.

Bottom line: in AI-driven empirical work, treat LLM outputs as stochastic measurements, document them rigorously, quantify and report their variability, and adapt inference and reproducibility standards to reflect these realities.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper combines a large bibliometric scan (OpenAlex abstracts of 145 top journals, ~105k papers) with an illustrative empirical experiment (sentiment classification of corporate filings and downstream regression consequences). The empirical part is illustrative rather than a comprehensive, externally validated evaluation across many tasks/models, so evidence supports the paper's methodological claims but is not definitive or causal. Methods Rigormedium — Methods are appropriate for a methodological/diagnostic paper: clear taxonomy of randomness sources, citation of related empirical work, and an applied experiment showing practical consequences. However, the empirical illustrations appear limited in scope (one task domain: corporate filings), lack of full specification in the excerpt, and do not attempt exhaustive cross-provider or hardware-level validation or formal identification strategies. SampleTwo main data sources: (1) a bibliometric dataset constructed from OpenAlex abstracts covering 145 top-ranked economics and management journals between January 2020 and July 2026 (sample of ~105,464 publications) used to quantify LLM mentions and provider shares; (2) an illustrative empirical experiment applying LLMs to sentiment classification of annual corporate filings (details such as sample size, models/providers, hardware, and exact protocols are referenced but not fully specified in the supplied excerpt). Themesgovernance adoption GeneralizabilityBibliometric analysis limited to titles/abstracts in 145 top journals and thus may undercount full-text uses or work in lower-tier journals and other disciplines., Empirical illustration focuses on sentiment annotation of corporate filings and may not generalize to other tasks (e.g., code generation, image extraction, dialogue), domains, or languages., Findings about provider behavior and reproducibility are time-sensitive: model APIs, provider policies, and hardware stacks evolve rapidly., Behavior of specific proprietary models may differ from open-weight or locally run models; results may depend on provider-specific routing, batching, and deployment practices., The paper documents sources and practical recommendations but does not experimentally isolate the magnitude of each randomness source across a wide set of environments.

Claims (12)

ClaimDirectionOutcomeConfidence & EvidenceDetails
LLM outputs should be treated as draws from a distribution rather than as fixed measurements. Research Productivity negative Reproducibility and stability of LLM-generated research data
Reading fidelity high
Study strength medium
not reported
0.18
Repeated LLM requests can produce different outputs even when the prompt and apparent model settings are unchanged. Research Productivity negative Consistency of repeated LLM outputs
Reading fidelity high
Study strength high
not reported
0.3
Setting temperature to zero removes deliberate sampling when available but does not eliminate other sources of randomness, so exact reproduction is generally not possible through proprietary APIs. Research Productivity negative Exact reproducibility of LLM outputs
Reading fidelity high
Study strength medium
not reported
0.18
Open-weight models run locally offer greater control over randomness, but reproducibility still depends on the complete hardware and software stack. Research Productivity mixed Control and reproducibility of model inference
Reading fidelity high
Study strength medium
not reported
0.18
As of July 2026, nearly 6% of articles published in leading economics and management journals mention LLMs in their title or abstract. Adoption Rate positive Share of economics and management articles mentioning LLMs
Reading fidelity high
Study strength medium
n=105464
nearly 6% of papers
0.18
Researchers in economics and management have mainly used closed-weight models in recent years. Adoption Rate positive Relative adoption of closed-weight versus open-weight LLMs
Reading fidelity high
Study strength medium
n=105464
0.18
Reliance on a single model run can produce unstable regression coefficients and misleading statistical significance. Research Productivity negative Stability of regression coefficients and statistical significance
Reading fidelity high
Study strength low
not reported
0.09
GPT-4 accuracy on a simple task classifying numbers as prime or composite fell from 84% to 51% within three months. Decision Quality negative Accuracy on prime-versus-composite number classification
Reading fidelity high
Study strength medium
fell from 84 percent to 51 percent
0.18
Repeated requests can produce different outputs even under zero-temperature settings because server-side batching can alter numerical computations. Ai Safety And Ethics negative Output consistency under nominally deterministic inference
Reading fidelity high
Study strength medium
not reported
0.18
Changes in the inference environment, including GPU type, GPU count, evaluation batch size, and numerical precision, can produce substantially different LLM outputs. Ai Safety And Ethics negative Similarity and stability of LLM outputs across inference environments
Reading fidelity high
Study strength medium
not reported
0.18
Across five LLMs and eight common tasks, repeated runs under nominally deterministic settings showed substantial variation, with accuracy differences reaching up to 15 percentage points. Decision Quality mixed Accuracy variation across repeated LLM runs
Reading fidelity high
Study strength medium
n=40
accuracy differences reaching up to 15 percentage points
0.18
In mixture-of-experts LLMs, identical requests can in principle receive different outputs because expert routing may depend on which other requests are processed in the same batch. Ai Safety And Ethics negative Output consistency under expert routing
Reading fidelity high
Study strength low
not reported
0.09

Notes