Back to articles
Large Language Models

TOPL Recasts Off-Policy Post-Training as Token-Level Judgment

2 min read

Introduction

Faithful generation is especially fragile when test data shifts away from the training distribution. In summarization and translation, a model must stay fluent while remaining grounded in the source. This paper proposes a simple but interesting change in perspective: instead of training on off-policy responses as if they were full targets, learn to judge which tokens are correct.

Key points

  • New training objective: TOPL, short for Token-Level Off-Policy Labeling, turns post-training into token-level correctness classification.
  • Safer learning signal: Rather than directly teaching the model to reproduce off-policy tokens, the method encourages it to identify good tokens and avoid bad ones.
  • Strong generalization: On document summarization, TOPL achieves robust out-of-distribution results across 11 datasets.
  • Cross-task transfer: The approach also transfers to machine translation, suggesting the idea is not tied to one faithful generation setting.
  • Token-level matters: Ablations show that sequence-level analogues do not provide the same benefit, highlighting the importance of finer-grained supervision.
  • Interpretable updates: The LoRA adapters learned with TOPL behave like linear classification heads and steering vectors.

Why it matters

The main insight is methodological: off-policy data can be useful without being copied literally. By turning the learning problem into local correctness prediction, TOPL reduces the risk of overfitting to entire off-policy generations and instead nudges the model toward locally better token choices. That makes the approach attractive for settings where the goal is not just fluent text, but faithful text under changing conditions.

The interpretability result is also notable. If the learned LoRA updates can be read as classifiers or steering directions, then post-training becomes easier to analyze and potentially easier to control. For practitioners working on summarization, translation, or other faithful generation tasks, this offers a promising alternative to sequence-level imitation.

Takeaway

TOPL is a compact idea with broad implications: learn token correctness, not full off-policy outputs. That shift appears to improve robustness, transfer, and interpretability at the same time.

Source: Hugging Face Daily Papers

Comments

Checking sign-in status...

Loading comments...

Related articles

CCTest · Blog
On-Policy Self-Distillation Without Supervision: Learning from a Model’s Own Consensus
Large Language Models
cctest.ai

On-Policy Self-Distillation Without Supervision: Learning from a Model’s Own Consensus

The paper introduces U-OPSD, an unsupervised on-policy self-distillation method that builds pseudo-solutions from a model’s own multiple generations. By training on disagreements with those self-consistent pseudo-solutions, it improves mathematical reasoning without ground-truth labels or stronger teachers.

Read more