TL;DR
Supervised fine-tuning (SFT) often struggles with noisy or misaligned token targets, which can hinder model performance. The Q-target framework was developed to optimize target distribution design by balancing reliance on observed tokens and distributing probability mass over alternatives.
✦ Why It Matters
Engineers can leverage Target-SFT to improve model performance in tasks with noisy or ambiguous data.
Key Takeaways
Full Summary
Supervised fine-tuning (SFT) aims to maximize the likelihood of tokens in a training sequence, but this can lead to issues when tokens are noisy or misaligned with the model's prior knowledge. To address this, a new framework called Q-target was introduced, which reinterprets SFT as a problem of target distribution design.
This framework allows for two key decisions: how much to trust the observed token and how to distribute the remaining probability among other potential tokens. The researchers developed Target-SFT, which directly constructs training objectives based on the desired target distribution.
In experiments across ten reasoning dataset-model combinations, Target-SFT demonstrated superior performance compared to traditional SFT methods. This work reveals a fundamental principle for designing SFT objectives and opens new avenues for exploration in fine-tuning techniques.
Overall, it emphasizes the importance of considering target distributions in enhancing model training.
Related