PUST: Decoupling LLM Post-Training for Reusable & Efficient Alignment

Proxy Exploration and Reusable Guidance: A Modular LLM Post-Training Paradigm via Proxy-Guided Update Signals

2026-07-01
Daocheng Fu, Rong Wu, Yu Yang, Xuemeng Yang, Jianbiao Mei, Licheng Wen, Pinlong Cai, Yong Liu, Botian Shi, Yu Qiao
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces Proxy-guided Update Signal Transfer (PUST), a modular post-training framework that decouples reward-driven exploration from policy alignment using lightweight proxy models. By transferring relative improvement signals instead of absolute distributions, PUST enables asynchronous, reusable, and cross-model capability enhancement, achieving state-of-the-art results on the Qwen3-family across math and coding benchmarks.

TL;DR

Post-training just got modular. Proxy-guided Update Signal Transfer (PUST) separates the expensive "trial-and-error" phase of RLHF from the actual model update. By using a small model (proxy) to find the right direction and transferring that "update signal" to a larger model, PUST makes post-training asynchronous, cacheable, and remarkably cost-effective.

The Bottleneck: The Coupling of Exploration and Alignment

In standard Reinforcement Learning from Human Feedback (RLHF), your primary model — say, a 70B parameter beast — has to handle everything. It generates thousands of tokens (exploration) and then updates its weights based on rewards (alignment). This is:

  1. Expensive: Sampling from a 70B model is slow and GPU-intensive.
  2. Fragile: If you want to train a different model, you have to do it all over again.
  3. Monolithic: You cannot "save" the progress of exploration and apply it elsewhere.

The authors of PUST argue that reward-oriented optimization and distribution alignment serve distinct roles and shouldn't be trapped in the same loop.

The PUST Framework: Signal over Distribution

The core insight of PUST is that we shouldn't distill the absolute distribution of a teacher (which leads to the capability bottleneck of the teacher). Instead, we should extract the relative improvement signal — the "delta" showing which tokens were encouraged or suppressed during RL.

The 3-Step Workflow

  1. Proxy Exploration: A lightweight proxy (e.g., 1.7B) undergoes GRPO to discover high-reward behaviors.
  2. Signal Extraction: We calculate the log-ratio difference between the base proxy and the optimized proxy. This is the "Directional Update Signal."
  3. Signal Transfer: This signal is "pasted" onto the large primary model’s space.

The PUST Mechanism

The Math of Transfer

To prevent the primary model from over-updating (drifting too far from its original capabilities), PUST introduces Anchor-Based Update Calibration. The loss function effectively minimizes the KL divergence between the primary model and a dynamic target distribution created by the proxy's signal, adjusted by a calibration coefficient .

Does it Work? Weak-to-Strong Magic

The most striking result is the efficacy of transferring signals from a "weak" proxy to a "strong" primary model. In the Math domain, a 4B proxy boosted an 8B primary model by over 30 points on average across AIME benchmarks.

Performance Gains

Key Finding: The primary model often achieves higher accuracy than the proxy that guided it. This suggests that the signal acts as a "trigger" for latent capabilities already present in the larger model.

Reusability and the "Cache" of Intelligence

Because the update signal is decoupled, PUST allows for:

  • Asynchronous Generation: Collect signals once, use them forever.
  • Cross-Model Transfer: A signal from a Qwen-4B can improve a Qwen-1.7B and a Qwen-8B simultaneously.
  • Agnostic Scaling: You can tune the "intensity" of the feedback by simply changing the coefficient without re-running the RL loop.

Sensitivity Analysis of Lambda

Critical Insight: The Modular Future of RLHF

PUST fundamentally redefines training data as "environmental information" that can be compressed into a "transferable update signal."

Limitations:

  • The Scale Gap: If the gap between the proxy and primary is too large, the signals become noisy.
  • Static Delta: The signal is currently fixed after extraction. Future work on "Adaptive Calibration" (making dynamic based on token-entropy) will be the next frontier.

Conclusion

PUST is a significant step toward making LLM post-training a modular engineering discipline. By treating improvement signals as cacheable assets, it lowers the barrier for high-performance reasoning optimization, moving us away from monolithic, "all-or-nothing" RLHF runs toward a more flexible, scalable paradigm.

Find Similar Papers

Try Our Examples

  • Search for recent papers on "Weak-to-strong Generalization" in LLMs that specifically focus on transferring reasoning signals from small models to large models.
  • Which paper first proposed the concept of "Proxy Tuning" in language models, and how does the PUST framework's Relative Update Signal differ from that original methodology?
  • Explore research that applies asynchronous update signal transfer or modular post-training paradigms to multimodal LLM alignment or reinforcement learning from human feedback (RLHF).
Contents
PUST: Decoupling LLM Post-Training for Reusable & Efficient Alignment
1. TL;DR
2. The Bottleneck: The Coupling of Exploration and Alignment
3. The PUST Framework: Signal over Distribution
3.1. The 3-Step Workflow
3.2. The Math of Transfer
4. Does it Work? Weak-to-Strong Magic
5. Reusability and the "Cache" of Intelligence
6. Critical Insight: The Modular Future of RLHF
7. Conclusion