Talk Session 2: AI Systems
Unified Orchestration System for Verifier-Free Evolution
Ben Athiwaratkun — Senior Director, Core ML (Turbo), Together AI
Strip the external verifier out of evolutionary search and a single model degrades its own solutions — it simply doesn't carry enough entropy. Squeeze Evolve's answer is to run one evolution loop across multiple heterogeneous models, routing hard solutions to expensive models and easy ones to cheap models, which fixes diversity and cost at once: 97.5% on ARC-AGI in fewer evolution steps at meaningfully lower cost per task.
TL;DR
- The problem is that verifiers are expensive. Existing discovery frameworks generally require an external verifier, but in domains like the physical sciences evaluation is both costly and time-consuming. Their question: what is the upper bound of an evolution system with no verification in the loop — and can it also be cheaper?
- Single-model evolution degrades itself. Running evolution with one model often makes performance worse, because a single model carries only so much entropy and creativity. The fix is to make the evolution loop multi-model, using model heterogeneity itself as the source of diversity.
- Routing by difficulty buys diversity and cost efficiency simultaneously. Using token log-probabilities or solution diversity as the fitness function, hard solutions go to expensive models and solutions easy enough to evaluate and combine go to a cheap one. Result: on ARC-AGI, 10 evolution steps with a strong model reach 97.5% at roughly $7/task; mixing in a cheap model retains the same accuracy in just 2 evolution steps at about $5.9/task.
Key Points
Four components of the discovery loop, and the verifier cost problem (~00:41:53–00:44:20)
Ben Athiwaratkun presented Squeeze Evolve, a unified multi-model orchestration system for verifier-free evolution, aimed at scientific discovery.
He opened by decomposing the discovery loop — a decomposition taken from SkyDiscover — into four distinct components:
- Context builder — supplies problem context and injects ideas, guidance, and reflections on previous mistakes and successes into the prompt.
- Solution generator — an LLM with access to environments such as code execution or web lookup.
- Evaluator — provides scores, logs, feedback, and any necessary artifacts.
- Solution selector — picks sample solutions from the candidates and their metadata to hand back to the context builder for the next loop.
The catch: prior discovery frameworks generally require an external evaluator or verifier, and in fields like the physical sciences evaluators are costly and time-consuming. Hence the research question: what is the upper bound of an evolution system without verification in the loop, and can cost come down too?
Why multiple models: the degradation problem (~00:44:20–00:46:00)
The other characteristic failure of evolution systems is degradation of solutions (~00:44:31). His summary was blunt: using a single model to run evolution often degrades performance, because there is only so much entropy and only so much creativeness in a single model. Their answer: use multiple models to attack the diversity problem directly.
Mechanically, multiple solutions and generations are sampled from previous and current generations and assigned probabilistic fitness scores. The fitness function uses token log-probabilities or the diversity of the solutions themselves (~00:45:12).
The routing rule is simple:
- Difficult solutions → expensive models, to raise diversity.
- Solutions judged easy enough to evaluate and combine → a cheaper model (~00:45:47).
That single split increases diversity and cost effectiveness at the same time, which is the design idea at the heart of the method.
Results: fewer steps, same accuracy, lower cost (~00:46:00–00:47:58)
The headline numbers (~00:46:11): the full pipeline with 10 evolution steps using a strong model (heard in the captions as Gemini 3.1 Pro) reaches 97.5% accuracy on ARC-AGI at roughly $7 per task. Mixing in a cheap model (heard as Gemini 3.0 Flash), they retain the same accuracy with only 2 evolution steps at about $5.9 per task.
A second observation concerns vision tasks: not using the vision component for the aggregator stage significantly improves cost effectiveness. The red curve on his chart shows a strong multimodal model used throughout — performance climbs high, but cumulative dollars per problem climb proportionally. Under Squeeze Evolve, combining a powerful model with a cheaper tier cuts cost substantially, and in some heterogeneous configurations they outperform the single-model scenario outright.
He closed with two adoption notes: the work has been integrated into NVIDIA Dynamo (with a shout-out to NVIDIA), and a Claude Code plugin is available.
Quotes
"If we use a single model to perform evolution, it is often the case degrading the performance, because there's only so much entropy and only so much creativeness in a single model." (~00:44:35)
Diversity isn't something you tune into a single model; you buy it with heterogeneity.
"In the scenario where we use a cheap model in the mix … we're able to retain the same accuracy with only two evolution steps." (~00:46:25)
Mixing in the cheap model didn't just cut cost — it cut the number of evolution steps needed.
"In the heterogeneous case we're able to outperform the single model scenario." (~00:47:25)
The heterogeneous mix isn't only cheaper; sometimes it beats the strongest single model.
提到的專案與資源 / Projects & Resources
| 名稱 Name | 說明 | Description | 備註 Notes |
|---|---|---|---|
| Squeeze Evolve | 本演講主題:免驗證器演化的多模型統一編排系統 | The talk's subject: unified multi-model orchestration for verifier-free evolution | 已查證:arXiv 2604.07725,GitHub squeeze-evolve/squeeze-evolve |
| SkyDiscover | AI 驅動的科學/演算法探索框架,本講的四零件拆解取自此 | Framework for AI-driven scientific and algorithmic discovery; the four-component decomposition comes from it | 已查證:UC Berkeley Sky Lab 出品 |
| ARC-AGI | 主要評測對象;論文中為 ARC-AGI-V2 | Primary benchmark cited; the paper reports ARC-AGI-V2 | 論文載明 97.5%、$7.74/題(不含程式碼執行) |
| NVIDIA Dynamo | Squeeze Evolve 已整合進去的推論框架 | Inference framework into which Squeeze Evolve has been integrated | |
| Claude Code plugin | 現場提到的可用外掛 | Plugin mentioned as available | 逐字稿 "cloud code plug-in" |
逐字稿勘誤 / Transcript Corrections
| 字幕原文 Heard as | 應為 Should be |
|---|---|
| Ben(僅名) | Ben Athiwaratkun |
| squeeze evolve | Squeeze Evolve |
| sky discover | SkyDiscover |
| verifier free | verifier-free |
| ARC AGI | ARC-AGI |
| cloud code plug-in | Claude Code plugin |
| log token probabilities | token log-probabilities(講者當場自我修正) |
| multimodel model | multimodal model |
待確認 / To Verify
- 演講中的模型版本:逐字稿聽為 "Gemini 3.1 Pro" 與 "Gemini 3.0 zero flash",自動字幕在版本號上錯誤率高,需看投影片確認。/ Model versions heard as "Gemini 3.1 Pro" and "Gemini 3.0 Flash" — auto-captions are unreliable on version numbers; confirm from slides.
- 講者口述成本為 $7 與 $5.9 每題,論文載明 ARC-AGI-V2 為 $7.74/題,兩者對應關係與是否為同一組實驗待確認。/ He said ~$7 and ~$5.9 per task; the paper reports $7.74/task on ARC-AGI-V2 — confirm whether these are the same experiment.
- ARC-AGI 的版本(V1 或 V2):講者只說 "ARC AGI",論文為 ARC-AGI-V2。/ ARC-AGI version — he only said "ARC AGI"; the paper uses ARC-AGI-V2.
- Claude Code plugin 的名稱與取得位置未在逐字稿中出現。/ The name and location of the Claude Code plugin never appear in the transcript.