If you clean up the meaning of your AI's training instructions, do small and large models benefit equally?
Does semantic auditing of instruction data improve performance uniformly across different model sizes?
This explores whether checking that instruction-tuning data is semantically correct and on-task helps small and large models by the same amount, and what the corpus can say when no note tests exactly that.
This reads the question as: if you audit instruction data for whether it means what it should, do small and large models gain equally? The corpus has no note that runs that experiment across model sizes, so there is no direct answer. The adjacent evidence points away from "uniform". It also suggests that checking meaning may not be the main lever.
Semantics may matter less than you'd expect. One study trained models on semantically empty or deliberately incorrect instructions. They performed comparably to models trained on the correct ones (about 43% against a 42.6% random baseline). The authors conclude that what transfers is knowledge of the output space, not understanding of the task (Does instruction tuning teach task understanding or output format?). If that holds broadly, an audit that fixes the meaning of instructions has little to work with. That is one setup, though, and it says nothing about whether bigger models behave differently.
Where data quality clearly matters is in which examples you train on. LESS uses gradient features to pick the 5% of instruction data most similar to a target capability, and that 5% consistently beats training on everything. The reason is that mixed datasets contain examples that actively hinder a skill by pulling reasoning strategy away from the task (Can we train better models on less data?). That is influence-based selection, not a read-through for correct meaning. The cheap supply of instruction data also changes what an audit is auditing. Aligned models can generate their own instructions from formatting tokens alone, and 4M such pairs matched human-curated data in quality (Can aligned LLMs generate their own training data?). The summaries provided don't break any of these results out by model size.
There are reasons to expect the effect to vary with size, though this is inference, not a measured result. Models respond to instructions differently at different scales. Small models lose instruction-following linearly as instruction density rises, mid-range models lose it exponentially, and reasoning models hold up to about 150 instructions before failing steeply (How does instruction density affect model performance?). Larger and instruction-tuned models also lean harder on their own stored knowledge and follow user-stated context less (Do larger models follow stated beliefs less often?). The same cleaned dataset would therefore meet models with different failure curves and different habits of deferring to instructions.
So the best-supported answer is probably not, but nobody in this collection has measured it. The missing test is one audited dataset, one selection method, and several model sizes trained side by side. Until someone runs it, treat any claim of uniform gains from semantic auditing as unsupported.
Sources 5 notes
Models trained on semantically empty or deliberately incorrect instructions achieve comparable performance to those trained on full correct instructions, achieving 43% vs random baseline 42.6%. The semantic content of instructions appears largely irrelevant; what transfers is knowledge of the output space.
LESS uses low-rank gradient features to select instruction data most similar to target capabilities, and training on the selected 5% consistently outperforms full dataset training. The improvement occurs because mixed datasets contain examples that actively hinder specific skills by shifting reasoning strategy away from task requirements.
MAGPIE shows that aligned models like Llama-3-Instruct auto-regressively generate diverse, high-quality instructions when given only pre-query formatting tokens, without prompt engineering. 4M generated pairs matched human-curated datasets in quality and outperformed external sources in downstream fine-tuning.
IFScale benchmark shows three degradation patterns: linear (small models), exponential (mid-range), and threshold decay (reasoning models maintain ~150 instructions then fail steeply). Even best models reach only 68% accuracy at maximum density.
Across 18 LLMs tested with EoBench, bigger models and instruction-tuned variants showed lower rates of context-following when users expressed beliefs that contradicted world knowledge. The effect suggests instruction-tuning strengthens reliance on parametric knowledge.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Do Models Really Learn to Follow Instructions? An Empirical Study of Instruction Tuning
- A Survey on Post-training of Large Language Models
- Are Emergent Abilities in Large Language Models just In-Context Learning?
- It's Not What You Say, It's How You Say It: Evaluating LLM Responses to Expressions of Belief
- Planted in Pretraining, Swayed by Finetuning: A Case Study on the Origins of Cognitive Biases in LLMs
- Exploring Format Consistency for Instruction Tuning
- LESS: Selecting Influential Data for Targeted Instruction Tuning
- Scaling Reasoning, Losing Control: Evaluating Instruction Following in Large Reasoning Models