From 0a1d0573ae08a74f5d3b43abe39b1802348c8f00 Mon Sep 17 00:00:00 2001 From: ViperEkura <3081035982@qq.com> Date: Fri, 24 Jul 2026 06:27:10 +0800 Subject: [PATCH] doc: add SFT length filter (15-token floor) with IFD bias rationale Per-field length filtering in SFT drops instruction--response pairs with responses shorter than 15 tokens. Short replies exhibit high per-token variance in both conditional and unconditional loss (Appendix A.3 / Figure 5), which would distort downstream IFD-based difficulty estimates. --- main.tex | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/main.tex b/main.tex index 9ff0d82..01e487f 100644 --- a/main.tex +++ b/main.tex @@ -154,8 +154,14 @@ pipeline proceeds as follows: previously kept sample $\mathbf{s}'$. \end{enumerate} -An optional LLM-as-Judge scoring module provides multi-dimensional -quality scores that can be used to filter low-quality samples. +In addition to deduplication, instruction--response pairs whose +response contains fewer than 15 tokens are discarded. +Short replies exhibit high per-token variance in both +conditional and unconditional loss (Appendix~\ref{sec:ifd_bias}, +Figure~\ref{fig:length_bias}), which would otherwise distort +the IFD-based difficulty estimates used for downstream sample +selection. This length floor is applied per-field, analogous to +the pretraining filter described above. \subsection{DPO Data Generation}