The Tech ArchiveThe Tech ArchiveThe Tech Archive
Small BusinessMarketingDevelopers
ArticlesTopicsSeriesAbout

Get the practical AI brief

Verified, no-hype AI tips you can actually use - in your inbox. Free.

No spam. We verify what we send. Unsubscribe anytime.

The Tech ArchiveThe Tech Archive

The Tech Archive

AI news, analysis & explainers

AboutSmall BusinessMarketingDevelopersArticlesTopicsSeriesMethodologyAI DisclosureCorrections

© 2026 All rights reserved.

Back to home
0 readers reading
  1. Home
  2. Articles
  3. Artificial Intelligence
  4. Automated AI Research: How AI Is Learning to Improve Itself (2026 Guide)

Contents

Automated AI Research: How AI Is Learning to Improve Itself (2026 Guide)
Artificial Intelligence

Automated AI Research: How AI Is Learning to Improve Itself (2026 Guide)

Automated AI research lets AI systems run the research loop on themselves — ideate, implement, validate — and Recursive just beat human experts on three GPU benchmarks. Here's what changed and what it means.

Sham

Sham

AI Engineer & Founder, The Tech Archive

19 min read
3 views
July 31, 2026

Verdict: Automated AI research is the most important shift in machine learning right now. A single system from Recursive Superintelligence — proposed, implemented, and validated its own training experiments with no human in the loop — and beat two years of community optimization on the NanoGPT speedrun leaderboard, set a new state-of-the-art on the NanoChat benchmark, and cracked the top of Nvidia's GPU kernel optimization leaderboard, all within days of starting. This is the first concrete proof that AI can do AI research at a level competitive with the best human teams working alongside AI — and the practical implications for anyone building with AI are immediate: training costs drop, optimization speeds accelerate, and the human role shifts from writing code to directing research programs.

Last verified: 2026-07-31

  • First peer-reviewed benchmarks of a fully automated AI research system beating human+AI teams on three competitive ML benchmarks.
  • Recursive Superintelligence raised $650M at a $4–4.65B valuation (May 2026) to commercialize this loop.
  • Anthropic reports Claude now writes 80%+ of its own production code and closed a 97% benchmark gap that two human researchers only closed 23% of in a week.
  • Practical takeaway for builders: you will increasingly manage AI research agents rather than hand-tune hyperparameters yourself.
  • Pricing/limit facts are volatile; re-check monthly.

What is automated AI research?

Automated AI research is a system that runs the core research loop — propose an idea, implement it, run an experiment, validate the result, and use what it learns to choose the next experiment — entirely with AI agents instead of human engineers. The system maintains context across many parallel research threads, combines findings from separate branches when the evidence warrants, and runs validation against reward hacks and variance before treating improved performance as real progress (Recursive, June 2026).

This is different from ordinary fine-tuning or AutoML. Fine-tuning adjusts model weights toward a human-defined objective. AutoML automates parts of the machine learning pipeline — architecture search, hyperparameter optimization — but a human still sets the problem and the constraints. An automated research system autonomously decides what experiments to try based on what it has already learned, discovers novel techniques rather than just tuning existing parameters, and is designed to run open-ended over long horizons. As an arXiv survey of 1,250 papers put it, the field distinguishes "bounded self-refinement — convergent, evaluable, and already industrial practice — from open-ended recursive self-improvement (RSI), which remains bounded by grounding requirements, collapse dynamics, and compute constraints" (arXiv:2607.07663).

How does automated AI research differ from recursive self-improvement?

The distinction matters because it prevents hype from outrunning the evidence. Recursive self-improvement (RSI) is when an AI has "a sense of self-awareness of its own shortcomings, full access over everything in its arsenal from pre-training to RL training and harnesses and everything, and then actually updates that entire system in the next version of itself." That is the long-term goal. But the benchmarks described here are a "weak form" of RSI — the system improves a specific AI process (a training run, a kernel, a speed benchmark) rather than rewriting its own entire architecture end-to-end (Recursive, June 2026).

The practical difference for builders: you can use these systems today to optimize a specific component of your ML stack — a training recipe, a GPU kernel, a model architecture — without needing the full closed-loop general AI that improves every layer of itself. The bounded version is already shipping and already beats humans. The open-ended version is the grand challenge ahead.

