Skip to main content
Machine Learning Street Talk

The Benchmark With No Instructions — ARC-AGI-3 (winning team!)

84 min episode · 3 min read
·
No Instructions

Episode

84 min

Read time

3 min

Topics

Productivity, Fundraising & VC, Design & UX

AI-Generated Summary

Key Takeaways

  • Action Efficiency Scoring: ARC-AGI-3 scores agents by squaring the ratio of human baseline actions to AI actions per level, making even slightly inefficient solutions collapse toward zero. A system solving 60-70% of training games can still score only 36% because it takes two to three times more actions than the human median. Optimizing for level completion alone is insufficient — action economy must be a primary design constraint.
  • LLM Game Priors as a Shortcut: Frontier LLMs encode high-level game concepts like mazes, enemies, and goals from pretraining, giving them a significant head start over pure reinforcement learning approaches. Encoding pixel colors as named labels (e.g., "b" for blue, "g" for gray) rather than raw numbers measurably improves performance because it aligns game representations with the model's pretraining distribution, reducing out-of-distribution friction.
  • Brute-Force Prevention by Design: ARC-AGI-3 hardened against the stochastic goose approach that won the preview competition by making the timer bar deplete on any action — not just valid ones — and expanding the action space to over 4,000 mouse-click positions on a 64×64 grid. With games requiring hundreds to thousands of actions, the branching factor makes exhaustive search computationally intractable within competition time limits.
  • Hypothesis Lock-In as the Core Failure Mode: Both coding agents and game-playing agents share the same failure pattern: once they commit to a wrong hypothesis early, they rarely escape it. Agents frequently misidentify goals — treating energy bar depletion or repeated region stepping as win conditions. Harness design should include explicit mechanisms forcing agents to discard and regenerate hypotheses after a fixed number of failed attempts.
  • Requirements-Based Engineering with Coding Agents: The team uses formally numbered requirements with explicit test criteria before handing tasks to coding agents, rather than single-prompt vibe coding. Agents are instructed to flag requirement conflicts during implementation rather than approximate solutions. Post-implementation, agents verify each requirement is satisfied with specific textual evidence — a workflow that reduces hallucinated compliance and maintains code correctness across a rapidly expanding codebase.

What It Covers

The winning team from the ARC-AGI-3 benchmark competition explains how they built a coding-agent harness using frontier LLMs to solve novel video games without instructions. The episode covers action efficiency scoring, LLM game priors, brute-force limitations, requirements-based engineering with AI coding agents, and whether benchmark performance correlates with genuine intelligence.

Key Questions Answered

  • Action Efficiency Scoring: ARC-AGI-3 scores agents by squaring the ratio of human baseline actions to AI actions per level, making even slightly inefficient solutions collapse toward zero. A system solving 60-70% of training games can still score only 36% because it takes two to three times more actions than the human median. Optimizing for level completion alone is insufficient — action economy must be a primary design constraint.
  • LLM Game Priors as a Shortcut: Frontier LLMs encode high-level game concepts like mazes, enemies, and goals from pretraining, giving them a significant head start over pure reinforcement learning approaches. Encoding pixel colors as named labels (e.g., "b" for blue, "g" for gray) rather than raw numbers measurably improves performance because it aligns game representations with the model's pretraining distribution, reducing out-of-distribution friction.
  • Brute-Force Prevention by Design: ARC-AGI-3 hardened against the stochastic goose approach that won the preview competition by making the timer bar deplete on any action — not just valid ones — and expanding the action space to over 4,000 mouse-click positions on a 64×64 grid. With games requiring hundreds to thousands of actions, the branching factor makes exhaustive search computationally intractable within competition time limits.
  • Hypothesis Lock-In as the Core Failure Mode: Both coding agents and game-playing agents share the same failure pattern: once they commit to a wrong hypothesis early, they rarely escape it. Agents frequently misidentify goals — treating energy bar depletion or repeated region stepping as win conditions. Harness design should include explicit mechanisms forcing agents to discard and regenerate hypotheses after a fixed number of failed attempts.
  • Requirements-Based Engineering with Coding Agents: The team uses formally numbered requirements with explicit test criteria before handing tasks to coding agents, rather than single-prompt vibe coding. Agents are instructed to flag requirement conflicts during implementation rather than approximate solutions. Post-implementation, agents verify each requirement is satisfied with specific textual evidence — a workflow that reduces hallucinated compliance and maintains code correctness across a rapidly expanding codebase.
  • Test-Time Training Constraints in Long-Context RL: Applying reinforcement learning to ARC-AGI-3 requires training over sequences of 100,000 to 200,000 tokens per game, far exceeding ARC-AGI-2 norms. The team uses reward shaping across 25-plus procedurally generated games, combining level-transition rewards, ARC score signals, code execution success, and reasoning-step length penalties. Training on shorter sequences and generalizing to longer ones is an active research challenge with no clean solution yet.

