The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests About 🎲 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 →

A new 'interpolative decoding' technique lets language models be dialed across personality dimensions to mimic Big Five traits and replicate human choices in classic economic games; preliminary tuning can even align model actions with individual players, offering a scalable but still imperfect proxy for behavioral research.

Interpolative Decoding: Exploring the Spectrum of Personality Traits in LLMs
Eric Yeh, John Cadigan, Ran Chen, Dick Crouch, Melinda Gervasio, Dayne Freitag · December 23, 2025
arxiv other low evidence 7/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. Eric Yeh unresolved corpus identity
  2. John Cadigan unresolved corpus identity
  3. Ran Chen unresolved corpus identity
  4. Dick Crouch unresolved corpus identity
  5. Melinda Gervasio unresolved corpus identity
  6. Dayne Freitag unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Eric Yeh provider ID
  2. John J. Cadigan provider ID
  3. Ran Chen provider ID
  4. Dick Crouch provider ID
  5. Melinda T. Gervasio provider ID
  6. Dayne Freitag provider ID
Interpolative decoding produces continuous personality controls in LLMs that shift Big Five scores and enable models to reproduce human-like choices in standard economic games, and can be tuned to approximate individual players’ actions in preliminary twinning experiments.

Citation observations

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

Recent research has explored using very large language models (LLMs) as proxies for humans in tasks such as simulation, surveys, and studies. While LLMs do not possess a human psychology, they often can emulate human behaviors with sufficiently high fidelity to drive simulations to test human behavioral hypotheses, exhibiting more nuance and range than the rule-based agents often employed in behavioral economics. One key area of interest is the effect of personality on decision making, but the requirement that a prompt must be created for every tested personality profile introduces experimental overhead and degrades replicability. To address this issue, we leverage interpolative decoding, representing each dimension of personality as a pair of opposed prompts and employing an interpolation parameter to simulate behavior along the dimension. We show that interpolative decoding reliably modulates scores along each of the Big Five dimensions. We then show how interpolative decoding causes LLMs to mimic human decision-making behavior in economic games, replicating results from human psychological research. Finally, we present preliminary results of our efforts to ``twin'' individual human players in a collaborative game through systematic search for points in interpolation space that cause the system to replicate actions taken by the human subject.

Summary

Main Finding

Interpolative decoding — combining LLM output distributions from two prompt-defined trait extrema via a continuous interpolation parameter λ — reliably produces intermediate, human-plausible changes in LLM communicative and decision-making behavior along personality-like spectra. Using this method (particularly a contrastive variant) the authors (1) modulate LLM Big Five scores in predictable ways, (2) reproduce known personality‑conditioned effects in economic games, and (3) make initial progress toward “twinning” individual human players by searching interpolation space to match observed actions.

Key Points

  • Interpolative decoding represents a trait spectrum by two textual endpoint prompts (low vs high). At each decoding step the model’s next-token distribution is combined from the two conditioned distributions using an interpolation parameter λ.
    • Mixture decoding: weighted average P' ∝ λ·PA + (1−λ)·PB.
    • Contrastive decoding: P' = softmax(PA + λ·(PA − PB)) — asymmetric but empirically effective.
  • Psychological soundness:
    • Varying λ produces predictable shifts on Big Five inventories. Spearman correlations between target (prompted) trait level and resulting LLM Big Five scores: openness 0.69; conscientiousness 0.83; extraversion 0.83; agreeableness 0.70; neuroticism 0.73.
    • Contrastive decoding produced smoother, more gradual control than mixture decoding (contrastive range used −10..0; mixture used 0..1).
  • Decision-making experiments:
    • Interpolative decoding changes LLM choices in economic games (e.g., dictator game), aligning with human findings that prosocial traits (honesty‑humility / agreeableness) increase generous allocations.
    • In a cooperative game domain (Pandemic), interpolative modulation of dimensions beyond classic Big Five (e.g., weighting social vs deliberative information) changed decisions and reasoning in ways useful for team-performance studies.
  • Twinning (FOIL system):
    • Twinning is posed as maximizing the likelihood of observed human actions under interpolative-decoded LLMs (argmax over λ of summed log probabilities of observed actions).
    • Search methods used include golden-section search for unimodal cases; computational cost mitigated by prompt caching and by training a regressor (pretrained on LLM-generated data) to propose good initial λ guesses.
    • Preliminary results show promise for matching individual behaviors in constrained tasks by systematic sampling/regression in interpolation space.
  • Practical advantages: the approach requires no model fine-tuning and is compatible with off-the-shelf LLMs and prompt engineering, reducing overhead vs crafting many hand‑written prompts for individual trait settings.
  • Limitations noted: LLMs emulate communicative patterns (not bona fide human psychology); tuning depends on choice of endpoint prompts and task framing; objective surfaces can be multimodal and computationally expensive to search; external validity and ethical considerations remain.

