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 →

How you reward an LLM matters: using different proper scoring rules produces forecasters that reach similar overall accuracy via different error structures—Brier training yields the best Brier score and discrimination, while log training gives the best log score and calibration, and each reward reshapes the model’s bias, information, and noise profile.

How Proper Scoring Rules Shape LLM Forecasting
Benjamin Turtel, Paul Wilczewski, Kris Skotheim, Ville A. Satopää, Philip E. Tetlock · August 28, 2026
arxiv quasi_experimental medium 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. Benjamin Turtel unresolved corpus identity
  2. Paul Wilczewski unresolved corpus identity
  3. Kris Skotheim unresolved corpus identity
  4. Ville A. Satopää unresolved corpus identity
  5. Philip E. Tetlock unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Benjamin Turtel provider ID
  2. Paul Wilczewski provider ID
  3. Kris Skotheim provider ID
  4. Ville A. Satopää provider ID
  5. Philip Tetlock provider ID
Training the same LLM with different proper scoring-rule rewards yields forecasters with similar aggregate accuracy but distinct calibration, probability usage, and decomposed contributions from bias, information, and noise.

Citation observations

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

No provider observation is available for this paper.

Missing data, not a zero citation count.

This paper evaluates how reward function choice shapes the performance and behavior of LLM forecasters. We compare five proper scoring rules as training objectives for binary forecasts of resolved real-world events. Although the rules share the same theoretical incentive for truthful probability reporting, the resulting models differ in calibration, probability use, and estimated profiles of bias, information, and noise, with smaller differences in aggregate accuracy and discrimination. The Brier-trained model has the lowest observed Brier score and highest AUC-ROC, while the log-trained model has the highest observed log score and lowest calibration error. Models with similar aggregate performance also reach that performance through different combinations of bias, information, and noise. Proper scoring rules therefore need not behave interchangeably as training objectives. Reward choice may shape not only how well an LLM forecasts, but how its forecasting errors are structured. Each condition uses a single seed, so some differences may reflect training stochasticity.

Summary

Main Finding

Although all five reward functions compared are strictly proper scoring rules (so they incentivize truthful probability reports in expectation), using them as terminal rewards under Group Relative Policy Optimization (Dr. GRPO) produces measurably different LLM forecasters in finite training. Reward choice affected calibration, probability-scale use, discrimination, and—importantly—the estimated composition of forecasting error (bias vs information vs noise). In short: proper scoring rules are not interchangeable as finite-sample training objectives; they shape not just how well LLMs forecast but how their errors are structured.

Key Points

  • Rewards compared: logarithmic (log), Brier (negative Brier score used as reward), spherical, Beta(2,8), Beta(8,8). All are strictly proper but differ in curvature, tail sensitivity, and where they emphasize probability errors.
  • Aggregate performance (held-out pooled evaluation, 965 questions):
    • Best Brier score: Brier-trained model (Brier = 0.1648) vs base = 0.1861.
    • Best AUC-ROC (discrimination): Brier-trained (0.7511).
    • Best log score and lowest expected calibration error (ECE): log-trained model (log score = −0.5132, ECE = 0.0434).
    • All reward-trained variants improved over the untrained base on Brier and ECE; differences between reward conditions on aggregate metrics were present but modest.
  • Error composition (bias–information–noise, BIN decomposition):
    • Different reward functions achieved similar aggregate improvements via different mixes:
    • Beta(2,8): largest estimated bias contribution (systematic probability shift).
    • Brier: largest estimated information contribution (better use of outcome-relevant information) with little noise.
    • Log: comparatively large positive noise contribution (more nonsystematic variability).
    • Spherical and Beta(8,8): showed negative noise contributions offsetting some gains.
  • Probability-use and calibration:
    • Reward-trained models put substantially more mass on lower predicted probabilities versus the base model.
    • Log-trained model exhibited the best calibration curve (lowest ECE).
  • Training and practical caveats:
    • Training setup held model initialization, data, optimizer, steps (200), rollout budget (8 rollouts per question), LoRA rank (32), and other hyperparameters fixed; only reward function varied.
    • Each condition used a single random seed — observed differences may partly reflect training stochasticity.
    • Realized token-generation varied widely across conditions (avg tokens per condition ranged ~362 to ~2692), so token-level compute differed despite identical step budgets.
    • Probabilities clipped to [0.001, 0.999]; invalid outputs penalized on rule-specific scales.

