TLDR: Critical Representation Fine-Tuning (CRFT) is a new method that improves Large Language Models’ (LLMs) ability to perform complex Chain-of-Thought reasoning. It works by identifying and optimizing specific “critical representations” within the model’s internal layers, which are crucial for information flow and output accuracy. CRFT achieves significant accuracy gains (e.g., 18.2% on GSM8K) with extremely high parameter efficiency (0.016% of model parameters), outperforming existing fine-tuning techniques and adapting well to few-shot learning.
Large Language Models, or LLMs, have shown remarkable progress in handling complex reasoning tasks, which require intricate logical steps and detailed explanations. A key technique enabling this is Chain-of-Thought (CoT) reasoning, where the model breaks down a problem into several intermediate steps, especially useful in areas like arithmetic and commonsense reasoning.
However, a challenge arises with existing methods designed to make these models more efficient. One such method, Representation Fine-Tuning (ReFT), aims to improve efficiency by modifying the model’s internal “representation space.” While promising, ReFT doesn’t always perform optimally on complex reasoning tasks. This is because it alters fixed representations at the beginning and end of each layer, and the impact of these changes on the final output can be unpredictable.
Researchers have observed that in complex reasoning, certain “critical representations” play a pivotal role. These are the representations that either gather important information from previous layers or influence how subsequent layers process information. Their impact propagates through the model, significantly affecting the final reasoning output. This insight led to the development of a new method called Critical Representation Fine-Tuning (CRFT).
CRFT is a novel approach that specifically identifies and optimizes these critical representations. It uses a sophisticated analysis of information flow within the model, leveraging attention and saliency scores to pinpoint where these crucial representations are located. Once identified, CRFT dynamically adjusts these representations within a low-rank linear subspace, all while keeping the main part of the model (the base model) frozen. This adaptive learning process ensures that the modifications are precisely targeted to improve reasoning performance.
The effectiveness and efficiency of CRFT have been rigorously tested across eight different benchmarks, covering both arithmetic and commonsense reasoning tasks. The method was applied to popular LLM families, including LLaMA and Mistral models. The results are impressive: CRFT significantly boosted the accuracy of LLaMA-2-7B by 18.2% and improved upon ReFT by 3.8% on the challenging GSM8K arithmetic dataset. What’s more, CRFT achieves these gains with remarkable parameter efficiency, utilizing only 0.016% of the total model parameters, which is substantially less than other parameter-efficient fine-tuning (PEFT) methods like LoRA and ReFT.
Beyond its strong performance in standard settings, CRFT also demonstrates adaptability to few-shot learning scenarios, where the model has very few examples to learn from. For instance, it improved one-shot accuracy by 16.4%. Visual analysis of the model’s internal workings (attention maps) reveals that CRFT actively re-shapes the information flow. It reduces excessive attention on less semantically important initial tokens (a phenomenon known as “attention sink”) and fosters broader, more interconnected information exchange among representations, ultimately guiding the model towards a more optimal reasoning path.
Also Read:
- Unlocking Reliable AI Reasoning Through Hidden Cognitive Signals
- Streamlining AI Reasoning: A New Approach to Clearer Thinking in Large Language Models
This work highlights the significant potential of optimizing models at the representation level for Chain-of-Thought reasoning. CRFT offers a lightweight yet powerful alternative to traditional fine-tuning methods that modify a larger number of model weights or rely heavily on prompt engineering. For more technical details, you can refer to the full research paper: Enhancing Chain-of-Thought Reasoning with Critical Representation Fine-tuning.