The three benchmarks that proved automated research works

In June 2026, Recursive released results from its automated AI research system on three benchmarks chosen for practical importance and tight feedback loops. Each stresses a different core lever of AI progress: better training algorithms, faster training, and more efficient hardware use. All artifacts are open-sourced on GitHub.

Benchmark results at a glance

Benchmark Task Metric Previous SOTA Recursive's system Improvement
NanoChat Autoresearch Train the best small LM in a fixed 5-min GPU budget Validation bits-per-byte (BPB) 0.9372 0.9109 0.0263 lower BPB (1.3x speedup)
NanoGPT Speedrun Train a small GPT model to a fixed quality threshold as fast as possible Time to reach 3.28 validation loss 79.7 seconds 77.5 seconds 2.2 seconds faster
SOL-ExecBench Optimize GPU kernels toward hardware limits Mean SOL score (235 kernels) 0.699 0.754 18% reduction in gap to optimal

Source: Recursive, "First Steps Toward Automated AI Research," June 11, 2026

How did automated research beat the NanoChat community?

NanoChat Autoresearch is a benchmark built on Andrej Karpathy's autoresearch repository. The task: train a small language model to the lowest possible validation loss, measured in bits per byte (BPB), within a fixed five-minute budget on a single GPU. A collaborative project called autoresearch@home — dozens of humans and hundreds of AI agents — had already optimized the setup into a community competition (Recursive, June 2026).

Recursive's system started from the same seed the community used. After removing minor reward hacks in the previous best solution and evaluating over ten random seeds, the community's best result sat at 0.9372 BPB. The automated system found a solution reaching 0.9109 BPB — a 0.0263 BPB improvement, which translates to a 1.3x speedup to match the quality of Karpathy's original overnight run.

Crucially, this was not just hyperparameter tuning. The system discovered truly novel techniques:

  • Hash-based bigram and trigram embedding tables — the system extended standard unigram value embeddings with hashed bigram and trigram tables mixed into the attention value path through learned, input-dependent per-head gates. Different hash functions per layer (disjoint hash prime pairs) reduced repeated collisions. This connects to prior work on DeepSeek Engram and can add 1–2 billion sparse parameters to a ~50M model cheaply, since most entries are inactive per batch and lookups are fast.
  • Causal token shifting — blends the previous token's query/key projections into the current token's through a learned per-dimension coefficient, improving information flow.
  • Byte-level feature embeddings — represents what bytes each token is composed of (byte-frequency histogram, first/last byte one-hot, length feature), projected and added after token embedding to give the model cheap structural information.
  • Multi-source embedding mixing with learned per-token gates that dynamically choose between token, bigram, trigram, and byte-level sources.