Data & Methods

  • Task: temporal-masked binary forecasting of real-world events (Will E occur by time s?), using only evidence available before cutoff t (future-as-label setup).
  • Dataset: 8,041 resolved binary forecasting examples from news (July 2024–Jan 2026); train = 7,076, held-out evaluation = 965; positive-rate ~27–28.5%.
  • Model and training:
    • Base: GPT-OSS-120B; post-training via LoRA adapters (rank 32) using Dr. GRPO (group-relative policy optimization variant).
    • For each training example, K = 8 rollouts sampled; advantage for each rollout = its reward minus average reward across the group (no SD-scaling, no KL penalty).
    • Terminal rewards computed from final parsed probability and resolved outcome.
    • Training steps: 200; batch size 32; learning rate 2e-5; warmup ratio 0.1.
  • Evaluation:
    • Sample five responses per held-out question (temperature 1.0); primary metrics pooled across 5 rollouts: Brier score (lower better), log score (higher better), expected calibration error (ECE, lower better), AUC-ROC (higher better).
    • Bias–information–noise decomposition (Satopää et al., 2021) fit to pooled forecasts to decompose Brier differences into bias, information, and noise components.
    • Numerical stability: probabilities clipped to [0.001, 0.999]; invalid outputs penalized to be worse than worst valid forecast for each rule.

Implications for AI Economics

  • Reward design as an economic instrument: Choice of scoring rule functions like a policy lever that shapes forecasters’ systematic tendencies (bias), informativeness, and volatility (noise). In mechanism-design terms, scoring-rule selection affects the forecast distribution and therefore downstream economic outcomes (trading, betting markets, managerial decisions).
  • Market and mechanism implications:
    • If a market designer wants better discrimination/ranking ability (e.g., rank-based allocation or selection), training under Brier-like objectives may be preferable (Brier-trained model had highest AUC-ROC).
    • If calibration is paramount for risk-sensitive decisions (e.g., expected-utility maximization, actuarial pricing), log scoring produced the best calibration (lowest ECE) in this study.
    • If one cares about reducing nonsystematic noise (e.g., for ensemble aggregation or policy-making where stable signals matter), reward choice that boosts information rather than noise (Brier here) matters.
  • Evaluation and experiment design:
    • Reporting only aggregate metrics (Brier, log score) can miss economically important differences in how forecasts fail. BIN-style decompositions reveal differences that matter for aggregation, information markets, and welfare calculations.
    • Comparisons of forecasting systems or market participants should account for their training reward functions; two systems with equal Brier scores can have very different bias/noise profiles and hence different economic value.
  • Practical guidance for researchers and practitioners:
    • Choose the scoring rule with the downstream decision loss in mind (e.g., calibration vs ranking vs tail-sensitivity).
    • When training forecasters via RL-style procedures, expect finite-sample, algorithmic interactions to produce different operational forecasters even when rules are proper.
    • Run multiple seeds and report BIN-style decompositions and calibration curves in economic evaluations; control for token-generation and compute differences.
  • Broader mechanism-design caution:
    • Even when a scoring rule is proper (truthful in expectation), finite-sample training dynamics and group-relative updates can create incentives and learning signals that produce systematically different forecasting behaviors. Designers of prediction markets, forecasting contests, or corporate scoring incentives should therefore not assume interchangeability of proper scoring rules.

