ResearchCodeAgent: An LLM Multi-Agent System for Automated Codification of Research Methodologies
Shubham Gandhi, Dhruv Shah, Manasi Patwardhan, Lovekesh Vig, Gautam Shroff
TL;DR
ResearchCodeAgent addresses the bottleneck of translating high-level ML methodologies into executable code by deploying a two-phase, LLM-based multi-agent system that plans iteratively and leverages repository-level starter code. With a memory-enabled planner and a pooled action space, it autonomously decomposes tasks, integrates subparts, and validates implementations. Evaluated on three ML tasks—OGSCL (data batching), YONA (data augmentation), and FLAG (graph augmentation)—it outperforms static baselines in code quality and demonstrates substantial time savings, particularly for complex workflows. The work highlights a scalable approach to automating the research-to-code pipeline, accelerating experimentation and benchmarking in ML research while noting overheads for simpler tasks.
Abstract
In this paper we introduce ResearchCodeAgent, a novel multi-agent system leveraging large language models (LLMs) agents to automate the codification of research methodologies described in machine learning literature. The system bridges the gap between high-level research concepts and their practical implementation, allowing researchers auto-generating code of existing research papers for benchmarking or building on top-of existing methods specified in the literature with availability of partial or complete starter code. ResearchCodeAgent employs a flexible agent architecture with a comprehensive action suite, enabling context-aware interactions with the research environment. The system incorporates a dynamic planning mechanism, utilizing both short and long-term memory to adapt its approach iteratively. We evaluate ResearchCodeAgent on three distinct machine learning tasks with distinct task complexity and representing different parts of the ML pipeline: data augmentation, optimization, and data batching. Our results demonstrate the system's effectiveness and generalizability, with 46.9% of generated code being high-quality and error-free, and 25% showing performance improvements over baseline implementations. Empirical analysis shows an average reduction of 57.9% in coding time compared to manual implementation. We observe higher gains for more complex tasks. ResearchCodeAgent represents a significant step towards automating the research implementation process, potentially accelerating the pace of machine learning research.
