r/artificial highlights ATLAS reaching 74.6% LiveCodeBench on a $500 GPU
Original: Open-source AI system on a $500 GPU outperforms Claude Sonnet on coding benchmarks View original →
r/artificial pushed ATLAS into view because it argues that better inference infrastructure can close more of the performance gap than people expect. The project's README says ATLAS V3 reaches 74.6% pass@1 on LiveCodeBench v5 using a frozen 14B Qwen model on a single RTX 5060 Ti 16 GB card, with no fine-tuning, no API calls, and no cloud inference.
The important nuance is that ATLAS is not claiming a tiny model suddenly becomes a frontier model in one shot. Its score comes from a pipeline: PlanSearch extracts constraints and generates diverse approaches, a “Geometric Lens” ranks candidates, sandboxed execution tests them, and a self-verified repair stage tries to fix failures before the final submission. The README says this best-of-3 plus repair process lifted the benchmark from a 54.9% baseline to 74.6%.
- The repository reports the result on 599 LiveCodeBench tasks with a frozen
Qwen3-14B-Q4_K_Mmodel. - Its cost estimate is about
$0.004per task in local electricity, compared with much higher API-priced reference systems in the same table. - The authors say the tradeoff is latency: harder tasks can take minutes because the system spends compute budget on search, scoring, and repair rather than a single forward pass.
That tradeoff is exactly why the Reddit post resonated. A lot of “local beats frontier” claims blur the difference between raw model quality and system design. ATLAS is more explicit: it tries to win by orchestrating a frozen model better, not by pretending the base checkpoint is secretly stronger than it is. The repo even notes the comparison table is not a controlled head-to-head because public competitor numbers come from different task sets and single-shot evaluation.
Even with that caveat, ATLAS is an interesting signal. It suggests that consumer-hardware coding systems may keep improving through planning, verification, and repair loops before they improve through larger local checkpoints alone. That is a meaningful theme for the broader open-source community, especially for teams that care about privacy, predictable cost, and keeping data off third-party APIs.
Primary source: ATLAS repository. Community source: r/artificial thread.
Related Articles
Open coding agents are maturing around harnesses, protocols, and SDK compatibility. OpenInterpreter says its Kimi K3 native harness is written in Rust, Apache licensed, and compatible with ACP and the Codex SDK.
A Hacker News post pushed ATLAS into the spotlight by framing a consumer-GPU coding agent as a serious cost challenger to hosted systems. The headline benchmark is interesting, but the repository itself makes clear that its 74.6% result is not a controlled head-to-head against Claude 4.5 Sonnet because the task counts and evaluation protocols differ.
The new Claude default for high-end daily work shifts the model race toward performance per dollar. Anthropic says Opus 5 approaches Claude Fable 5 on coding and knowledge work while keeping API pricing at $5/M input and $25/M output tokens.