Forward Pass Domain Adaptation (Without Cross-Layer Backpropagation)
Researchers propose Forward-Pass-Only (FPO) training for LLMs, reducing memory and increasing throughput without full backpropagation. It adapts models effectively for specific domains while maintaining performance on general benchmarks.
Intelligence analysis by Gemini 2.5 Flash Lite

A new method called Forward-Pass-Only (FPO) training allows large language models to adapt to new domains more efficiently. By avoiding the computationally expensive backward pass, FPO significantly boosts training speed and reduces memory usage, while still achieving comparable performance to traditional fine-tuning methods on general tasks.
Imagine you want to teach a super-smart robot a new trick. Instead of making it retrace all its steps backward to learn, this new method only looks at how well it did the trick at the very end. It uses that final score to help the robot learn faster and use less energy, like giving it a quick tip instead of a full lesson.
Analysis
Forward-Pass-Only Training
The core innovation presented in this paper is Forward-Pass-Only (FPO) training, a novel approach to adapting large language models (LLMs) that circumvents the need for a full backward pass through the model's layers. Traditional fine-tuning methods, while effective, are computationally intensive and memory-hungry due to the requirement of backpropagating gradients through the entire network. FPO addresses this by leveraging an empirical observation: the prediction error at the output layer of a transformer model can serve as a reasonable proxy for the true gradient, even at later layers. This approximation, quantified by a cosine similarity of 0.47--0.59 across surveyed models, allows for adaptation without the full autograd machinery.
Empirical Observation and Diagnostic
The efficacy of FPO hinges on the observation that late-layer output errors correlate with actual gradients. To validate this, the authors developed a two-minute diagnostic tool. This diagnostic quantifies the approximation quality per layer, enabling researchers to identify which layers are most amenable to adaptation using this simplified signal. This layer-specific insight is crucial for the targeted application of the FPO technique. By understanding where the approximation holds best, FPO can be applied more effectively, ensuring that the adaptation process is both efficient and impactful without needing to backpropagate through every single layer.
Performance and Efficiency Gains
Evaluations on three distinct model families—OLMo-2-7B, Qwen3-8B, and Falcon3-7B—demonstrate FPO's capabilities. The method achieves significant improvements in in-domain perplexity, indicating successful adaptation to specific tasks or datasets. Crucially, FPO maintains performance on general benchmarks like MMLU, ARC-Challenge, HellaSwag, and Winogrande, keeping them within seed-noise levels of the baseline. This is a notable advantage, as full-network fine-tuning does not always reliably preserve performance on out-of-domain tasks. Furthermore, FPO offers substantial efficiency gains, boasting 2.7--3.2x the throughput of standard fine-tuning and approximately 40% less peak training memory. Even localizing Supervised Fine-Tuning (SFT) to FPO's target layers, while effective, incurs a 2.2x higher wall-clock cost compared to FPO.
Key points
- Forward-Pass-Only (FPO) training adapts LLMs without full backpropagation.
- FPO achieves 2.7-3.2x throughput and ~40% less peak memory than standard fine-tuning.
- A diagnostic tool identifies layers suitable for late-layer adaptation.
- Models adapted with FPO maintain performance on general benchmarks within seed-noise.
- The method leverages the output-layer prediction error as a proxy for the true gradient.
This approach could democratize LLM adaptation, making it feasible for researchers and developers with limited computational resources. It promises faster iteration cycles for specialized AI applications and potentially more robust models that retain general capabilities after domain-specific training.
The reliance on an approximation of the gradient might limit the depth or nuance of adaptation compared to full backpropagation, potentially leading to suboptimal performance on highly complex or sensitive tasks. The diagnostic's effectiveness across all model architectures also remains an open question.

