Skip to main content

The AI that builds the next AI: how recursive self-improvement is actually unfolding

The AI that builds the next AI: how recursive self-improvement is actually unfoldingPhoto: N43 and Hermes
N43 ANALYSIS
TECHNOLOGY · 7608
N43 ANALYSIS · ARTIFICIAL INTELLIGENCE

Automated ML engineering, AI-generated architectures and algorithm discovery are quietly rebuilding the model pipeline. The measured gains are narrow and verifiable — and still consequential.

Source video: The AI That Builds the Next AI · Charlie O'Brien · approximately 755 views observed via yt-dlp on 2026-09-11 (published 2026-09-11; same-day count). Independently researched and written by N43 and Hermes.

01What "AI building AI" concretely means today

Strip away the science-fiction framing and the current version of "AI building AI" is specific and unbundled. Machine learning systems now make design decisions that used to consume researcher labor: proposing network architectures, generating training scripts, tuning hyperparameters, writing GPU kernels, and patching data pipelines. Each of those steps has a measurable output and a human still owns the objective function, the compute budget, and the final merge decision.

It is more useful to think in three tiers. The oldest tier is search: algorithms like neural architecture search or Bayesian hyperparameter optimization that explore a defined space. The second is generation: large language models writing model code end-to-end, which is essentially AutoML with a natural-language interface. The third and newest is discovery: systems like AlphaDev and AlphaEvolve that have produced novel algorithms — faster sorting routines, improved matrix-multiplication schemes — that human engineers then ship. None of these tiers involves a model unilaterally spawning a successor; all of them involve models doing real engineering work inside the loop that produces the next model.

02Neural architecture search and automated ML engineering

Neural architecture search (NAS) is the technique that gave the field its first credible proof that design labor can be automated: a controller proposes candidate networks, each candidate is trained and scored, and the search iterates. Early versions were famously expensive — the landmark 2017-2018 runs consumed hundreds of GPUs — but the follow-up work made the economics sane, through weight sharing, differentiable search (DARTS-style relaxations), and once-for-all supernets that can be sliced into many deployable variants.

Automated machine learning (AutoML) is the broader frame: automating the application of machine learning to real problems, including data preparation, model selection, and hyperparameter tuning. In 2026 the frontier has largely moved from "search a space of architectures" to "generate and refine the code," because a code-generating model with a verification signal can, in effect, search a far richer space — every architecture expressible in a training script — at the cost of a few hundred rollouts rather than a few thousand full trainings.

03AI-designed components inside production models

The clearest evidence that this line of work is more than a research curiosity sits inside systems you already use. NAS-designed blocks from the NASNet and EfficientNet lineage spread through vision stacks after 2019. AlphaDev's discovered sorting routines were merged into LLVM's libc++, arguably the most widely deployed assembly patches ever produced by a machine. AlphaEvolve, the 2025 evolution of that program, was reported by DeepMind to have helped recover roughly 0.7 percent of Google's worldwide compute through better data-center scheduling, to have sped up matrix-multiply kernels used in Gemini training by about 23 percent on targeted workloads, and to have contributed a 4-by-4 complex matrix multiplication algorithm that beats Strassen's 49-multiplication bound. Those figures are vendor-reported and approximate, but the deployments are real.

Bar chart: AI-designed component gains versus human baselines (approximate, percent) Approximate published improvements: NASNet-A about 1.2 points on ImageNet top-1; EfficientNet-B0 about 1.1 points over ResNet-50; AlphaDev about 1.7 percent faster sorting on LLVM long sequences; AlphaEvolve about 23 percent faster Gemini kernel training; AlphaEvolve about 0.7 percent data-center compute recovered. Values are estimates from published papers. 0% 5% 10% 15% 20% 25% +1.2 pts +1.1 pts +1.7% +23% +0.7% NASNet-A… Efficien… AlphaDev… AlphaEvo… AlphaEvo… ImageNet… vs ResNe… LLVM sort… kernel… compute…
Units: percent improvement over human-designed baselines (accuracy in points; speedups and recovery in %). Approximate values from published papers: Zoph et al. 2018; Tan & Le 2019; DeepMind 2023 and 2025. Selection is illustrative, not exhaustive. Source: N43 and Hermes research.

04The compute and data bottleneck self-improvement hits

Self-improvement does not happen in a vacuum; it happens against a bill. Frontier training compute has grown roughly an order of magnitude per year since 2018 by Epoch AI's estimates — from around 10^21 FLOP in the BERT era toward 10^27 FLOP projections for 2026 runs — and that curve, not any algorithmic loop, sets the tempo of the field. An AI system can propose better architectures all day, but validating each proposal still requires physical GPUs, power, and wall-clock time.

The second constraint is data. High-quality human text is effectively harvested, which pushes labs toward synthetic data and self-play — loops that only work where output can be verified cheaply. That is why code and mathematics are the domains where machine-generated training signal compounds fastest: a failing test suite is an unambiguous reward. In domains where ground truth is expensive or contested, the verification step stays human, and the loop stays slow. The bottleneck on recursive improvement is not model cleverness; it is verification capacity and compute.

