TL;DR
Flow Matching text-to-image models struggle when optimizing multiple objectives simultaneously: sparse rewards (single numerical scores) and conflicting gradient signals cause competing metrics to degrade each other. Flow-OPD (On-Policy Distillation) applies a technique proven in large language models—training a smaller model to mimic a larger one using live data—to align heterogeneous objectives without reward hacking.
✦ Why It Matters
Engineers building multi-objective generative models can adopt OPD to avoid metric collapse and improve training stability without redesigning reward structures.
Key Takeaways
Full Summary
Flow Matching (FM) represents a class of generative models for text-to-image synthesis that learn to transform noise into images by following learned trajectories. When trained to satisfy multiple objectives simultaneously—such as image quality, text alignment, and aesthetic appeal—these models encounter two interconnected problems: reward sparsity (relying on single numerical feedback signals that lack granularity) and gradient interference (conflicting optimization signals that pull model updates in opposing directions).
This creates a seesaw effect where improving performance on one metric causes degradation in others, alongside reward hacking where models exploit loopholes rather than genuinely improving. Flow-OPD adapts On-Policy Distillation (OPD), a technique successful in large language model alignment, to address these challenges in Flow Matching.
The approach leverages knowledge distillation—transferring learned patterns from one model to another—applied during on-policy training to smooth conflicting gradients and reduce reward sparsity. Results demonstrate measurable improvements in multi-task alignment without the typical metric trade-offs.
Related