research

Meta's hyperagents learn to improve their own improvement mechanisms across multiple domains

TL;DR

Researchers at Meta, University of British Columbia, and partner institutions have developed hyperagents—AI systems that optimize both their task performance and the mechanisms controlling their self-improvement. Unlike previous self-improvement approaches locked to coding tasks, DGM-Hyperagents (DGM-H) demonstrate significant gains across four domains and can transfer improvement strategies to entirely new tasks.

3 min read
0

Meta's Hyperagents Learn to Improve Their Own Improvement Mechanisms

Meta researchers, working with the University of British Columbia and other institutions, have developed hyperagents—AI systems that optimize not just their task performance but also the mechanisms controlling their self-improvement. The approach breaks a fundamental limitation that has constrained previous self-improving AI systems.

The Problem With Fixed Improvement Mechanisms

Self-improving AI has faced a paradoxical constraint: the mechanism controlling improvements is written by humans and never changes. No matter how well a system optimizes itself, it cannot escape the boundaries of that fixed mechanism. The research team addressed this by creating hyperagents that combine two editable components in a single program: one that solves specific tasks, and another that modifies the entire agent and creates variants. Because both components live in the same code, the second component can rewrite itself too.

The system builds on the Darwin Gödel Machine (DGM), which previously showed promise only for coding tasks. In programming, there's a natural alignment: a better programmer also writes better self-modifications. The original DGM achieved nearly zero performance on tasks beyond programming without manual tweaking.

Testing Across Four Domains

The team tested DGM-Hyperagents (DGM-H) across four distinct areas:

Coding: On the Polyglot benchmark, DGM-H improved from 0.084 to 0.267 across 100 iterations, matching original DGM performance despite not being specialized for coding.

Paper Review: Test performance jumped from 0.0 to 0.710, with top agents exceeding an established baseline of 0.630. The agent learns to predict whether AI conferences will accept or reject papers.

Robotics Reward Design: Performance climbed from 0.060 to 0.372. DGM-H almost always generates reward functions that successfully teach a simulated four-legged robot to jump, escaping local optima where the robot remains standing.

Olympiad Math: Transfer hyperagents trained on paper review and robotics achieved a score of 0.630 on the team's imp@50 metric (measuring performance gain after 50 iterations), while original DGM transfer agents scored 0.0.

Self-Discovered Infrastructure

Code analysis revealed DGM-H independently developing infrastructure components without explicit instructions. The system created performance trackers storing data across generations, and persistent memory that synthesizes insights rather than just logging numbers.

Example outputs included observations like: "Gen55 has best accuracy but is too harsh. Gen64 improved balance but lower accuracy. Need to combine gen55's critical reasoning with gen64's balance."

In paper review, the system detected when 94 percent of predictions returned "Accept" and self-corrected. In robotics, it assembled an internal knowledge base documenting valid environment variables, constraints, and scaling heuristics.

When allowed to modify selection logic, the system independently discovered strategies weighing proven solutions against exploration—though these haven't yet matched carefully hand-designed mechanisms.

Domain Transfer and General Skills

The most significant finding: hyperagents trained on paper review and robotics produced substantially better task agents in an entirely new domain (Olympiad math evaluation), while original DGM transfer agents produced no improvement. This indicates DGM-H develops general self-improvement skills rather than domain-specific optimization.

Safety Considerations and Limitations

All experiments ran in sandboxed environments with limited resources, restricted internet access, and human oversight. Researchers acknowledge these safeguards could prove insufficient as systems grow more powerful. Key risks include: systems evolving faster than humans can verify, and agents gaming evaluation metrics without genuine improvement.

Technical limitations remain: the system works with fixed task distributions and cannot modify the outer optimization loop. Ablation studies confirmed both core components are essential—fixed meta-agents and systems without exploration archives both fail to improve.

Code is available on GitHub.

What This Means

DGM-Hyperagents demonstrate that self-improving AI systems don't require domain-specific tuning to generalize beyond their training area. The ability to transfer improvement strategies across unrelated tasks suggests a path toward more robust self-optimization. However, the gap between autonomous discovery and human-designed mechanisms remains, and safety verification at scale remains an open problem. This work points toward self-accelerating AI systems, but with clear practical and safety boundaries still in place.

Related Articles

research

OpenAI Pauses Internal Work on Unreleased Astra Model Over Unverified 'Critical' Cyber Capabilities

OpenAI says internal testing of its unreleased Astra model showed cybersecurity and agentic coding capabilities strong enough that it cannot rule out a 'Critical capability level' designation. The company is pausing internal Astra activities that don't meet new stricter security controls.

research

Google DeepMind Converts Gemma 4 Into a Diffusion Model, Hits 1,500 Tokens/Sec

Google DeepMind published a technical report on DiffusionGemma, a text diffusion model built by retrofitting Gemma-4-26B-A4B rather than training from scratch. The model generates 256-token blocks in parallel, reaches about 1,500 tokens per second on an Nvidia H100, and uses less than 10% of the original training budget.

research

Ai2's TutorMoments Benchmark Finds LLMs Over-Help Students, Rarely Push for Rigor

Ai2's new TutorMoments framework replays real tutoring transcripts to test whether LLMs make the right pedagogical call at key decision points. Across seven models tested, all defaulted to over-helping unless explicitly prompted about the scaffolding-versus-rigor trade-off.

research

Study: Humans Approve 1 in 3 Malicious AI Coding Agent Commands in Browser Game Test

A browser-based game simulating Claude Code-style permission requests found that human reviewers approved roughly one in three malicious commands across more than 40,000 game sessions. The findings, alongside Anthropic's own telemetry showing 93% approval rates for permission prompts, highlight growing concerns about approval fatigue in agentic AI coding workflows.

Comments

Loading...