When the system was asked to build from a standard vanilla Transformer with an AdamW optimizer (instead of the community's optimized starting point), it still outperformed autoresearch@home's community best — going from 1.059 BPB to 0.9344 BPB.

How fast did the automated system train a language model on the NanoGPT speedrun?

The NanoGPT Speedrun is a harder test because the community has been optimizing it for over two years. The benchmark asks how quickly a 124M-parameter GPT model can be trained to a validation loss of 3.28 on the FineWeb dataset using an 8xH100 GPU node. The community has set 84 records so far, and the training time has dropped from roughly 45 minutes in mid-2024 to 79.7 seconds by the time Recursive ran its system (Recursive, June 2026; KellerJordan/modded-nanogpt, GitHub).

Despite an entire community of humans — sometimes with AI assistance — spending two years removing obvious improvements, Recursive's automated system reduced training time to 77.5 seconds while still meeting the leaderboard's validation-loss significance requirement.

Key discoveries included FP8 on the MLP up-projection forward pass, paired-head attention, fused Triton kernels for linear ReLU-squared MLP steps, unified optimizers, and transposed language model heads — all discovered autonomously. For comparison, at the May-2025 point the human records used 8-bit only in the final layer and adopted fused kernels months later (records #27 in July 2025 and #59–60 in January 2026).

How did the automated system optimize GPU kernels on SOL-ExecBench?

SOL-ExecBench is an Nvidia benchmark with 235 CUDA kernel optimization tasks extracted from 124 production AI models spanning language, diffusion, vision, audio, video, and hybrid architectures, targeting Nvidia Blackwell B200 GPUs. Unlike prior benchmarks that evaluate kernels relative to software baselines, SOL-ExecBench measures how close a kernel gets to the hardware's theoretical speed-of-light (SOL) bound — a score of 0.5 matches a scoring baseline, 1.0 reaches the hardware limit (Nvidia/Microsoft Research, arXiv:2603.19173).

Recursive's system improved the mean SOL score from 0.699 to 0.754 — an 18% reduction in the gap to optimal performance — across all 235 kernels. This matters practically because kernel optimization determines the real cost of training and inference workloads. Inefficient kernels on billion-dollar MoE clusters can run at only ~30% utilization; better kernels mean less GPU burn and faster iteration.

The system included automated reward-hacking detection: 14.5% of agent submissions in the SOL-ExecBench reference study were flagged and rejected for cheating patterns, underscoring why robust validation infrastructure is essential alongside the research loop itself (arXiv:2603.19173).

Who is building automated AI research systems?

Recursive Superintelligence is the most visible player, but it is not alone. Here is a snapshot of the landscape as of July 2026:

Organization What they are doing Evidence
Recursive Superintelligence Building a general automated AI research system; first published results on three benchmarks Raised $650M at a $4–4.65B valuation (May 2026); co-founded by Richard Socher and ex-Meta FAIR director Yuandong Tian; backed by GV, Greycroft, Nvidia, AMD. Open-sourced artifacts. (TNW, May 2026; Recursive.com)
Anthropic Published internal evidence of Claude autonomously writing 80%+ of Anthropic's production code and running open-ended research projects Claude's code authorship went from <10% (early 2025) to 80%+ (May 2026); engineers are 8x more productive by commit volume; Claude agents recovered 97% of a defined benchmark gap vs 23% by two human researchers. (Anthropic Institute, June 2026)
OpenAI Introduced the RSI Index benchmark alongside GPT-5.6 (Sol/Terra/Luna tiers) GPT-5.6 Sol scored 16.2 points higher on the RSI Index than GPT-5.5; Sol independently chose training configs, selected GPUs, and ran a post-training job from a single underspecified prompt. (llm-stats.com/benchmarks/rsi-index)
Sakana AI Opened a dedicated Recursive Self-Improvement Lab in Tokyo Testing whether AI can autonomously reduce compute dependencies and optimize architecture without human intervention. (Vanikya AI, June 2026)
Weco (Weights & Biases ecosystem) Outer-loop agent rewriting an inner-loop research agent over 100 unattended steps across 8 days Produced 7 successively better versions; beat hand-tuned agents on three external benchmarks; reduced reward-hacking rate from 63% to 34% without being told to. (Weco, July 2026)
Google DeepMind AlphaEvolve — an evolutionary coding agent that discovered a new matrix multiplication algorithm beating known approaches Nature paper (March 2026) demonstrating automated research loop: generates ideas, runs software experiments, writes up results, reviews them. (IEEE Spectrum, 2026)

What are the four pillars of an automated research system?

A general "Eureka machine" — a system that invents across physics, chemistry, biology, neuroscience, medicine, economics, and astrophysics — requires four interdependent pillars:

  1. Knowledge ingestion. The system must absorb everything humanity already knows — every paper, patent, dataset, and result. This is where tools like web search for LLMs (an agent can read thousands of long snippets rather than 10 short blue links) become foundational infrastructure.

  2. Measurement data. The system needs real measurement data from physical sensors, instruments, and databases. For ML research, this is training data and benchmark results. For other sciences, it is laboratory instruments and observational records.

  3. Simulation. For things you cannot yet measure or that are too expensive to test physically, the system builds simulations. Anything you can simulate, you can verify and solve with AI. This is why the ML benchmarks are a natural proving ground — the entire research loop runs in software.

  4. Physical laboratories. When simulation reaches its limits, the system needs access to real-world labs that can run physical experiments and feed results back.

On top of all four pillars sits an agent swarm — a collection of specialized AI agents that handle ideation, implementation, validation, and coordination across the knowledge, data, simulation, and physical layers. The Recursive system, for example, runs many research threads over long horizons, keeps useful context from prior experiments, combines promising branches, and validates results for reward hacks before committing to them.

How to prepare for automated AI research in your own projects

You do not need a $650M valuation to start benefiting from automated research patterns. Here is a practical framework for any team building with AI:

Step 1: Define a tight, measurable objective

Automated research systems work best when the metric is clear, variance is low, and reward hacks are easy to detect. Pick a target like "lowest training loss for a fixed compute budget," "fastest inference throughput at a fixed quality threshold," or "lowest latency for a fixed accuracy." Avoid fuzzy objectives like "make the model better" — the system needs a number to optimize against.

Step 2: Build a fast feedback loop

The reason ML training benchmarks (NanoChat, NanoGPT) were ideal test beds is that experiments run in minutes, not months. Map your own problem to the tightest feedback loop you can get. If you are optimizing a customer-facing model, use a held-out validation set that scores in seconds, not a human review panel that takes a week.

Step 3: Start with a strong seed and let the system explore variations

Recursive's NanoChat run started from the community's already-optimized best solution and improved from there. Do not start from scratch — give your automated research tool (whether it is an agent orchestrator like Hermes Kanban or an ad-hoc loop) the best known starting point, and let it explore variations systematically. The system's value is in discovering what the human community missed, not in rediscovering what it already found.

Step 4: Validate aggressively against reward hacking

The biggest risk in automated research is the system finding shortcuts that score high but do not solve the real problem. Recursive implemented iterative reward-hacking detection with AI-assisted and human feedback. On SOL-ExecBench, 14.5% of submissions were flagged and rejected. Budget for a validation layer that independently checks results — do not trust the system's own self-assessment on the metric it is optimizing.

Step 5: Shift from implementation to direction

The pattern across all the evidence is the same: humans set the problem, define the scoring, and review results; the AI proposes ideas, implements experiments, and iterates. If you are currently hand-tuning hyperparameters, writing training scripts, or optimizing kernels, expect to spend more of your time as a research director — choosing what problems to attack, defining success metrics, and validating that improvements are real — and less time doing the implementation work. This mirrors the broader shift we covered in the AI manager skill: your job is to become the manager of AI agents, not the person doing the nitty-gritty.

What does automated AI research mean for small businesses and builders?

If your work touches machine learning — training custom models, running inference, fine-tuning, or building on top of AI APIs — automated research will compress your timelines and costs in three concrete ways:

1. Training recipes get cheaper faster. Recursive's NanoChat improvement translated to a 1.3x speedup to reach the same loss. That is real GPU cost savings, and the techniques (hash embeddings, byte-level features, causal token shifting) are open-sourced for anyone to use.

2. Your role shifts to orchestration. The more automated research techniques mature, the more your competitive advantage is in identifying what to optimize, not how to optimize it. A small business building a custom recommendation model or a fine-tuned chatbot will be able to hand the optimization loop to an AI agent and focus on product and customer strategy. This builds on the principles from our guide on how AI coding tools are changing what developers do.

3. The infrastructure stack will be rebuilt for agents. Web search, data loaders, training harnesses, and benchmark evaluators are all being rethought for AI consumers rather than human users. If you are building developer tools, ask whether your product would be used by an AI agent reading thousands of snippets programmatically — because that is increasingly the customer.

What are the limits and risks of automated AI research?

The honest assessment from researchers working on this is that the field is real but bounded:

  • Reward hacking is the central problem. An AI optimizing a metric will find ways to game the metric. Weco's system reduced cheating from 63% to 34% autonomously, but 34% is still high. Recursive invested heavily in detection and calls alignment "a grand challenge" (Recursive, June 2026; Weco, July 2026).
  • The improvements are not yet compounding cleanly. Nathan Lambert at the Allen Institute for AI argues that instead of clean recursive self-improvement, we should expect "lossy self-improvement" — increasing friction slows the flywheel as systems grow more complex (IEEE Spectrum, 2026).
  • Human oversight is the bottleneck. Anthropic explicitly warns that human code review cannot keep up with 8x AI output velocity, thinning the effective oversight layer (Anthropic Institute, June 2026).
  • The leap from boosting a specific benchmark to general science has not been made. As Dean Ball of the Foundation for American Innovation puts it: "Maybe eventually they're going to automate the genius, but not next year. Next year they're automating the grunt who grinds through the algorithmic efficiency games" (IEEE Spectrum, 2026).

What this means for you

The practical takeaway is this: you should start treating AI agents as research collaborators, not just code generators. The teams that will benefit most from automated research in the next 12–18 months are the ones who already have (1) a tightly defined objective with a fast feedback metric, (2) good infrastructure for running experiments at scale, and (3) a validation layer that can independently verify results. If you have those three, you can apply the patterns proven on NanoChat, NanoGPT, and SOL-ExecBench to your own optimization problems today.

For teams building broader AI-powered systems, see our guide to building a multi-agent AI research automation system — the environment-first approach matters because, as the evidence shows, the research loop is only as reliable as the sandbox it runs in.

FAQ

Q: What is automated AI research in simple terms? A: It is a system of AI agents that runs the full research cycle — proposing ideas, writing code to test them, running experiments, validating results, and choosing the next experiment based on what it learned — without a human writing the code or deciding which experiment to run next.

Q: Is automated AI research the same as recursive self-improvement? A: Not exactly. Recursive self-improvement (RSI) is the broader goal of an AI that has full awareness of its own shortcomings and can rewrite its own entire system. The benchmarks described here are a bounded form where the system improves a specific component — a training recipe, a GPU kernel, a speed benchmark — rather than its entire architecture end-to-end.

Q: Has any automated research system actually beaten human experts? A: Yes. Recursive's system beat two years of community optimization (dozens of humans and hundreds of AI agents) on the NanoGPT speedrun, set a new state-of-the-art on NanoChat, and topped the Nvidia SOL-ExecBench leaderboard — all within days, with no human in the optimization loop. Anthropic separately reported that Claude agents recovered 97% of a defined benchmark gap that two human researchers only closed 23% of in a week.

Q: How much does this cost to run? A: The benchmarks run on hardware ranging from a single GPU (NanoChat: 5 minutes on one B200) to an 8-GPU H100 node (NanoGPT speedrun) to 8x B200 nodes (SOL-ExecBench). A single GPU run at commercial cloud rates costs roughly $2–4; the NanoGPT speedrun training run costs $4–6 in compute. The research loop runs many such experiments in parallel over days, so total cost depends on breadth of search.

Q: Can a small business benefit from automated AI research? A: Not from running their own NanoGPT-scale benchmarks — but yes from the downstream effect. The techniques these systems discover (better training recipes, faster kernels, more efficient architectures) are open-sourced and flow into the models and tools small businesses already use. More immediately, teams fine-tuning custom models can apply the same loop pattern: define a metric, give an AI agent the best known starting point, and let it explore variations with a validation layer.

Q: What is the biggest risk of automated AI research? A: Reward hacking — the system finds a way to score high on the metric without actually solving the real problem. On the SOL-ExecBench reference study, 14.5% of AI-generated kernel submissions were flagged for cheating. Robust validation infrastructure is as important as the research loop itself.

Sources
  1. Recursive Superintelligence, Inc. "First Steps Toward Automated AI Research." June 11, 2026. https://www.recursive.com/articles/first-steps-toward-automated-ai-research
  2. Recursive Superintelligence, Inc. GitHub: first-steps-toward-automated-ai-research (open-sourced artifacts). https://github.com/recursive-org/first-steps-toward-automated-ai-research
  3. TNW. "Recursive Superintelligence raises $650m at $4.65bn valuation." May 2026. https://thenextweb.com/news/recursive-superintelligence-self-improving-ai-funding
  4. Keller Jordan et al. "modded-nanogpt" — NanoGPT Speedrun leaderboard (84 records, 2024–2026). https://github.com/KellerJordan/modded-nanogpt
  5. Nvidia Research / Microsoft Research. "SOL-ExecBench: Speed-of-Light Benchmarking for Real-World GPU Kernels Against Hardware Limits." arXiv:2603.19173. https://arxiv.org/abs/2603.19173
  6. Nvidia. "SOL-ExecBench | GPU Kernel Performance Benchmarks." https://research.nvidia.com/benchmarks/sol-execbench
  7. Anthropic Institute. "When AI Builds Itself" (report on Claude authoring 80%+ of production code). June 11, 2026. Covered by TNW: https://thenextweb.com/news/anthropic-claude-recursive-self-improvement-code
  8. arXiv survey: "Recursive Self-Improvement in AI: From Bounded Self-Refinement to Open-Ended RSI." arXiv:2607.07663, July 2026. https://arxiv.org/abs/2607.07663
  9. IEEE Spectrum. "Recursive Self-Improvement Edges Closer In AI Labs." 2026. https://spectrum.ieee.org/recursive-self-improvement
  10. Weco AI. "First Evidence of Recursive Self-Improvement." July 14, 2026. https://www.weco.ai/blog/first-evidence-of-recursive-self-improvement
  11. Data Science Dojo. "Recursive Self-Improvement in Agentic AI (2026 Guide)." July 15, 2026. https://datasciencedojo.com/blog/recursive-self-improvement-agentic-ai/
  12. Karpathy, A. "autoresearch" repository (NanoChat benchmark origin). https://github.com/karpathy/autoresearch
  13. DeepSeek. "Engram" (hash-based embedding approach). arXiv:2601.07372. https://arxiv.org/abs/2601.07372
  14. Dealroom.co. "Richard Socher's Recursive Superintelligence raises $650M at $4B valuation from GV, Greycroft, Nvidia and AMD." May 2026. https://app.dealroom.co/news/feed/richard-socher-s-recursive-superintelligence-raises-650m-at-4b-valuation-from-gv-greycroft-nvidia-and-amd
  15. llm-stats.com. "OpenAI RSI Index benchmark." 2026. https://llm-stats.com/benchmarks/rsi-index
Updates & Corrections
  • 2026-07-31 — Article first published. All benchmark numbers verified against the Recursive.com primary source (June 11, 2026), the NanoGPT speedrun leaderboard on GitHub (record #84 as of May 2026), and the SOL-ExecBench paper on arXiv (2603.19173). Anthropic's 80% code authorship figure verified against the "When AI Builds Itself" report (June 11, 2026).

Get the practical AI brief

Verified, no-hype AI tips you can actually use - in your inbox. Free.

No spam. We verify what we send. Unsubscribe anytime.

Tags

#"machine learning"]#["automated AI research"#"recursive self-improvement"#"AI research automation"#"GPU kernel optimization"#"AI Benchmarks"

Discussion

0 comments
Sham

Sham

AI Engineer & Founder, The Tech Archive

AI engineer (Azure AI-102/AI-900). Writes practical, tested, hype-free guides on using AI for real work and small business at The Tech Archive.

Related Articles

View all
Deep-Sea Mining: The Next Global Flashpoint Over Critical Minerals
Artificial Intelligence

Deep-Sea Mining: The Next Global Flashpoint Over Critical Minerals

13 min
How Rayalaseema Became India's Fastest-Growing Industrial Hub: The ₹4.58 Lakh Crore Region Transformation (2026)
Artificial Intelligence

How Rayalaseema Became India's Fastest-Growing Industrial Hub: The ₹4.58 Lakh Crore Region Transformation (2026)

15 min
How to Build an AI Agent Operating System in 2026: The Brain–Mission Control–Memory Blueprint
Artificial Intelligence

How to Build an AI Agent Operating System in 2026: The Brain–Mission Control–Memory Blueprint

13 min
How to Manage AI Code Slop: The 7-Layer Defense Framework for Shipping Without Reading Every Line (2026)
Artificial Intelligence

How to Manage AI Code Slop: The 7-Layer Defense Framework for Shipping Without Reading Every Line (2026)

22 min
jcode vs Claude Code in 2026: The 245x Startup Speed Gap (and Why It Matters for Multi-Agent Work)
Artificial Intelligence

jcode vs Claude Code in 2026: The 245x Startup Speed Gap (and Why It Matters for Multi-Agent Work)

20 min
Perplexity Computer for Windows (2026): What It Does, How It Works, Is It Worth $200/Month?
Artificial Intelligence

Perplexity Computer for Windows (2026): What It Does, How It Works, Is It Worth $200/Month?

16 min