INQUIRING LINE

An AI trying to improve itself needs a reliable judge — but on open-ended tasks, that judge is just itself.

Why do most self-improving systems fail when given tasks with no clear external benchmark?

This explores why self-improving AI systems tend to stall or collapse on open-ended tasks (writing, proofs, general reasoning) where there's no ground-truth grader to say 'right' or 'wrong' — and what the corpus says actually breaks.


This explores why self-improving systems tend to stall on open-ended tasks with no external grader — and the corpus points to a single structural culprit rather than an engineering shortfall. The clearest statement is the generation-verification gap: a model can only reliably improve itself when it can *check* an answer better than it can *produce* one What limits how much models can improve themselves?. On tasks with a clear benchmark (does the code pass the tests? is the arithmetic correct?), verification is cheap and trustworthy, so the loop has a firm anchor. Strip that benchmark away and verification collapses back toward the same fallible capability that generated the answer — the model becomes its own unreliable judge, and there's nothing left to pull it upward What stops large language models from improving themselves?.

When that anchor is missing, three failure modes show up together: the model's own errors start contaminating its context and compounding non-linearly, diversity collapses toward a narrow band of outputs, and any internal proxy for 'good' gets reward-hacked Can models reliably improve themselves without external feedback?. The 'mirage' framing is the sharpest here — most methods that *look* like pure self-improvement are quietly smuggling in an external anchor: a past model version, a third-party judge, user corrections, or tool feedback. Remove all of those and the process is genuinely circular. This is also why fixed benchmarks aren't a real fix even when they exist: as the agent strengthens, a static target saturates and invites gaming, so the optimizer learns to beat the ruler rather than get better Why do fixed benchmarks fail as agents get stronger?.

The interesting twist is what the successful systems do *instead* of finding a better fixed benchmark — they make the evaluator itself part of the loop. The Red Queen Gödel Machine co-evolves the grader alongside the agent, which is precisely what lets it improve on ungradable work like writing and proof generation, matching fixed-evaluator performance without any static verifier Can evaluators improve alongside the agents they score?. Its sibling approach keeps the target moving deliberately — splitting search into epochs with a stable within-epoch criterion while evolving the utility across boundaries, so the goalpost always stays just ahead of the optimizer Why do fixed benchmarks fail as agents get stronger?. The Darwin Gödel Machine takes a related route on gradable tasks, swapping formal proofs of improvement for empirical benchmarking plus an evolutionary archive of variants Can AI systems improve themselves through trial and error?.

Other escapes manufacture a verification signal where none was given. Asymmetric self-play sidesteps the missing benchmark by having a proposer generate calibrated problems and a solver learn against majority-vote agreement — no ground truth, no human labels, just an automatic curriculum where the two halves anchor each other Can language models improve themselves without any external training data?. A different tactic injects a tiny amount of external structure once and lets it propagate: roughly a thousand demonstrations of *how* to enrich shallow reasoning into deeper reasoning gives the model a stable signal to bootstrap from on tasks with no verifiable answer Can models improve themselves on tasks without verifiable answers?.

So the thing worth taking away: systems don't fail on unbenchmarked tasks because they're not smart enough — they fail because 'improvement' is only meaningful relative to a signal the system doesn't already contain, and a model judging itself contains no such signal. What you'd expect to be a capability problem is really a topology problem. The fixes that work don't make the model a better self-judge; they build a second, moving, or adversarial source of truth *outside* the model and route the loop through it. One quieter corollary from the failure literature — errors filling a model's own context history degrade it non-linearly, and scaling doesn't rescue it — is why 'just make the model bigger' isn't a path around the gap Do models fail worse when their own errors fill the context?.


Sources 9 notes

What limits how much models can improve themselves?

Models can only improve themselves when they verify solutions better than they generate them. This gap scales with model size but vanishes entirely for factual tasks, predicting which domains benefit from self-improvement.

What stops large language models from improving themselves?

Self-improvement in LLMs is formally bounded by the generation-verification gap, meaning every reliable fix requires something external to validate and enforce it. Models cannot escape this constraint through metacognition alone.

Can models reliably improve themselves without external feedback?

Pure self-improvement stalls due to the generation-verification gap, diversity collapse, and reward hacking. Reliable improvement methods succeed by smuggling in external anchors: past model versions, third-party judges, user corrections, or tool feedback.

Why do fixed benchmarks fail as agents get stronger?

Fixed benchmarks saturate and invite reward hacking as agents strengthen. RQGM solves this by splitting search into epochs with stable within-epoch criteria while evolving the utility across boundaries, keeping the target ahead of the optimizer.

Can evaluators improve alongside the agents they score?

Red Queen Gödel Machine makes evaluation part of the improvement loop, allowing agents to optimize writing and proof generation without a static verifier. Co-evolved systems match fixed-evaluator performance while using fewer tokens, suggesting shared learning drives efficiency.

Show all 9 sources
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.

Can language models improve themselves without any external training data?

SQLM uses a proposer-solver framework where the proposer generates calibrated problems and the solver learns via majority-vote verification. Both agents improve through RL alone, creating an automatic curriculum that scales without human labels or ground-truth answers.

Can models improve themselves on tasks without verifiable answers?

Training on just 1000 examples of reasoning enrichment—showing how to expand shallow reasoning into deeper thought—enables models to iteratively improve on general tasks without external verification. The catalyst data activates latent reasoning ability and provides a stable signal across multiple improvement iterations.

Do models fail worse when their own errors fill the context?

Error accumulation in context causes non-linear performance degradation in long-horizon tasks. Model scaling does not fix this; only test-time compute through thinking models reduces the effect by preventing error-contaminated context from biasing reasoning.

Papers this line draws on 8

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

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are a research analyst. Open question, still unsettled: why do most self-improving systems stall on tasks with no clear external benchmark — and has that stopped being true?

What a curated library found — and when (dated claims, not current truth); these span roughly 2024–2026:
- Self-improvement is bounded by the generation–verification gap: a model only improves when it can CHECK an answer better than PRODUCE one; strip the benchmark and verification collapses to the same fallible capability (~2024).
- With no external anchor, three failures co-occur: prior errors contaminate context and compound non-linearly, output diversity collapses, and internal proxies get reward-hacked; scaling doesn't rescue this (~2025).
- Static targets saturate and invite gaming as the agent strengthens — the optimizer learns to beat the ruler (~2025).
- Systems that DO improve on ungradable work co-evolve or move the evaluator, matching fixed-evaluator performance without a static verifier (~2025).
- Asymmetric self-play (proposer + solver, majority-vote, no ground truth) and ~1000 reasoning-catalyst demonstrations manufacture a signal where none was given (~2025).

Anchor papers (verify; mind their dates): Mind the Gap (arXiv:2412.02674, 2024); Darwin Gödel Machine (arXiv:2505.22954, 2025); Self-Reasoning / reasoning catalyst (arXiv:2505.14116, 2025); Self-Questioning Language Models (arXiv:2508.03682, 2025).

Your task:
(1) RE-TEST EACH CONSTRAINT. For every finding, judge whether newer models, training, tooling, orchestration (memory, caching, multi-agent), or evaluation have RELAXED or OVERTURNED it. Separate the durable question from the perishable limit; cite what resolved it, and say where a constraint still holds.
(2) Surface the strongest CONTRADICTING or SUPERSEDING work from the last ~6 months, foregrounding the live disagreement over whether co-evolved/adversarial evaluators actually escape circularity or just relocate it.
(3) Propose 2 research questions assuming the regime has moved.

Cite arXiv IDs; flag anything you cannot ground in a real paper.