Transformer Copilot: Learning from The Mistake Log in LLM Fine-tuning
Jiaru Zou, Yikun Ban, Zihao Li, Yunzhe Qi, Ruizhong Qiu, Ling Yang, Jingrui He
TL;DR
This work introduces Transformer Copilot, a Pilot-Copilot framework that records a Mistake Log during fine-tuning to capture where a Transformer Pilot errs. The Copilot, initialized from the Pilot's decoder, learns from the Mistake Log to produce logits corrections that are fused with the Pilot's outputs during generation using a rectified distribution $\tilde{p}_{t,i}=\hat{p}_{t,i}+\lambda f^C_{t,i}$. The authors provide a theoretical guarantee showing that, under mild assumptions, this correction reduces the expected error, and they demonstrate empirical gains across 12 commonsense, arithmetic, and recommendation benchmarks, with modest overhead and strong transferability. The approach scales across encoder-decoder and decoder-only architectures, showing improved performance with few additional parameters and applicable to diverse tasks. This reflective learning mechanism offers a novel, efficient way to exploit internal training signals to bridge training-time and inference-time behavior.
Abstract
Large language models are typically adapted to downstream tasks through supervised fine-tuning on domain-specific data. While standard fine-tuning focuses on minimizing generation loss to optimize model parameters, we take a deeper step by retaining and leveraging the model's own learning signals, analogous to how human learners reflect on past mistakes to improve future performance. We first introduce the concept of Mistake Log to systematically track the model's learning behavior and recurring errors throughout fine-tuning. Treating the original transformer-based model as the Pilot, we correspondingly design a Copilot model to refine the Pilot's inference performance via logits rectification. We name the overall Pilot-Copilot framework the Transformer Copilot, which introduces (i) a novel Copilot model design, (ii) a joint training paradigm where the Copilot continuously learns from the evolving Mistake Log alongside the Pilot, and (iii) a fused inference paradigm where the Copilot rectifies the Pilot's logits for enhanced generation. We provide both theoretical and empirical analyses on our new learning framework. Experiments on 12 benchmarks spanning commonsense, arithmetic, and recommendation tasks demonstrate that Transformer Copilot consistently improves performance by up to 34.5%, while introducing marginal computational overhead to Pilot models and exhibiting strong scalability and transferability. Our code is released at https://github.com/jiaruzouu/TransformerCopilot.
