| # | Model | Score | Steps | In tok | Out tok | Avg cost | Avg time |
|---|---|---|---|---|---|---|---|
| 1 | Claude Fable 5.1 | 0.2829 ±0.075 | 457 | 144.5M | 316k | $78.81 | 14.2h |
| 2 | Qwen3.8-Max | 0.0348 ±0.043 | 488 | 82.9M | 779k | $34.01 | 19.6h |
| 3 | GLM-5.3 | 0.0343 ±0.012 | 443 | 182.6M | 353k | $82.22 | 19.0h |
| 4 | Grok 4.6 | 0.0341 ±0.050 | 544 | 125.0M | 942k | $151.43 | 15.9h |
| 5 | DeepSeek V4 Flash Exp | 0.0277 ±0.027 | 579 | 216.4M | 447k | $3.74 | 17.4h |
| 6 | Kimi K3 | 0.0270 ±0.024 | 483 | 146.1M | 383k | $54.88 | 19.8h |
| 7 | GPT-5.6 | 0.0241 ±0.054 | 299 | 80.1M | 123k | $76.20 | 10.8h |
| 8 | Inkling | 0.0186 ±0.022 | 248 | 26.2M | 75k | $25.15 | 1.8h |
| 9 | Gemini 3.7 Flash | 0.0128 ±0.007 | 246 | 47.9M | 237k | $9.88 | 4.0h |
| 10 | Muse Spark 1.2 | 0.0063 ±0.007 | 324 | 86.0M | 371k | $41.48 | 11.1h |
Driving a race car from pixels alone is a classic hard problem in embodied AI: the policy must infer speed, track position, and upcoming curvature from a single forward camera (no speedometer, no track sensors, no HUD) and turn that into steering, throttle, and brake commands fast enough to hold a racing line. Doing it on tracks the policy has never seen rules out memorizing any one circuit; the solution has to generalize.
The task builds on a patched, headless build of the TORCS racing simulator with a lock-step control loop: the engine blocks for the bot's action each step and runs faster than real time, so the agent can roll out thousands of episodes to hand-tune a controller, collect data, or train a model; the approach is entirely open.
The agent must implement act(obs) in /app/bot.py: a policy that takes the camera observation and returns driving controls, completing laps as fast as it can, including on tracks it has not seen.
obs["frame"], a 480×640 RGB forward road camera image; speed, track position, and lap progress must be inferred from the pixels.steer in [-1, 1] plus accel and brake in [0, 1]; gear and clutch are automatic.A workspace at /app with the bot.py stub, a Gymnasium-style harness (game_harness) that runs the sim headless with reset/step/restart, a runner (python3 /app/run_bot.py), a minimal demo (harness_demo.py), a sample camera frame, and /app/README.md documenting the observation/control interface and episode rules. Five practice tracks are available in the sandbox (g-track-1, eroad, ruudskogen, aalborg, alpine-1); the evaluation tracks are not among them. The image preinstalls numpy, scipy, scikit-image, Pillow, OpenCV, and torch with torchvision, and the box has an A10G GPU for training. The machine is offline.
A clean-room verifier in a separate container restores the harness from a root-only pristine copy (keeping the agent's own files), unlocks two held-out tracks that never appear in the agent workspace (corkscrew and street-1) and races the bot 3 times on each, de-rooted as the non-root agent user with pixels-only observations. Scoring reads only root-written telemetry from the verifier's own harness, never anything the agent wrote.
| Base image | ubuntu:22.04 |
| Tools available | CUDA, PyTorch, C/C++ toolchain, Python 3 |
| Compute | 8 CPUs · 16 GB RAM |
| GPU | 1× A10G |
| Time limit | 20h |
torcs/ subtree and three engine patches (main-menu skip, countdown removal, a shared-memory frame channel) plus pre-configured race XML. Because the repository publishes no license, none of its original authored material is redistributed: its README and Dockerfiles were removed; what remains is derivative work of GPL-2.0 TORCS, redistributed under GPL-2.0-or-later.