CoPD: Breaking the Expert Ceiling via Mutual Co-Evolution

Co-Evolving Policy Distillation

2026-04-01
Naibin Gu, Chenxu Yang, Qingyi Si, Chuanyu Qin, Dingyu Yao, Peng Fu, Zheng Lin, Weiping Wang, Nan Duan, Jiaqi Wang
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces Co-Evolving Policy Distillation (CoPD), a post-training framework that consolidates text, image, and video reasoning tasks into a single model via parallel expert branches. By interleaving Reinforcement Learning with Verifiable Rewards (RLVR) and mutual on-policy distillation, it achieves new SOTA integration, with Qwen3-VL-4B-Instruct surpassing domain-specific experts on multi-modal benchmarks.

TL;DR

Integrating multiple specialized capabilities (text, image, video reasoning) into a single LLM usually results in a "trade-off" where one skill erodes the other. Co-Evolving Policy Distillation (CoPD) solves this by training multiple "expert branches" in parallel. By alternating between reinforcement learning (to gain new knowledge) and mutual distillation (to keep the experts' "thinking patterns" aligned), CoPD creates a unified model that—for the first time—actually outperforms its specialized teachers.

Thinking Alike: The Behavioral Consistency Hypothesis

Why does standard distillation fail once an expert is "too smart"? The authors propose a Behavioral Consistency Hypothesis: A student can only absorb a teacher's knowledge if they occupy similar states in the latent space.

If a text expert and an image expert are trained to completion separately, they drift apart. By the time you try to distill them together, their token-level distributions are so far apart (measured by Top-k overlap) that the student cannot bridge the gap.

Pilot Study: Overlap vs. Gain Figure 1: Pilot study proving that as behavioral overlap (Top-k) increases, the effectiveness (Gain) of distillation rises linearly.

Methodology: The Co-Evolution Dance

CoPD replaces the static "Expert -> Student" pipeline with a dynamic Hub-and-Spoke or Pairwise parallel training process. The workflow consists of two tightly coupled phases:

  1. Phase I: Branch-Specific RLVR: Each branch (e.g., Text Branch, Image Branch) runs its own Reinforcement Learning (GRPO) on domain-specific data. This "pushes" the branches apart, exploring the frontier of expertise and creating informative differences.
  2. Phase II: Mutual On-Policy Distillation (OPD): Immediately after, the branches swap roles. The Text branch teaches the Image branch how to reason through text-based prompts, and vice versa. This "pulls" the branches back together, ensuring their behavioral patterns remain synchronized.

Model Architecture/Workflow Figure 2: The CoPD loop. RLVR creates expert knowledge; Mutual OPD ensures that knowledge is shared while it is still "fresh" and absorbable.

Results: Surpassing the Experts

The most striking result is the "All-in-One" consolidation. In a 3-branch setting (Text, Image, Video), CoPD achieved:

  • Text Reasoning: 58.76% (Higher than the specialized Text-Expert's 57.89%)
  • Image Reasoning: 56.97% (Higher than the Image-Expert's 55.76%)

Unlike "Mixed RLVR" (simply training on all data at once), which saw performance drops in text math tasks, CoPD maintains high specialized skill across all domains. This suggests that Model Parallelism isn't just for efficiency—it's a superior training paradigm for multi-modal reasoning.

Experimental Comparison Table Table 1: CoPD consistently beats independent experts and standard multi-teacher distillation (MOPD).

Deep Insights: The Rhythm of Learning

The authors investigated the ratio of Exploration () to Consolidation (). They found a "Goldilocks zone" (ratio of 1.5:1).

  • Too much RL? The experts drift too far apart (High KL divergence), and distillation fails.
  • Too much OPD? The experts become identical too quickly, and there is no new "frontier" knowledge to share.

Training Dynamics Figure 3: CoPD maintains Top-k overlap > 0.9 throughout training, whereas the static baseline drops to nearly 0.7.

Conclusion & Perspective

CoPD proves that the "Parallel Self"—multiple instances of a model learning different things and teaching each other simultaneously—is a powerful way to scale intelligence. This sidesteps the fundamental gradient conflict in multi-task learning by allowing models to specialize before they synchronize. For future AI developers, this provides a blueprint for building "Swiss Army Knife" models that don't lose the sharpness of a specialized blade.

Find Similar Papers

Try Our Examples

  • Which recent papers have investigated the "gradient conflict" or "interference" phenomenon in multi-task Reinforcement Learning for Large Language Models?
  • What is the theoretical origin of using "top-k token overlap" as a metric for behavioral similarity in distillation, and how do other metrics like Wasserstein distance compare?
  • How can Co-Evolving Policy Distillation be adapted for non-verifiable reward domains (e.g., creative writing or open-ended dialogue) where rule-based rewards are not available?
Contents
CoPD: Breaking the Expert Ceiling via Mutual Co-Evolution
1. TL;DR
2. Thinking Alike: The Behavioral Consistency Hypothesis
3. Methodology: The Co-Evolution Dance
4. Results: Surpassing the Experts
5. Deep Insights: The Rhythm of Learning
6. Conclusion & Perspective