| # | Model | Score | Steps | In tok | Out tok | Avg cost | Avg time |
|---|---|---|---|---|---|---|---|
| 1 | Claude Fable 5.1 | 0.8369 ±0.053 | 253 | 77.2M | 322k | $46.43 | 4.6h |
| 2 | GLM-5.3 | 0.4371 ±0.154 | 483 | 217.2M | 576k | $69.06 | 16.6h |
| 3 | Kimi K3 | 0.4198 ±0.122 | 423 | 148.4M | 427k | $59.05 | 14.8h |
| 4 | Grok 4.6 | 0.2653 ±0.205 | 163 | 31.1M | 358k | $32.22 | 3.2h |
| 5 | Gemini 3.7 Flash | 0.2262 ±0.331 | 179 | 31.6M | 273k | $4.93 | 1.4h |
| 6 | GPT-5.6 | 0.1334 ±0.212 | 242 | 45.3M | 182k | $36.56 | 2.5h |
| 7 | Muse Spark 1.2 | 0.0515 ±0.050 | 315 | 99.6M | 492k | $22.74 | 4.5h |
| 8 | Qwen3.8-Max | 0.0000 ±0.000 | 488 | 142.7M | 1.2M | $43.60 | 18.3h |
| 9 | DeepSeek V4 Flash Exp | 0.0000 ±0.000 | 474 | 203.2M | 574k | $3.68 | 15.3h |
| 10 | Inkling | 0.0000 ±0.000 | 126 | 5.3M | 37k | $5.22 | 0.9h |
Astrometry is the problem of figuring out exactly where on the sky a telescope image points. Blind plate solving, recovering a World Coordinate System (WCS) with no prior pointing hint, means extracting stars from noisy pixels, matching their geometric patterns against a full-sky reference catalog, and fitting a projection that maps pixels to celestial coordinates, all while handling rotation, unknown plate scale, vignetting, and survey-to-survey differences in depth and resolution.
Production solvers took years of engineering to make this robust. Here the agent must build one from scratch that generalizes across surveys: the development suite spans native and cropped SDSS frames, deliberately degraded observations, a coarse mixed optical/infrared campaign, and a synthetic field that can only be solved by genuinely blind search over the full-sky Gaia DR3 catalog.
Implement /app/astrometry/localize.py, invoked without network access as python /app/astrometry/localize.py --input-dir /path/to/campaign --output-dir /path/to/output. Each campaign supplies a campaign.json, FITS images, and a star catalog that may be a small field-local extract or the 1.35 GB full-sky Gaia catalog.
wcs/<image_id>.json for every image: a TAN celestial projection with ctype, crpix, crval, and a 2×2 cd matrix.registrations.jsonwith one 3×3 pixel-to-pixel transform per unordered overlapping image pair (no duplicate inverse entries).mosaic.fits (a finite two-dimensional image with a celestial WCS header) plus a run_summary.json.An example campaign at /app/example_campaign/ and five public development campaigns under /app/development_suite/campaigns/, each with public truth (truth/truth.json) containing reference WCS parameters and catalog samples with expected pixel coordinates: native SDSS frames, clean offset crops, degraded crops with noise and vignetting, a coarse mixed-survey campaign of rotated optical and infrared observations, and a synthetic star field wired to the full-sky catalog.
/data/astrometry/.python /app/astrometry/validate_outputs.py, that verifies artifact schemas without estimating scientific quality.A root-only verifier runs the submitted solver as the unprivileged agent user on sealed real campaigns covering sky fields never shown to the agent, plus a metamorphic exact-invariance case: a transformed copy of a sealed campaign that must produce equivalent results, catching solvers that key on incidental identifiers. Solver syscalls are audited with strace for network, reward, or hidden-truth access.
| Base image | python:3.13-slim-trixie |
| Tools available | Python 3 |
| Compute | 16 CPUs · 128 GB RAM |
| Time limit | 20h |