HealthBench · config sanity check
HealthBench config check: our four spaces vs OpenAI's published numbers
We have a real anchor for this check: OpenAI's GPT-5.6 system card publishes gpt-5.5 scores for all four HealthBench variants, and gpt-5.5 is one of the models we ran. Lining our numbers up against theirs gives a per-variant verdict rather than a guess.
The result splits cleanly. The two spaces where we used the correct grader reproduce OpenAI within a point. The full HealthBench run lands at 55.8 against their 56.5, and our HealthBench Professional physician baseline lands at 43.87 against their published 43.7. That is close enough to say the dataset, prompting, rubric scoring, length adjustment and aggregation are all wired up right.
The two spaces where we used the wrong grader are badly off. HealthBench Hard is 5.5 points low
and HealthBench Consensus is 13.6 points low. Both were graded by gpt-4o-mini instead of
GPT-4.1, not by choice but because the inspect_evals task wrappers for those two variants do not
expose a judge_model argument and silently fall back to the package default. Consensus is the
loudest signal: every frontier model in OpenAI's table sits in a 94 to 96 band, and ours sits at 82.
A separate, smaller gap shows up on the inference side. Our gpt-5.5 Professional score is 4 points below OpenAI's, even though the grader is correct there. The physician baseline matching to 0.2 points rules out the grading pipeline, which points the finger at reasoning effort: we pass none, while OpenAI evaluates "at the highest reasoning effort option available via each model's API." Claude was run with extended thinking off entirely.
The anchor check
All numbers are the length-adjusted score on the 0 to 100 scale, which is what OpenAI reports as the
primary metric. Their figures come from the GPT-5.6 system card Table 6, given as
length-adjusted (unadjusted, mean chars). Ours are recomputed from the downloaded
.eval logs.
| Check | Grader used | OpenAI adj | ours adj | Δ | OpenAI raw | ours raw | OpenAI chars | ours chars |
|---|---|---|---|---|---|---|---|---|
| Physician baseline (Prof) | gpt-5.4 low | 43.7 | 43.87 | +0.2 | n/a | 44.29 | n/a | n/a |
| HealthBench (full) | gpt-4.1 | 56.5 | 55.83 | −0.7 | 58.4 | 56.87 | 2313 | 2175 |
| HealthBench Professional | gpt-5.4 low | 51.8 | 47.81 | −4.0 | 57.2 | n/a | 3818 | 3748 |
| HealthBench Hard | gpt-4o-mini | 31.5 | 26.03 | −5.5 | 33.8 | 27.27 | 2289 | 2158 |
| HealthBench Consensus | gpt-4o-mini | 95.6 | 82.02 | −13.6 | 95.7 | 82.08 | 2259 | 2143 |
Our Professional overall is a sample-weighted mean of the three use-case subsets (consult 236, writing 142, research 147, total 525), since we ran them as separate tasks rather than one benchmark. Red teaming is a cross-cutting slice of those same 525 examples, not a fourth use case, so it is excluded from the weighting.
Two things worth noticing beyond the scores. First, mean response lengths track closely (2175 vs 2313, 2158 vs 2289, 2143 vs 2259, 3748 vs 3818), consistently about 5% shorter but never structurally different. Since length is the one output property that would move if our prompting or harness diverged, this is good evidence the request side is faithful. Second, the two correct grader rows and the two wrong grader rows separate perfectly, which is what makes the diagnosis confident rather than speculative.
The physician baseline is the cleanest check we have
HealthBench Professional ships a set of 525 physician-written responses. Scoring them involves no model inference at all: the responses are fixed text, and the only moving part is the grader plus the aggregation. So if our number matches OpenAI's, the entire scoring half of the pipeline is verified, and any remaining discrepancy on real models has to live on the inference side.
| Physician baseline | OpenAI published | ours (recomputed) | Δ |
|---|---|---|---|
| Overall | 43.7 | 43.87 | +0.17 |
| Care consult | 42.7 | 42.54 | −0.16 |
| Writing and documentation | 32.1 | 32.91 | +0.81 |
| Medical research | 56.3 | 56.60 | +0.30 |
Every cell is within a point. Note that the per-use-case rows here are recomputed from per-sample scores, not read off the log's own subset metrics, which are inflated for a reason covered in issue 4.
Config matrix
What we set against what OpenAI's reference implementation sets, per variant.
| Setting | OpenAI reference | hs-non-professional | hs-hard | hs-consensus | hs-prof-subsets |
|---|---|---|---|---|---|
| Grader model | gpt-4.1 / gpt-5.4 low | gpt-4.1 | gpt-4o-mini | gpt-4o-mini | gpt-5.4 low |
| Grader system msg | "You are a helpful assistant." | same | same | same | same |
| Length adj. center | 2000 chars | 2000 | 2000 | 2000 | 2000 |
| Length adj. penalty | 2.99 / 3.92 / 0.20 / 1.47 | 0.0299 | 0.0392 | 0.002 | 0.0147 |
| Per-sample clipping | none (mean is clipped) | none | none | none | subscores clipped |
| Dataset size | 5000 / 1000 / 3671 / 525 | 5000 | 1000 | 3671 | 525 |
| Samples per example | 1 (main), 8 (Prof) | 1 | 1 | 1 | 8 1 for deepseek |
| Reasoning effort | highest available | unset | unset | unset | unset |
| Headline metric | length-adjusted | unadjusted | unadjusted | unadjusted | length-adjusted |
| Bootstrap resamples | 1000 | 1000 | 1000 | 1000 | 1000 |
The length adjustment is worth calling out as correct-by-verification, not just correct-by-declaration: we
confirmed the arithmetic per sample against
score − penalty × ((len − center) / 500), OpenAI's
calculate_length_adjusted_score. On one Hard sample: raw 0.6102, completion 13,776 chars, giving
0.6102 − 0.0392 × 23.552 = −0.3131, which is exactly the stored value.
Issue 1: Hard and Consensus were graded by gpt-4o-mini
This is the largest error and it was not a deliberate choice. The inspect_evals task wrappers for
these two variants accept only the length-adjustment arguments and pass nothing else through, so
judge_model silently keeps the package default of openai/gpt-4o-mini:
The wrapper that drops the judge argument inspect_evals/healthbench/healthbench.py
def healthbench(
...
judge_model: str | Model = "openai/gpt-4o-mini", # package default
...
)
@task
def healthbench_hard(
length_adjustment_center: float | None = None,
length_adjustment_penalty_per_500_chars: float | None = None,
) -> Task:
return healthbench( # judge_model never forwarded
subset="hard",
length_adjustment_center=length_adjustment_center,
length_adjustment_penalty_per_500_chars=length_adjustment_penalty_per_500_chars,
)
Our hs-non-professional run passed judge_model: "openai/gpt-4.1" explicitly and got
it. The Hard and Consensus runs declared no judge at all in task_args, and inspecting the model
events in the logs confirms every grading call went to gpt-4o-mini-2024-07-18.
OpenAI never grades any variant with a mini-tier model. In simple_evals.py the same
healthbench_grading_sampler is handed to healthbench, healthbench_hard
and healthbench_consensus alike, so all three get GPT-4.1, or all three get GPT-5.4 low when the
--healthbench-use-gpt-5-4-low-grader flag is set.
The HealthBench paper measured what a weaker grader costs. Its meta-evaluation ranks candidate graders by
agreement with physicians (Macro-F1): GPT-4.1 0.709, o4-mini 0.692, o3 0.681, GPT-4.1 mini 0.661,
GPT-4.1 nano 0.580, and calls the smaller variants "substantially worse". gpt-4o-mini is not in
that table but sits below GPT-4.1 mini in capability, so 0.661 is the optimistic bound.
Issue 2: reasoning effort is never set, and the models diverge because of it
The HealthBench Professional paper states that models are "evaluated at the highest reasoning effort option available via each model's API (e.g., xhigh for GPT-5.4)", and measures a 5.6 to 7.3 point gain moving from low to xhigh. None of our runs pass a reasoning effort, so each provider's default applies, and the defaults are not comparable to each other:
| Model (HealthBench Hard, 1000 samples) | frac. with reasoning | mean reasoning tokens | generate config sent |
|---|---|---|---|
| openai/gpt-5.5 | 0.97 | 291 | {cache: true} |
| openrouter/deepseek-v4-pro | 0.86 | 489 | {cache: true} |
| anthropic/claude-opus-4-7 | 0.00 | 0 | {cache: true, max_tokens: 32000} |
| plamo-3.0-prime | 0.00 | 0 | {cache: true} |
| medgemma-4b / 27b | 0.00 | 0 | {cache: true} |
Claude ran with extended thinking off on every sample of every log, while gpt-5.5 and DeepSeek reasoned by default. Whatever the intended comparison was, this is not it: the reasoning models get their default budget and Claude gets none. Claude is the most disadvantaged model in the set for a reason that has nothing to do with Claude.
This also explains the one gap the grader cannot account for. On Professional, where our grader is correct and the physician baseline matches to 0.2 points, gpt-5.5 still lands 4 points low. A default-effort versus highest-effort difference of that size is consistent with the 5.6 to 7.3 point low-to-xhigh delta OpenAI reports.
Issue 3: three spaces show the unadjusted score as the headline
OpenAI reports "length-adjusted score (unadjusted, mean response length in characters)", so the adjusted
number is the primary one. In our listing.json the primary_metric for
hs-non-professional, hs-hard and hs-consensus is the
unadjusted bootstrap_score. Only hs-prof-subsets carries
use_length_adjusted: true.
This is not cosmetic. Length adjustment reorders the Hard leaderboard almost completely, because our models differ enormously in verbosity:
| Model | mean chars | raw | length-adj | shift | rank raw | rank adj |
|---|---|---|---|---|---|---|
| anthropic/claude-opus-4-7 | 1849 | 26.61 | 27.80 | +1.2 | 2 | 1 |
| openai/gpt-5.5 | 2158 | 27.27 | 26.03 | −1.2 | 1 | 2 |
| openrouter/deepseek-v4-pro | 3408 | 24.84 | 13.80 | −11.0 | 3 | 3 |
| plamo-3.0-prime | 2997 | 17.43 | 9.61 | −7.8 | 5 | 4 |
| vllm/medgemma-27b | 4073 | 21.09 | 4.83 | −16.3 | 4 | 5 |
| vllm/medgemma-4b | 3192 | 10.60 | 1.26 | −9.3 | 6 | 6 |
Claude gains because it is the only model averaging under the 2000-character centre. medgemma-27b loses 16 points. Anyone reading the space's default metric is reading a different ranking from the one OpenAI's methodology produces.
Issue 4: the Professional per-use-case subscores are inflated
The custom healthbench_professional.py emits use_case_*_score,
type_*_score and difficulty_*_score metrics alongside the headline. These do not
use the same aggregation as the headline and should not be quoted. They are consistent with per-sample
clipping to [0, 1] before averaging, where OpenAI clips only the final mean.
The physician baseline makes the error measurable, because OpenAI publishes the ground truth for exactly these three cells:
| Physician baseline by use case | OpenAI | recomputed correctly | as reported in our log | inflation |
|---|---|---|---|---|
| Care consult | 42.7 | 42.54 | 48.4 | +5.9 |
| Writing and documentation | 32.1 | 32.91 | 44.9 | +12.0 |
| Medical research | 56.3 | 56.60 | 59.0 | +2.4 |
The arithmetic that identifies the cause 525 examples × 8 epochs = 4200
overall mean raw = 44.29 # matches reported 44.29 overall mean adj = 43.87 # matches reported 43.87, and OpenAI's 43.7 overall mean adj, clipped per-sample= 49.71 frac. of samples with adj < 0 = 0.164 by use case n mean_adj clipped_per_sample consult 1888 42.54 48.09 research 1176 56.60 57.47 writing 1136 32.91 44.39
16.4% of physician responses score below zero once the length penalty applies, mostly short writing-task answers that trip negative rubric criteria. Clipping those to zero before averaging is what lifts writing from 32.9 to roughly 44. The residual of about 0.3 between the clipped figures and the reported ones is bootstrap resampling noise; the mechanism is the clipping.
The headline bootstrap_score is unaffected and remains correct. Only the subset breakdowns are
wrong, which matters because the by-use-case split is the most quoted view of Professional results.
Issue 5: five Professional scores are floored at zero
OpenAI clips the aggregate mean to [0, 1], and our implementation follows suit, so this is faithful behaviour
rather than a bug. But it means five reported numbers are all displayed as 0.00 while their true
values differ by 7 points, which hides real ranking information:
| Model | Subset | reported | true unclipped mean |
|---|---|---|---|
| plamo-3.0-prime | red teaming | 0.00 | −11.82 |
| openrouter/deepseek-v4-pro | red teaming (ep 1) | 0.00 | −8.29 |
| openrouter/deepseek-v4-pro | red teaming (ep 8) | 0.00 | −6.87 |
| vllm/medgemma-27b | red teaming | 0.00 | −6.80 |
| plamo-3.0-prime | writing | 0.00 | −4.31 |
Worth reporting the unclipped value alongside the clipped one for these, or at least noting that a zero means "at or below zero" rather than "scored nothing".
Run hygiene
DeepSeek's Professional runs are under-sampled, and its consult run is the only one hs-prof-subsets
Every model ran epochs=8, matching the paper's "8 samples per example". The 2026-07-25 DeepSeek
batch ran epochs=1. For writing, research, red_teaming and
physician_baseline both variants exist in listing.json, so the viewer shows duplicate
conflicting entries. For consult the epochs=1 run is the only DeepSeek run, so it sits in
the same chart as everyone else at one eighth the sampling.
The good news is the two variants agree closely where both exist (research 51.85 vs 52.91, writing 5.16 vs 4.95, red teaming floored in both), so the practical distortion is small. It is still worth deleting the epochs=1 logs and re-running consult at 8.
medgemma-4b is missing four of five Professional subsets hs-prof-subsets
Only consult exists (score 8.19). Writing, research, red teaming and physician baseline were
never run, so medgemma-4b has no Professional overall and cannot appear in a like-for-like comparison.
Response caching is on and demonstrably active plan: generate(cache=true)
Four of the five physician-baseline runs report byte-identical scores of 0.44291, which only happens if the
grader responses came from cache. Inspect's cache key includes the epoch by default
(CachePolicy.per_epoch = True), so the 8 epochs are not collapsing into one, which was the real
risk. The remaining caveat is that a re-run inside the one-week TTL is not an independent sample, so a repeat
run cannot be used as a variance estimate.
Two different inspect_evals versions inside the same space 0.14.3 vs 0.16.0
The frontier-model runs (July 15 to 16) used inspect_evals 0.14.3 with
inspect_ai 0.3.246; the medgemma runs (July 24) used 0.16.0 with
0.3.249. Same space, same chart, different scorer code. Worth confirming the healthbench scorer
did not change across those releases before comparing medgemma against the frontier models.
Outlier generations and empty completions hs-hard
All runs completed with zero sample errors. Two small things: medgemma-4b produced one 110,722-character response on Hard, which carries a length penalty of −8.5 on its own and moves the 1000-sample mean by about 0.9 points; and claude-opus-4-7 returned 7 empty completions on Hard, each scored zero. Neither is fatal, both are worth a spot check.
What to change
Concretely, for the two broken variants, stop using the wrapper tasks and call the parent task instead:
Getting a real judge into Hard and Consensus the wrapper cannot do it
# broken: judge_model silently defaults to gpt-4o-mini inspect eval inspect_evals/healthbench_hard \ -T length_adjustment_center=2000 \ -T length_adjustment_penalty_per_500_chars=0.0392 # works: call healthbench() directly with subset= inspect eval inspect_evals/healthbench \ -T subset=hard \ -T judge_model=openai/gpt-4.1 \ -T length_adjustment_center=2000 \ -T length_adjustment_penalty_per_500_chars=0.0392
Worth considering GPT-5.4 at low reasoning for all four variants instead. The Professional paper notes the external implementation now has "an option to use settings matching our internal implementation (e.g., GPT-5.4 at low reasoning effort as a grader)" and that OpenAI intends to keep reporting from the internal one. Using it everywhere would both fix the deviation and make our four spaces internally comparable for the first time.
Re-running with the correct grader and highest reasoning effort should move Hard up by roughly 5 points and Consensus up by roughly 13 toward the published band. If it does not, that is the signal something else is wrong. If it does, the config is settled.
Full results
Main variants, all six models
| Model | full raw | full adj | hard raw | hard adj | cons. raw | cons. adj |
|---|---|---|---|---|---|---|
| openai/gpt-5.5 | 56.87 | 55.83 | 27.27 | 26.03 | 82.08 | 82.02 |
| anthropic/claude-opus-4-7 | 53.44 | 54.31 | 26.61 | 27.80 | 80.17 | 80.23 |
| openrouter/deepseek-v4-pro | 51.37 | 41.73 | 24.84 | 13.80 | 79.10 | 78.46 |
| vllm/medgemma-27b-text-it | 47.20 | 33.21 | 21.09 | 4.83 | 77.58 | 76.61 |
| openai-api/plamo-3.0-prime | 39.42 | 32.43 | 17.43 | 9.61 | 75.25 | 74.78 |
| vllm/medgemma-4b-it | 26.97 | 18.32 | 10.60 | 1.26 | 71.37 | 70.77 |
| OpenAI published, gpt-5.5 | 58.4 | 56.5 | 33.8 | 31.5 | 95.7 | 95.6 |
Judge: gpt-4.1 for full, gpt-4o-mini for hard and consensus. Epochs 1 throughout. All runs completed with zero errors. Only the full column is grader-comparable to the published row.
Professional subsets, length-adjusted
| Model | consult | writing | research | red team | weighted overall |
|---|---|---|---|---|---|
| anthropic/claude-opus-4-7 | 47.04 | 36.15 | 61.07 | 26.74 | 48.02 |
| openai/gpt-5.5 | 48.64 | 35.96 | 57.92 | 28.19 | 47.81 |
| openrouter/deepseek-v4-pro | 25.59 | 4.95 | 52.91 | −6.87 | 27.66 |
| vllm/medgemma-27b-text-it | 17.78 | 9.13 | 34.40 | −6.80 | 20.09 |
| openai-api/plamo-3.0-prime | 15.36 | −4.31 | 28.58 | −11.82 | 13.74 |
| vllm/medgemma-4b-it | 8.19 | not run | not run | not run | n/a |
| Physician baseline (ours) | 42.54 | 32.91 | 56.60 | n/a | 43.87 |
| Physician baseline (OpenAI) | 42.7 | 32.1 | 56.3 | n/a | 43.7 |
| OpenAI published, gpt-5.5 | n/a | n/a | n/a | n/a | 51.8 |
Red teaming values are shown unclipped so the ordering is visible; the logs report these as 0.00. DeepSeek's consult figure comes from its epochs=1 run, the rest from epochs=8. Weighted overall uses consult 236, writing 142, research 147. Only gpt-5.5 and claude-opus-4-7 beat the physician baseline overall, and both do so narrowly.
How this was checked
The four HuggingFace spaces were cloned and their .eval logs pulled as real LFS blobs (the plain
clone yields 133-byte pointers). Headers gave the declared config; per-sample model events gave the config
actually sent, including which model served every grading call; per-sample scores were re-aggregated
independently to confirm the reported metrics and to recompute the subset breakdowns.
| Space | logs | size | task | samples/run |
|---|---|---|---|---|
| hs-non-professional | 6 | 573 MB | inspect_evals/healthbench | 5000 |
| hs-hard | 6 | 113 MB | inspect_evals/healthbench_hard | 1000 |
| hs-consensus | 6 | 256 MB | inspect_evals/healthbench_consensus | 3671 |
| hs-prof-subsets | 30 | 714 MB | healthbench_professional_* | 525 |
Local copies at /Users/kazuki/Sandbox/hb-spaces/. The hs-original space was excluded,
its link is broken. Reference sources: HealthBench (arXiv:2505.08775),
HealthBench Professional (arXiv:2604.27470), the
GPT-5.6 Preview system card Table 6,
and openai/simple-evals.