Data & Methods

  • Models and general setup:
    • Experiments use broadly available LLMs (e.g., GPT-family style models), relying solely on prompt-conditioned decoding (no fine-tuning).
    • Endpoint prompts: descriptive textual templates for trait extrema (e.g., high vs low honesty-humility), plus control prompts unrelated to the trait.
    • Two interpolation mechanisms tested (mixture and contrastive); contrastive selected for most downstream experiments.
  • Psychological soundness test:
    • Big Five questionnaire-style evaluation. For each trait, few-shot examples were partitioned by facets; the model was prompted as “low/middle/high” on a trait and then answered inventory items (Likert scale). Scores aggregated per trait and correlated with input trait level across 20 facet-split experiments.
    • Reported Spearman correlations: openness 0.69; conscientiousness 0.83; extraversion 0.83; agreeableness 0.70; neuroticism 0.73.
  • Decision-making experiments:
    • Dictator game (single-turn $-split decision): assessed how interpolation along prosocial traits changed allocation choices, comparing to known human correlations with honesty‑humility and agreeableness.
    • Pandemic (cooperative board game): investigated sensitivity to reweighting social vs deliberative information sources using interpolative decoding.
  • Twinning methods:
    • Formal objective: maximize P(actions | observations, λ, endpoint prompts, scenario, LLM).
    • Search strategies: golden-section for unimodal 1-D; systematic sampling and regressor-based initialization for higher-dimensional/tougher cases.
    • Regressor training: generate LLM responses over varied λ and scenarios to learn mapping from observed responses to λ estimates.
  • Implementation details:
    • Prompt caching used to amortize encoding cost across repeated decoding calls.
    • Decoder parameter ranges: contrastive effective range observed −10..0; mixture 0..1.
  • Code and data: authors indicate public release at https://github.com/SRI-AIC/foil (per paper).

Implications for AI Economics

  • Scalable in-silico human surrogates: Interpolative decoding provides a parameterized, continuous way to generate agent populations with graded psychological traits, enabling faster and cheaper simulation of experiments that traditionally require human subjects (e.g., policy testing, mechanism design sensitivity).
  • Reduced prompt overhead and better replicability: Representing trait spectra via endpoints + λ reduces need to craft many distinct prompts and supports systematic exploration of trait-continuous effects.
  • Individualized agent models (twinning): Ability to fit λ to observed behavior opens the possibility of personalized agent models for counterfactual analysis, training simulations, or forensic economic studies (e.g., what-if analyses of individual responses to incentives).
  • Experimental leverage for behavioral economics:
    • Parameterized manipulation of traits (and information-weighting preferences) enables testing of which psychological dimensions drive decision outcomes in economic games and cooperative settings.
    • Interpolative decoding can be used to explore candidate trait dimensions beyond Big Five by adding endpoint descriptors and testing whether they increase predictive fidelity.
  • Methodological recommendations for economists:
    • Validate interpolated agents against standard inventories (e.g., Big Five) before deploying in broader simulations.
    • Prefer contrastive interpolation for smoother control; empirically determine λ ranges per model/task.
    • Use regressor/ Bayesian optimization methods to reduce search cost when fitting agents to individuals.
    • Account for the fact that LLMs emulate communicative behavior — cross-validate with real-world behavior where possible.
  • Cautions and ethics:
    • External validity: LLM “personas” reflect text-derived patterns and may not capture full cognitive/affective processes; results should be triangulated with human data.
    • Risk of misuse: twinning raises privacy and ethical concerns if used to emulate real individuals without consent.
    • Robustness: results depend on endpoint prompt wording, model version, and decoding hyperparameters; reproducibility practices (open prompts, code, seeds) are essential.