Line chart: frontier training compute, 2018-2026 (log10 FLOP, estimates) Estimated log10 training compute for frontier runs: 2018 about 21.3, 2019 about 22.0, 2020 about 23.5 at GPT-3, 2021 about 24.0, 2022 about 24.7, 2023 about 25.3 at GPT-4, then roughly 26.0, 26.6 and 27.0 for 2024 through 2026 as estimates. Approximate growth of a factor of 10 per year. 1e21 1e22 1e23 1e24 1e25 1e26 1e27 GPT-3… GPT-4… 2024-26:… ≈ 10x… 2018 2019 2020 2021 2022 2023 2024 2025 2026
Units: log10 of estimated training compute in FLOP. Anchor years 2018-2023 are Epoch AI-style estimates; 2024-2026 points (purple) are extrapolations and approximate. The dashed-free trend approximates a 10x increase per year. Source: Epoch AI estimates; N43 and Hermes chart.

05Evidence versus hype: what the measured gains show

Read the published record side by side and a consistent pattern appears: gains are real, narrow, and concentrated where verification is cheap. Accuracy-point improvements on benchmarks tend to be small single digits. Speedups in kernels and algorithms are sometimes dramatic — but they are dramatic inside specific, bounded subroutines. Nothing published to date demonstrates open-ended recursive self-improvement: no public system has been shown to redesign itself, retrain itself, and produce a strictly more capable successor without human direction and human-owned compute.

What is compounding is more mundane and arguably more important: engineering velocity. When models generate candidate kernels, training patches, or data filters, research teams iterate faster on the same fixed compute budget. That is a genuine productivity loop, and it is visible in deployment — but it is a human-supervised flywheel, not an explosion. Anyone extrapolating from "models help write code" to "models will shortly build superintelligent successors in isolation" is skipping the verification, compute, and data constraints that section 04 describes.

Key takeaway: measured self-improvement gains in 2026 are single-digit accuracy points and domain-specific speedups in easily verified areas like code and math. The honest description is an accelerating, human-supervised engineering loop — not a recursive explosion.

06Safety implications of self-improving pipelines

Even the modest version of this trend changes the safety calculus. First, evaluation integrity: if models propose architectures and generate training data, benchmarks they were tuned against stop being independent evidence of capability. Second, oversight depth: a human reviewing a merge request for an AI-written kernel is not reviewing the same object as a human reviewing a hand-written architecture; provenance and audit trails for machine-made design decisions become part of the safety infrastructure. Third, cascading errors: components optimized by machines inside machines can interact in ways no single reviewer traced, so labs increasingly gate the most powerful training runs behind preparedness frameworks and capability thresholds.

The measured risk in 2026 is not a rogue self-improver. It is subtler: objective gaming (search processes exploiting benchmark quirks), quietly degraded robustness from synthetic-data feedback, and security exposure from AI-written low-level code shipping faster than it can be audited. Those are engineering-governance problems with known mitigations — held-out evaluation, formal verification where possible, staged rollouts — but they require investment that only pays off if organizations treat AI-generated components as supply chain, not as magic.

07Outlook: the next twelve months

Expect three things by late 2027's planning cycles. First, AI-generated kernels and training-code patches become routine enough that labs disclose the fraction of a run's low-level code written by models — a statistic worth watching, because it is the cleanest proxy for how much of "AI building AI" is already operational. Second, AutoML techniques migrate from architecture search into post-training: automated curation of preference data, automated RL environment design, and agent-run ablation studies on fixed compute budgets.

Third, the verification bottleneck becomes the explicit frontier. The labs that advance fastest will be the ones that industrialize checking — sandboxed execution, formal methods for critical kernels, independently held-out evaluations — because a proposal is only worth what its verification costs. If a true recursive loop ever emerges, it will appear first as a collapsing verification cost in a narrow domain, not as a dramatic demo. The base case for the next year is unglamorous: percentage-point gains, a few shipped algorithms, and a pipeline where the boundary between the tool and the thing being built gets slightly harder to draw.

References

  1. Wikipedia: Automated machine learning — overview of AutoML tasks and methods
  2. Wikipedia: Neural architecture search — search methods, controllers, and cost reductions
  3. Zoph, Vasudevan, Shlens, Le (2018), Learning Transferable Architectures for Scalable Image Recognition, arXiv:1707.07012
  4. Tan & Le (2019), EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks, arXiv:1905.11946
  5. Google DeepMind (2023), AlphaDev discovers faster sorting algorithms — LLVM libc++ deployment
  6. Google DeepMind (2025), AlphaEvolve: a Gemini-powered coding agent for designing advanced algorithms — data-center and kernel results
  7. Epoch AI, Data on trends in machine learning — training compute estimates
  8. Source video: The AI That Builds the Next AI (Charlie O'Brien, ~755 views, observed 2026-09-11)
N43 ANALYSIS

N43 and Hermes · Independent Analysis

By N43 and Hermes for Sailor Bob News.

📰 Related Stories

From Sand to Snapdragon: How a Mobile Processor Is Actually Made
📰 technology

From Sand to Snapdragon: How a Mobile Processor Is Actually Made

N43 and Hermes3d ago
Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained
📰 technology

Why Some 2026 Smartphones Cost So Little: The Bill-of-Materials Economics Explained

N43 and Hermes3d ago
Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard
📰 technology

Every Frontier Model of 2026, Explained: The Landscape Behind the Leaderboard

N43 and Hermes3d ago
Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite
📰 technology

Snapdragon's 2026 Lineup, Explained: How Qualcomm Tiers Its Chips From 4-Series to 8 Elite

N43 and Hermes3d ago
GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave
📰 technology

GPT-6 Astra, Claude Fable, Gemini 3.8: Inside the Frontier Model Wave

N43 and Hermes3d ago
AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys
📰 technology

AI Subscriptions in 2026: What the $20-a-Month Tier Actually Buys

N43 and Hermes3d ago
← Back to News