HealthBench · config sanity check · v2
HealthBench config check: our 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.
v2 update: the DeepSeek Professional re-run
Ajay re-ran HealthBench Professional for DeepSeek on 2026-08-06 and published it as its own space,
ajay-citadel/healthbench-professional-deepseek-v4-pro. It is the first run that addresses
anything on the what to change list, so this version of the report folds it in and
corrects the numbers it supersedes. Everything else in v1 stands unchanged.
The re-run is a single combined task over all 525 examples rather than five separate subset tasks,
which is what OpenAI's reference implementation does. That removes the manual sample-weighting v1 had to
apply, and it gives DeepSeek a genuine consult run for the first time.
| DeepSeek v4 Pro, Professional | v1 (hs-prof-subsets) | v2 (re-run) | Δ | note |
|---|---|---|---|---|
| Overall, length-adjusted | 27.66 | 30.99 | +3.3 | v1 was stitched from subsets; v2 is native |
| Overall, unadjusted | n/a | 37.81 | — | not computable from v1 subsets |
| Care consult | 25.59 | 31.83 | +6.2 | v1 figure was a cache replay, see below |
| Writing and documentation | 4.95 | 6.70 | +1.8 | agrees within sampling noise |
| Medical research | 52.91 | 53.10 | +0.2 | agrees |
| Red teaming (unclipped) | −6.87 | −5.19 | +1.7 | still floored to 0.00 in the log |
| Mean response length (chars) | 3069–5665 | 4320 | — | vs 3818 for gpt-5.5 in OpenAI's table |
The v1 sample-weighted arithmetic checks out against the native number: (236×31.83 + 142×6.70 +
147×53.10) / 525 = 30.99, exactly the re-run's own bootstrap_score. So the stitching method
v1 used was sound; the 3.3-point move comes entirely from the consult subset being re-generated rather than
replayed. DeepSeek does not change rank — it stays third behind claude-opus-4-7 (48.02) and gpt-5.5 (47.81).
What the re-run fixed, and what it did not
| v1 finding | status in the re-run | evidence |
|---|---|---|
| DeepSeek consult had no real epochs≥1 run of its own | fixed | 967k output tokens billed to deepseek; the v1 epochs=1 logs report zero model usage |
Duplicate, conflicting DeepSeek entries in listing.json | fixed | one log, one task, its own space |
| Grader config implicit (relied on the package default) | fixed | judge_model: openai/gpt-5.4, judge_reasoning_effort: low now explicit in task_args |
| Headline metric should be length-adjusted | already ok | use_length_adjusted: true on the primary metric |
| Samples per example should be 8 | not fixed | epochs: 1. Bootstrap std is 2.8 points on a 31-point score |
| Reasoning effort should be the highest available | not fixed | generate config is {cache: true}; 69.7% of samples reasoned, at DeepSeek's own default |
| Per-use-case subscores are inflated | not fixed | reproduced exactly, and the mechanism is now pinned — see issue 4 |
Sanity checks run against the new log 525 samples, 0 errors
reported bootstrap_score 0.3099 # length-adjusted recomputed mean(adjusted) 0.3099 # match recomputed mean(unadjusted) 0.3781 # matches the log's own mean metric bootstrap 1000x, own resample 0.3104 +/- 0.0283 # log: 0.3099 +/- 0.0279 criteria_met_rate 0.5921 # match; 1135 criteria over 525 samples length adjustment: adj = raw - 0.0147 * ((chars - 2000) / 500) mismatches over 525 samples 0 # arithmetic verified per sample served model deepseek/deepseek-v4-pro # matches requested, no silent substitution judge served gpt-5.4-2026-03-05 # 1135 calls, one per rubric criterion judge config {system_message: "You are a helpful assistant.", temperature: 0.0, reasoning_effort: "low"} # matches OpenAI's internal reference candidate config {cache: true} # no reasoning effort passed rubric coverage 1135 graded / 1135 in dataset metadata # no criteria dropped unique prompt ids 525 / 525 empty completions 0 mean chars 4320 median 4053 p99 11620 max 17982 frac. samples with length-adjusted score < 0 0.303
The one number worth watching is that last line: 30% of DeepSeek's Professional responses score below zero once the length penalty applies, against 16.4% for the physician baseline. DeepSeek averages 4320 characters where the penalty centre is 2000, so it is paying about 6.8 points of pure verbosity tax. That is a real property of the model under this metric, not a config error, but it does mean DeepSeek's Professional score is unusually sensitive to the length-adjustment constant.
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 | ds-v4-pro re-run v2 |
|---|---|---|---|---|---|---|
| Grader model | gpt-4.1 / gpt-5.4 low | gpt-4.1 | gpt-4o-mini | gpt-4o-mini | gpt-5.4 low | gpt-5.4 low |
| Grader system msg | "You are a helpful assistant." | same | same | same | same | same |
| Length adj. center | 2000 chars | 2000 | 2000 | 2000 | 2000 | 2000 |
| Length adj. penalty | 2.99 / 3.92 / 0.20 / 1.47 | 0.0299 | 0.0392 | 0.002 | 0.0147 | 0.0147 |
| Per-sample clipping | none (mean is clipped) | none | none | none | subscores clipped | subscores clipped |
| Dataset size | 5000 / 1000 / 3671 / 525 | 5000 | 1000 | 3671 | 525 | 525 |
| Samples per example | 1 (main), 8 (Prof) | 1 | 1 | 1 | 8 1 for deepseek | 1 |
| Reasoning effort | highest available | unset | unset | unset | unset | unset |
| Headline metric | length-adjusted | unadjusted | unadjusted | unadjusted | length-adjusted | length-adjusted |
| Task shape | one benchmark | one task | one task | one task | 5 subset tasks | one task |
| Bootstrap resamples | 1000 | 1000 | 1000 | 1000 | 1000 | 1000 |
v2: the re-run column is DeepSeek only. It closes the task-shape and explicit-grader gaps and leaves the two that matter most for score comparability — samples per example and reasoning effort — exactly where they were.
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.
mean(clip(unadjusted score, 0, 1)). So the subscores are not a clipped version of the
headline metric — they ignore the length adjustment entirely, despite the run declaring
use_length_adjusted: true, and then clip per sample on top. Both errors push the same way.
| DeepSeek re-run, by slice | as reported in the log | mean(clip(raw)) | mean(clip(adj)) | correct (mean adj) | inflation |
|---|---|---|---|---|---|
| Care consult | 46.05 | 46.05 | 42.70 | 31.83 | +14.2 |
| Writing and documentation | 35.43 | 35.43 | 32.42 | 6.70 | +28.7 |
| Medical research | 66.60 | 66.60 | 57.00 | 53.10 | +13.5 |
| Red teaming | 24.94 | 24.94 | 23.98 | −5.19 | +30.1 |
| Difficult | 28.67 | 28.67 | 27.38 | 3.51 | +25.2 |
| Typical | 70.23 | 70.23 | 61.30 | 59.86 | +10.4 |
The mean(clip(raw)) column matches the reported column exactly, to six decimals, on all ten subset
metrics the log emits — there is no bootstrap noise in these numbers at all. Red teaming is the clearest
illustration of the damage: the log presents it as 24.94 when the correctly aggregated value is
−5.19, a 30-point swing that flips the slice from mediocre to negative.
The same error was present in the v1 spaces; it was simply harder to characterise there, because the physician-baseline responses are short enough that the adjusted and unadjusted scores nearly coincide.
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. v2: on the physician baseline the clipped-raw and clipped-adjusted columns are within 0.002 of each other, which is why v1 could not tell them apart and read the ~0.3 residual as bootstrap noise. The DeepSeek re-run resolves it: the formula is clipped raw.
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 · superseded in v2
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.
v2 update, and one thing v1 got wrong. The 2026-07-25 epochs=1 batch was worse than
under-sampled: it made no model calls at all. Every one of those five logs reports an empty
model_usage, meaning both the candidate generations and the grader responses were served from
Inspect's response cache. They are cache replays of an earlier run, not independent runs, which is why they
completed in seconds. v1 read the close agreement between the epochs=1 and epochs=8 variants as reassuring;
it was tautological. The 2026-08-06 re-run is a genuine run — 967k output tokens
billed to DeepSeek, 476 cached input tokens — and it moves consult from 25.59 to 31.83. The
duplicate-entry and no-real-consult-run problems are resolved. Epochs is still 1, so the
under-sampling itself is not.
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 v2 re-run | 31.83 | 6.70 | 53.10 | −5.19 | 30.99 |
| openrouter/deepseek-v4-pro (v1, superseded) | 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. 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.
v2: the DeepSeek row now comes from the 2026-08-06 single-task re-run, whose 30.99 is a native overall rather than a weighted stitch. Its subset figures are recomputed from per-sample data, not read off the log's own subset metrics, which are inflated — see issue 4. The superseded v1 row is kept for traceability: its consult and writing figures came from the 2026-07-25 cache replay, and its research and red-teaming figures from the 2026-07-24 epochs=8 runs. Every other model's row is still epochs=8 and unchanged, so DeepSeek is the only single-sample row in this table.
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 |
| healthbench-professional-deepseek-v4-pro v2 | 1 | 10 MB | healthbench_professional | 525 |
Local copies at /Users/kazuki/Sandbox/hb-spaces/. The hs-original space was excluded,
its link is broken. The v2 space's .eval was fetched over the HuggingFace
resolve/main endpoint rather than git lfs pull, since git-lfs is not installed on
this machine; the file is a valid zstd-compressed Inspect log and reads cleanly. Reference sources: HealthBench (arXiv:2505.08775),
HealthBench Professional (arXiv:2604.27470), the
GPT-5.6 Preview system card Table 6,
and openai/simple-evals.