TLDR: AMFT is a novel single-stage fine-tuning algorithm for Large Language Models that unifies supervised fine-tuning (SFT) and reinforcement learning (RL). It uses a meta-gradient adaptive weight controller to dynamically learn the optimal balance between SFT’s imitation and RL’s exploration, leading to state-of-the-art performance, improved generalization, and higher sample efficiency on complex reasoning and multi-modal tasks.
Large Language Models, or LLMs, are incredibly powerful, but getting them to perform complex reasoning tasks accurately often requires a delicate process called fine-tuning. Traditionally, this involves a two-step approach: first, Supervised Fine-Tuning (SFT) where the model learns from high-quality examples, followed by Reinforcement Learning (RL) where it learns to optimize for specific outcomes. While effective, this sequential method often leads to problems like “catastrophic forgetting,” where the RL stage overwrites knowledge gained during SFT, and a constant struggle to balance imitation (from SFT) with exploration (from RL).
Recent efforts have tried to combine SFT and RL into a single training stage, but these often rely on simple, reactive rules to balance the two. They lack a smart, forward-looking way to find the perfect mix between learning from demonstrations and exploring new solutions.
Introducing AMFT: A Unified Approach to LLM Alignment
A new research paper introduces Adaptive Meta Fine-Tuning (AMFT), a novel single-stage algorithm that tackles this challenge head-on. The core idea behind AMFT is to view SFT and RL not as separate training methods, but as complementary “reward signals.” SFT provides an “implicit, path-level reward” that encourages the model to follow human-like reasoning structures, while RL offers an “explicit, outcome-based reward” that focuses on getting the correct answer.
AMFT’s innovation lies in its “adaptive weight controller.” This controller treats the balance between the SFT and RL objectives as a learnable parameter. Unlike previous methods that use fixed rules, AMFT’s controller uses a “meta-optimization strategy.” This means it learns to adjust the balance dynamically to maximize the model’s long-term performance on tasks. Essentially, it learns an optimal training curriculum on its own. For instance, it might prioritize SFT early on to stabilize the model, then gradually shift towards RL to encourage exploration as the model becomes more competent.
To ensure stability, especially during short-term training, AMFT also incorporates a “policy entropy” heuristic. This helps the controller react quickly to signs of instability or over-determinism in the model’s behavior, ensuring a smoother and more efficient learning process.
Also Read:
- AdaptFlow: Teaching AI Workflows to Learn and Adapt Like Humans
- THINK TUNING: A New Approach to Teaching LLMs How to Self-Reflect
Superior Performance Across Diverse Tasks
The researchers conducted extensive evaluations of AMFT on a variety of challenging benchmarks, including mathematical reasoning, abstract visual reasoning (General Points), and vision-language navigation (V-IRL). AMFT consistently achieved state-of-the-art results, demonstrating superior overall performance and, crucially, better generalization to out-of-distribution (OOD) tasks. This means the models trained with AMFT don’t just memorize solutions; they truly learn the underlying principles, allowing them to perform well on problems they haven’t seen before.
Ablation studies confirmed that every component of AMFT’s controller is vital for its stability, efficiency, and performance. The meta-learning controller, in particular, was shown to be critical for preventing issues like catastrophic forgetting and policy collapse, which often plague traditional fine-tuning methods.
Furthermore, AMFT proved to be significantly more sample-efficient, especially in multi-modal tasks. It drastically reduces the need for expensive RL rollouts by intelligently integrating cheaper SFT updates, making the fine-tuning process more practical and scalable.
This principled, forward-looking approach to LLM alignment offers a more effective paradigm for training powerful reasoning models. The code for AMFT is open-sourced and available via GitHub.


