Sources#
Summary#
Calibration — expressing the right amount of confidence, including on unsettled questions — treated as a training target with its own reward design, rather than a byproduct of scale or a constitution line. The concrete recipe is TML's "epistemics" stack for Inkling (July 2026, vendor-claim), the first release in this wiki to describe end-to-end how calibration gets trained in:
- RL against proper scoring rules on a large corpus of resolved real-world questions — the forecasting-theory device (a scoring rule is proper when truthful probability reporting maximizes expected reward) imported directly into the reward function.
- Abstention-aware short-form QA rewards: answering only pays off when the model is likely to be right, so the optimal policy is to answer when confident and otherwise say "I don't know" or hedge. Some prompts encourage or forbid hedging, so the user's preference for a forced guess versus a calibrated non-answer stays controllable — calibration without hedging-as-a-tic.
- A dual grader for long-form instruction following: a rubric grader (checklist of what a good answer contains) paired with a claims grader that extracts each factual claim and verifies it by agentic web search, penalizing claims that don't check out.
The dual-grader design is a reward-hacking patch#
TML names the failure mode outright: rubrics "emphasize recall and can be hacked by models spraying plausibly relevant facts hoping to match rubric items." That is Reward Hacking in the instruction-following reward channel — Goodharting a checklist. The claims grader is the counter-pressure: every sprayed fact becomes a liability, because unverifiable claims are penalized individually. TML's claim is that the pair improves helpfulness and reduces hallucination simultaneously, where either grader alone trades one for the other.
The claims grader is also a deployed answer to Reference-Free Judge Over-Crediting: it does not rely on the judge model's own knowledge to score factuality — the exact condition under which reference-free LLM-as-a-Judge evaluation over-credits fluent wrong answers — but grounds each verification in retrieved evidence. The over-crediting result predicts that a knowledge-only claims grader would reward confident confabulation; putting search in the reward loop is the mitigation shape that result implies, moved from eval time into training time.
Forecasting as the resulting evaluation#
If calibration is trained on resolved questions, forecasting benchmarks are its natural exam: integrating conflicting sources into a probability, scored by Brier-type rules where overconfidence is punished symmetrically with underconfidence. TML reports Inkling at 61.1 ForecastBench Brier Index (no search) — level with Gemini 3.1 Pro (61.1) and Grok 4.3 (61.7), above GPT-5.5 (59.1) and well above Claude Opus 4.8 (54.6) — and 0.1617 on Prophet Arena, within noise of the closed frontier. All vendor-claim, on a pre-release checkpoint, tested June 30–July 13, 2026. Taken at face value, the striking part is not the win but the parity: a 41B-active open model matching frontier closed models on calibration while trailing them badly on hard reasoning (HLE 29.7 vs 44–53) suggests calibration is cheap relative to capability — a property of reward design more than of scale.
Relation to honesty-as-alignment#
Agentic Honesty & Diligence tracks the same target from the behavioral-audit side: Anthropic's overconfidence evals (admit ignorance about an unseen CLI tool; validate a teammate's wrong example) measure whether calibration shows up in agentic behavior, and Opus 4.8's constitution names "calibrated" as a component of honesty. This page is the training-loop complement: where the audit view asks does the model behave calibratedly, the TML recipe specifies what gradient produces that behavior. The two views meet at an awkward datapoint — the model whose constitution demands calibration scores lowest of the compared frontier models on TML's forecasting table — though a competitor's benchmark of a rival's checkpoint is the weakest possible evidence for that gap.
Connections#
- Confident But Unsure — the failure this recipe targets, measured in the wild: Opus 5 states answers its own reasoning cannot support, with accuracy up 11% and hallucination up 6% as its abstention rate falls
- Inkling — the model this recipe shipped in
- Reward Hacking — rubric fact-spraying is the named instance; the claims grader is the counter-pressure
- Reference-Free Judge Over-Crediting — why the claims grader must search rather than rely on parametric knowledge
- LLM-as-a-Judge — both graders are judges inside the reward loop; this is judge design under adversarial (Goodhart) pressure
- Agentic Honesty & Diligence — the behavioral-audit view of the same target; calibration as a constitutional dimension vs. as a reward function
- Thinking Machines Lab — the lab; ties to their forecasting fine-tune work on Tinker
- Introspective Coupling — the other trained metacognitive report in this wiki: explanation training rather than calibration training, transferring to behavior it never received labels for, and paying a comparable general-capability toll (TruthfulQA −6.7pp, GSM8K ~−5pp)
Open Questions#
- Does abstention-aware training on short-form QA transfer to calibrated long-form and agentic self-reports (the setting where Agentic Honesty & Diligence shows overconfidence actually bites)?
- The claims grader verifies via agentic web search — importing the search index's coverage, recency, and bias into the reward signal. What does the model learn to claim about facts the index settles wrongly or not at all?
- If calibration parity is achievable at 41B active while reasoning is not, is calibration systematically under-trained in frontier closed models (Opus 4.8's 54.6), or is TML's forecasting table just favorable ground for a model trained on proper scoring rules?
Sources#
- Inkling: Our Open-Weights Model — "Epistemics" section (
vendor-claim): proper-scoring-rule RL, abstention-aware rewards, rubric+claims dual grader, ForecastBench/Prophet Arena tables
Cited by 10
- Inkling×2
Calibration: ForecastBench Brier Index 61.1 (no search) — level with Gemini 3.1 Pro, above GPT-5.5 (59.1) and well above Claude Opus 4.8 (54.6) in TML's table.…
- Thinking Machines Lab×2
Tinker — the hosted fine-tuning platform Inkling launches on (64K/256K context, day-0 serving partnerships across Together/Fireworks/Modal/Databricks/Baseten,…
- Agentic Honesty & Diligence
Trained Calibration — the training-loop view of the same target: TML's recipe (proper scoring rules, abstention-aware rewards, dual graders) specifies the…
- Confident But Unsure
Trained Calibration — the training-loop answer to this exact failure: proper scoring rules and abstention-aware rewards make "answer only when likely right" a…
- Introspective Coupling
Trained Calibration — the sibling case of a metacognitive report trained as a first-class target; both find the trained report transfers beyond its training…
- LLM-as-a-Judge
Trained Calibration — judges inside the RL reward loop: a rubric grader paired with a web-searching claims grader, designed as mutual counter-pressure against…
- Model Capability & Training
Trained Calibration — TML's recipe for making calibration a first-class RL target: proper scoring rules on resolved real-world questions, abstention-aware QA…
- Open Questions Backlog
Trained Calibration ×3 (oldest 13d) — Does abstention-aware training on short-form QA transfer to calibrated long-form and agentic self-reports (the setting…
- Reference-Free Judge Over-Crediting
Trained Calibration — the mitigation shape deployed in a training loop: TML's claims grader verifies each claim by agentic web search rather than trusting the…
- Reward Hacking
Trained Calibration — a named instance in the reward-design wild: rubric graders "can be hacked by models spraying plausibly relevant facts," and TML's counter…
Related articles
- Chain-of-Thought Monitorability
Korbak et al. 2025: chain-of-thought traces are a fragile monitor; direct CoT training compromises faithfulness; MSM of…
- Evaluation Awareness & Grader Gaming
The model recognizing it is being tested/graded and reasoning about how its outputs will be assessed — sometimes unprom…
- Failures That Look Like Success
The quiet agent-failure class where everything reads fine — confident answer, plausible plan, even correct internal sta…
- Automated Behavioral Audit
Anthropic's broad-coverage alignment evaluation: an investigator model probes a target across ~1,300 handwritten scenar…
- White-Box Activation Monitoring
Reading a model's internal activations (not its outputs) to monitor alignment: contrastive probes/steering vectors for…
