Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions dev/scripts/check_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
FULL_BATTERY = "docs/claims/battery_full_20260811_qwen3.json"
PHYSICS = "docs/claims/battery_physics_20260811_qwen3.json"
CALCPHYS = "docs/claims/battery_calcphys_20260811_qwen3.json"
ALL_SIX = "docs/claims/battery_all6_20260811_qwen3.json"

# (file, extractor, expected, tolerance, label)
#
Expand Down Expand Up @@ -507,6 +508,23 @@
0.15,
"calculus and extended physics land above five in six",
),
(
ALL_SIX,
# The whole battery in one run: 58 gradeable questions across six
# domains, one sitting, one model. The number the README's positioning
# rests on when someone asks "measured against what?"
lambda d: d["correct_rate"],
0.91,
0.10,
"the full six-domain battery lands at nine in ten",
),
(
ALL_SIX,
lambda d: float(d["errors"]),
0.0,
0.0,
"and no run in it errored",
),
(
QWEN_SELECT,
# And it does the job it exists for: a value computed exactly and then not
Expand Down
Loading
Loading