Suggestions for follow-up (research agenda): - Replicate with multiple random seeds and longer training to separate stochastic effects from reward-induced effects. - Investigate continuous/outcome-sensitive scoring rules, asymmetric decision losses, and multi-class forecasts. - Study downstream economic impacts (expected utility, market-maker P&L, allocation decisions) of differently trained forecasters in simulated or real decision environments.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — The study uses a well-controlled experimental setup and multiple complementary evaluation metrics on a held-out temporally masked dataset, which credibly links reward choice to differences in forecast behavior; however, there is only one random seed per condition, realized token-generation (and thus compute) differs across conditions, training is limited in steps/scale, and the dataset and model family are proprietary and narrowly scoped, which weakens causal and external claims. Methods Rigormedium — Design strengths: clear counterfactual (different rewards), consistent data and hyperparameters, temporally masked resolved outcomes, multiple evaluation metrics (Brier, log score, ECE, AUC-ROC), paired bootstrap inference, and BIN decomposition for mechanism. Limitations: single-seed per condition, differences in realized token output across reward variants (hence differing token-level compute), modest training steps, reliance on a single model family and LoRA adapters, and some analysis (BIN) is model-based/assumption-dependent. SampleDataset of 8,041 temporally-masked binary forecasting questions drawn from news events (July 2024–Jan 2026); training set 7,076 examples, held-out evaluation set 965 examples (positive outcome rate 27.0% train, 28.5% eval). Base model: GPT-OSS-120B with rank-32 LoRA adapters trained via Dr. GRPO. Training: 200 steps, batch size 32, 8 rollouts per question during training, each held-out question sampled 5 times at evaluation (pooled evaluation yields 4,825 forecast–outcome pairs). Compared five reward functions: log, Brier, spherical, Beta(2,8), Beta(8,8). Themeshuman_ai_collab innovation IdentificationControlled training experiment: the authors train the same base LLM (GPT-OSS-120B with rank-32 LoRA adapters) under five different proper scoring-rule terminal rewards while holding model initialization, training data, optimizer, training steps, rollout budget, and hyperparameters fixed; evaluation uses a temporally masked held-out set of resolved binary forecasting questions, paired question-level bootstrap for inference, and BIN decomposition to characterize sources of score changes. Note: each reward condition uses a single random seed and realized token-generation differs across conditions, limiting causal generality. GeneralizabilitySingle model family (GPT-OSS-120B) and LoRA adapters only — results may not generalize to other architectures or full fine-tuning., Proprietary dataset and question-construction pipeline; domain/time window limited to news events between July 2024–Jan 2026., Binary forecasting task only; continuous or multi-class prediction settings may behave differently., Single random seed per reward condition — observed differences may partly reflect training stochasticity., Realized token-generation and thus effective compute differed across reward conditions, potentially confounding reward effects., Training steps and compute budget are modest; behaviors under longer or larger-scale training could diverge., Dr. GRPO-specific group-relative update dynamics may not transfer to other RL/fine-tuning algorithms.

Claims (9)

ClaimDirectionOutcomeConfidence & EvidenceDetails
All five proper-scoring-rule-trained variants achieved lower observed Brier scores and lower expected calibration errors than the untrained GPT-OSS-120B base model. Output Quality positive Brier score and expected calibration error relative to the base model
Reading fidelity high
Study strength medium
n=965
Brier: 0.1648–0.1731 for trained variants versus 0.1861 for base; ECE: 0.0434–0.0954 versus 0.1099
0.48
The Brier-trained model achieved the best observed Brier score and the highest AUC-ROC among the evaluated models. Output Quality positive Brier score and AUC-ROC
Reading fidelity high
Study strength medium
n=965
Brier score 0.1648; AUC-ROC 0.7511
0.48
The log-trained model achieved the best observed log score and the lowest expected calibration error. Output Quality positive Log score and expected calibration error
Reading fidelity high
Study strength medium
n=965
Log score -0.5132; ECE 0.0434
0.48
Relative to the base model, the log, Brier, spherical, and Beta(2,8) variants improved Brier score at the 1% significance level, while the Beta(8,8) variant improved it at the 5% significance level. Output Quality positive Held-out Brier score
Reading fidelity high
Study strength medium
n=965
1% significance for log, Brier, spherical, and Beta(2,8); 5% significance for Beta(8,8)
0.48
Reward choice was associated with different calibration profiles and distributions of forecast probabilities, with reward-trained variants generally tracking the calibration diagonal more closely than the base model and placing more probability mass at lower predicted probabilities. Output Quality positive Calibration and use of the forecast-probability scale
Reading fidelity high
Study strength low
n=965
0.24
The reward variants exhibited different estimated bias, information, and noise profiles even when their aggregate Brier-score improvements were similar. Output Quality mixed Estimated contributions of systematic bias, outcome-relevant information, and nonsystematic forecast noise to Brier-score improvement
Reading fidelity high
Study strength low
n=4825
0.24
Beta(2,8) had the largest estimated bias contribution, while the Brier variant had the largest estimated information contribution and little contribution from noise. Output Quality mixed Estimated bias, information, and noise contributions to Brier-score improvement
Reading fidelity high
Study strength low
n=4825
0.24
The log variant showed a comparatively large positive estimated noise contribution, whereas the spherical and Beta(8,8) variants showed negative noise contributions that offset gains from bias and information. Error Rate negative Estimated nonsystematic forecast-noise contribution to Brier-score improvement
Reading fidelity high
Study strength low
n=4825
0.24
The reward conditions differed substantially in realized token-level compute despite identical training-step and rollout budgets; the longest-output condition generated approximately seven times as many tokens as the shortest-output condition. Organizational Efficiency mixed Tokens generated during training
Reading fidelity high
Study strength medium
approximately 7 times as many tokens
0.48

Notes