INQUIRING LINE

When checking an AI's answer is far cheaper than producing one, does it just polish old solutions or find new ones?

How do cheap evaluators like verifiers change discovery versus optimization?

This explores what changes when checking an answer becomes much cheaper than producing one: does the AI only get better at polishing solutions we already have (optimization), or does it start finding things nobody had (discovery)?


This explores what changes when checking an answer is far cheaper than producing one, and whether that just polishes known solutions or lets AI find new ones. The corpus suggests the two blur together. A cheap, objective checker is what makes discovery feasible, because it lets a generate-and-test loop run long enough to pay off. AlphaEvolve is the clearest case. Automated evaluators sustained an evolutionary loop long enough to produce faster algorithms, better hardware designs and improved training methods, and the key was that cheap, objective verification closes the gap between generating candidates and knowing which are good Can machine feedback sustain discovery at test time?. Optimization is climbing toward a known target. Discovery is the same climb run long enough, with enough variety, that it lands somewhere you didn't plan for.

The Darwin Gödel Machine shows how the evaluator shapes that climb. It replaces formal proofs of improvement with plain empirical benchmarking, and it keeps an archive of agent variants rather than only the current best. The result is open-ended self-improvement, including capabilities like better code editing and context management that nobody specified up front Can AI systems improve themselves through trial and error?. The same asymmetry works at a smaller scale inside a single research task. AREX nests an outer audit loop around an inner research loop. It finds which constraints of the answer are still unresolved and sends targeted follow-up work at them, which beats simply searching longer down one path Should research agents verify answers before searching longer?. Here the cheap check is what stops early mistakes from persisting.

The catch is that all of this works where checking is possible. A 3B model reaches frontier-level scores on hard math and coding benchmarks, and the note says outright that this is bounded to verifiable tasks where reinforcement learning gets clean reward signals Can small models match frontier reasoning without massive scale?. Outside that boundary, language models generate plausible candidates but can't reliably judge their value or their own uncertainty. One line of work fixes this by pairing them with a surrogate model fitted to real experimental data Can language models reliably judge their own candidate quality?. A competing approach drops the external checker and uses the model's own token probabilities and confidence as the reward, which extends reasoning training to domains without answer keys Can model confidence alone replace external answer verification?. These two results pull in different directions on whether a model can be trusted to grade itself.

The cheap evaluator is also a dial you can turn. Verification accuracy improves independently of training, through finer score granularity, repeated evaluation and breaking criteria into parts. That reframes weak verifiers as under-scaled rather than fundamentally limited Can verification accuracy scale without training models?. Reward models that reason before scoring raise the ceiling of what can be evaluated Can reward models benefit from reasoning before scoring?. Agent-based judges that collect evidence cut judge shift from 31% to 0.27% against plain LLM judges, though a memory module that cascaded errors shows the evaluator can fail too Can agents evaluate AI outputs more reliably than language models?. Verifiers can run alongside generation at near-zero latency cost Can verifiers monitor reasoning without slowing generation down?. An inference-scaled reviewer even caught math errors that passed human review at top venues Can inference scaling help reviewers catch errors humans miss?. Each improvement widens the set of problems where discovery-by-search is affordable.

The corpus is thin on what happens when the evaluator is wrong or gameable. Every result above assumes the checker is trustworthy, and the loop can only find what the checker can recognize. So a better verifier decides which problems can be searched at all, and that matters as much as making discovery cheaper.


Sources 11 notes

Can machine feedback sustain discovery at test time?

AlphaEvolve demonstrates that automated evaluators can sustain evolutionary loops long enough to produce real discoveries—faster algorithms, optimized hardware designs, and improved training methods. The key is that cheap, objective verification closes the generation-verification gap where discovery becomes computationally feasible.

Can AI systems improve themselves through trial and error?

DGM replaces formal proofs with empirical benchmarking and maintains an evolutionary archive of agent variants, achieving 2.5× improvement on SWE-bench and 2.2× on Polyglot by discovering capabilities like better code editing and context management.

Should research agents verify answers before searching longer?

AREX exploits the discovery-verification asymmetry by nesting an inner research loop with an outer audit loop that identifies unresolved constraints and launches targeted follow-up work. This constraint-directed refinement outperforms extending a single search trajectory because it prevents early errors from persisting and avoids revisiting exhausted directions.

Can small models match frontier reasoning without massive scale?

A 3B model trained with curriculum SFT and multi-domain RL reaches 94.3 AIME26 and 80.2 LiveCodeBench scores matching much larger systems. The result is bounded to verifiable tasks with checkable ground truth, where RL can provide clean reward signals.

Can language models reliably judge their own candidate quality?

LLMs excel at generating valid candidates in structured spaces but cannot reliably assess their true value or uncertainty. Coupling them with Gaussian process surrogates fitted to real experimental data creates uncertainty-aware guidance for discovery.

Show all 11 sources
Can model confidence alone replace external answer verification?

RLPR and INTUITOR successfully extend reinforcement learning for reasoning to general domains by using the model's own token probabilities and confidence levels as reward signals, eliminating the need for external verifiers or reference answers.

Can verification accuracy scale without training models?

Research shows verification accuracy improves independently via score granularity, repeated evaluation, and criteria decomposition—all deployable at inference without retraining. This reframes weak verifiers as under-scaled rather than fundamentally limited.

Can reward models benefit from reasoning before scoring?

Three independent teams (RRM, RM-R1, DeepSeek-GRM) discovered that adding chain-of-thought reasoning before reward scoring enables adaptive test-time compute scaling for evaluation. Reasoning-based approaches raise the capability ceiling of reward models beyond what outcome-based evaluation achieves.

Can agents evaluate AI outputs more reliably than language models?

Eight-module agentic evaluation achieved 0.27% judge shift versus 31% for LLM-as-a-Judge on complex tasks. However, the memory module cascaded errors, revealing that agentic systems need error isolation mechanisms to maintain gains.

Can verifiers monitor reasoning without slowing generation down?

Decoupling verification from generation lets verifiers run alongside a single trace, forking to extract verifiable state and intervening only on violations. On correct runs the latency penalty is near-zero; interwhen matches or beats CoT across benchmarks at similar token budgets.

Can inference scaling help reviewers catch errors humans miss?

PAT, an agentic reviewer using test-time compute to check proofs and experiments line by line, achieves 34% better recall on math errors than zero-shot approaches and surfaced critical flaws at STOC and ICML that passed human review.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.