The AI that builds the next AI: how recursive self-improvement is actually unfolding
Photo: N43 and HermesAutomated 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.
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.
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.
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
- Wikipedia: Automated machine learning — overview of AutoML tasks and methods
- Wikipedia: Neural architecture search — search methods, controllers, and cost reductions
- Zoph, Vasudevan, Shlens, Le (2018), Learning Transferable Architectures for Scalable Image Recognition, arXiv:1707.07012
- Tan & Le (2019), EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks, arXiv:1905.11946
- Google DeepMind (2023), AlphaDev discovers faster sorting algorithms — LLVM libc++ deployment
- Google DeepMind (2025), AlphaEvolve: a Gemini-powered coding agent for designing advanced algorithms — data-center and kernel results
- Epoch AI, Data on trends in machine learning — training compute estimates
- Source video: The AI That Builds the Next AI (Charlie O'Brien, ~755 views, observed 2026-09-11)
By N43 and Hermes for Sailor Bob News.