Notable Moment

A team member tested an esports professional on one of the ARC-AGI-3 games. The player completed the first level in under three seconds without a single wasted move — demonstrating that specialized human experience creates performance advantages the benchmark's "general intelligence" framing does not fully account for, raising questions about what the human baseline actually measures.

Know someone who'd find this useful?

Episode Transcript

This episode is brought to you by Google Chrome. You think you know a browser, but Gemini and Chrome? That's new. It can help you with practically anything on the web, like restoring a vintage motorcycle from a 50 page restoration blog, or finally break down that long article you've had open for weeks, Gemini and Chrome is here for it. Ready to make anything online make sense? There's no place like Chrome. Check responses set up required compatibility and availability varies 18 plus. Experience a membership that backs what you're building with American Express Business Platinum. Get two times membership rewards points per dollar on eligible purchases in key business categories, as well as on each eligible purchase of $5,000 or more on up to $2,000,000 in eligible purchases per calendar year. American Express Business Platinum. There's nothing like it. Terms apply. Learn more at americanexpress.com/business-platinum. But we have the benefit of millions of years of evolution. Right? So it's almost a bit unfair that we're expecting AI algorithms to be able to do all of that. Exactly. I think it boils down to one of the big open questions in the field, like, is language critical to intelligence? Yeah. I will say, let's say, at least when I'm playing the games myself, and I think that goes for all of us, I'm using language. My name is Johan Cortard. I have a background in physics and mathematics. And I've been working in the industry for about fifteen years, with the last five years specializing more towards AI. It was immediate to him what the goal was. He recognized the pattern. And I showed him the game. Within three seconds, he finished the first level. Often, the agents start thinking that reducing the energy bar to the minimum is the goal or that stepping 10 times in a region is the goal, which for a human is kind of clear that that it's not the actual goal. My name is Stefano. I study computer science machine learning. I did some research in reinforcement learning at EPFL. I guess the million dollar question, though, is do you think it's possible in principle to do really well on ArcGIS three and be no closer to EdgeWire? Yes. I do think it is possible. I don't know. Yeah. I guess the main idea is a bunch of, bright people in the room and do good research together. The transformers can't plan, but they they can do a very good job of pretending, essentially. That is, in a sense, indistinguishable. 36% might be misleading as a number if you don't look behind it. So what it really measures is action efficiency. My name is Didis Smith. I studied electrical and electronic engineering. I specialized in reinforcement learning for the past five or six years now, and I've been doing on the research side, ARC AGI two and three and also some quant work in between. Yes. Perhaps that tells something about the benchmark. …

Get the full transcript (17,126 words) + summary by email — free

One-time email with the complete transcript and AI summary of this episode. No account needed.

One email, no spam. We’ll also show you what SignalCast does.

Browse all Machine Learning Street Talk transcripts →

You just read a 3-minute summary of a 81-minute episode.

Get Machine Learning Street Talk summarized like this every Monday — plus up to 2 more podcasts, free.

Pick Your Podcasts — Free

Keep Reading

Books, tools, and gear mentioned in this episode

SignalCast may earn commission on purchases via these links. As an Amazon Associate, SignalCast earns from qualifying purchases.

Tools

  • by Google

    SPONSORS: ["Google Chrome", "https://chrome.google.com"]

Products

More from Machine Learning Street Talk

We summarize every new episode. Want them in your inbox?

Similar Episodes

Related episodes from other podcasts

Explore Related Topics

This podcast is featured in Best AI Podcasts (2026) — ranked and reviewed with AI summaries.

You're clearly into Machine Learning Street Talk.

Every Monday, we deliver AI summaries of the latest episodes from Machine Learning Street Talk and 192+ other podcasts. Free for one show.

Start My Monday Digest

No credit card · Unsubscribe anytime