Summary verdict: Interpolative decoding is a practical, low-cost lever for producing graded, human-like agent variants from off-the-shelf LLMs. It has clear utility for exploratory and large‑scale simulation in AI economics, but users should validate agents against real data, be mindful of ethical constraints, and employ principled search/regression methods when fitting agents to individuals.

Assessment

Paper Typeother Evidence Strengthlow — The paper demonstrates a promising methodological technique using LLM outputs to emulate human personality and replicate behavior in select economic games, but it does not establish that LLM-based proxies causally predict real human behavior across contexts or stakes; evidence is limited to model outputs, benchmark comparisons to prior human results, and preliminary per-person 'twinning' searches, leaving external validity and robustness to model, prompt, and task variation unproven. Methods Rigormedium — The approach is systematic (paired opposed prompts, continuous interpolation parameter, evaluation on Big Five measures and economic games) and appears reproducible, but important methodological choices—model families and versions, decoding/temperature settings, number of draws per interpolation point, statistical tests, and sensitivity analyses across prompts and models—are not fully detailed or validated against diverse human samples, limiting confidence in robustness and inferential strength. SampleExperimental runs of one or more large language models prompted with opposing exemplars for each Big Five dimension, with outputs generated across a continuous interpolation parameter; responses scored on Big Five questionnaires and elicited choices in canonical economic games (benchmarked against results from prior human psychology/economics studies); additionally, a preliminary search over interpolation space to match actions of individual human players in a collaborative game. Themeshuman_ai_collab adoption GeneralizabilityFindings may not transfer across different LLM families, sizes, or versions (model-specific behavior)., Behavioral fidelity demonstrated on a narrow set of games and questionnaire instruments, not across the full range of real-world decision contexts., LLM outputs do not capture incentives, stakes, physiological states, or longitudinal within-person variability present in humans., Prompt design, decoding parameters, and random seeds likely materially affect results, complicating replication., Potential cultural, demographic, and linguistic biases in LLM training data limit representativeness of simulated personalities.

Claims (6)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Very large language models (LLMs) often can emulate human behaviors with sufficiently high fidelity to drive simulations to test human behavioral hypotheses, exhibiting more nuance and range than the rule-based agents often employed in behavioral economics. Other positive fidelity of LLM-emulated human behavior (qualitative comparison to rule-based agents)
Reading fidelity high
Study strength low
not reported
0.06
The requirement that a prompt must be created for every tested personality profile introduces experimental overhead and degrades replicability. Other negative experimental overhead and replicability of personality-prompt-based experiments
Reading fidelity high
Study strength low
not reported
0.06
Interpolative decoding, representing each Big Five personality dimension as a pair of opposed prompts and employing an interpolation parameter, reliably modulates scores along each of the Big Five dimensions. Other positive Big Five personality dimension scores
Reading fidelity high
Study strength medium
not reported
0.12
Interpolative decoding causes LLMs to mimic human decision-making behavior in economic games, replicating results from human psychological research. Decision Quality positive decision-making behavior in economic games (match to human results)
Reading fidelity high
Study strength medium
not reported
0.12
Interpolative decoding reduces the need to craft a separate prompt for every personality profile, addressing experimental overhead and improving replicability (by allowing continuous variation via an interpolation parameter). Other positive experimental overhead / replicability when simulating personality profiles
Reading fidelity high
Study strength medium
not reported
0.12
Preliminary results show it is possible to 'twin' individual human players in a collaborative game by systematically searching interpolation space for points that cause the system to replicate actions taken by the human subject. Decision Quality positive replication/matching of individual human actions in a collaborative game
Reading fidelity high
Study strength speculative
not reported
0.02

Notes