[research] 4 atomic operators let a 35B agent beat GPT-5.5 on ML engineering #356
Closed
Replies: 1 comment
|
This discussion was automatically closed because it expired on 2026-08-08T10:31:46.366Z.
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🔬 The Finding
Researchers introduced Frontis-MA1, a 35B meta-evolution agent for machine learning engineering that achieves recursive self-improvement by decomposing all actions into just four atomic program-evolution operators: Draft, Improve, Debug, and Crossover. Trained via execution-grounded SFT + RL and composed into long-horizon search, it raised Medal Average on MLE-Bench Lite from 39% → 71%, surpassing GPT-5.5 + Codex — on a single RTX 4090 with 12 GB VRAM.
⚙️ What It Means for Agentic Workflows
Design your agent's action space as atomic, composable operators rather than monolithic task prompts. Draft → Improve → Debug → Crossover mirrors what effective CI/automation loops already do; making these explicit lets you train or prompt-engineer each operator independently and then compose them into search. Execution feedback is the key loop — every operator call gets grounded in real runtime output, which is directly achievable in GitHub Actions or any workflow with shell access.
🔗 Source
Frontis-MA1: Training an AI4AI Model towards Recursive Self-Improvement in Machine Learning Engineering — July 30, 2026
All reactions