Today's Overview
- Unified image models don't fail at stacking abilities — the abilities fight each other. DanceOPD treats the conflict between text-to-image, local edits, and global edits as a training problem, reconciling them with on-policy field distillation and even absorbing inference tricks like CFG into the model.
- You don't need an external skill library to densify a sparse reward. OPID infers hierarchical skill supervision straight from finished on-policy trajectories, turning a trajectory-level reward into dense token-level self-distillation.
- A video model's most dangerous failure is not knowing it can't see clearly. Under motion blur, glare, and occlusion, accuracy drops 15-30 points while the model stays oblivious. Robust-TO scores each frame's reliability before orchestrating tools, and degrades the least across five perturbations.
- The real selling point of discrete visual tokens is efficiency. ViQ pairs text-aligned pretraining with split-head quantization to keep both semantics and detail, cutting multimodal training time by 20% to 70%.
Featured
01 One Model for Generation and Editing, Without the Tradeoff
Packing text-to-image, local editing, and global editing into one model is the consensus direction in image generation. The problem: these abilities are natural enemies. Add editing and text-to-image quality drops. Global and local editing interfere with each other too.
DanceOPD doesn't build a new architecture. It treats the infighting as a training problem. In a flow-matching model, each ability is a velocity field over a shared state space, and during training every sample is routed to its corresponding field. The key word is on-policy: the student doesn't fit a teacher's fixed outputs. It queries each field at the states its own generation rollout actually visits, aligning with a simple velocity MSE objective. So it learns how to combine abilities inside its own generation process, not how to memorize one teacher's answers. It can also absorb operator-defined fields like classifier-free guidance — an inference-time trick — baking into the model what used to happen only at inference.
The abstract reports gains across text-to-image, editing, realism-field absorption, and CFG absorption, claiming it strengthens the target ability while preserving base generation quality. No numbers are given, so the size of the improvement needs the full paper.
Key takeaways: - The hard part of a unified model isn't stacking abilities — it's that they pull against each other during training, and DanceOPD makes that conflict an explicit distillation target. - On-policy is the dividing line from ordinary distillation: the student learns ability composition on its own generation trajectory, not on a teacher's offline outputs. - Absorbing CFG into the model is a practical signal — it could cut guidance overhead at deployment, worth a look for teams building unified editing models.
Source: DanceOPD: On-Policy Generative Field Distillation
02 The Reward Only Lands at the End. Now Train Every Step.
Training language agents with outcome rewards — win or lose — has an old flaw: the signal is too sparse. A full multi-turn trajectory yields one score. The model knows it won or lost but not which step mattered or which step to fix.
The usual patch adds an external skill library or retrieved privileged context. Those cost maintenance and tend to mismatch the states the current policy actually reaches. OPID takes a cheaper route: infer skill supervision from the finished on-policy trajectory itself. Episode-level skills govern overall flow and pitfall-avoidance rules; step-level skills govern local decisions at key moments. Critical steps use step-level, the rest fall back to episode-level. After injecting skills into the history, the old policy re-scores the same response, and the shift in log-probability becomes a token-level self-distillation signal optimized alongside the outcome reward.
On ALFWorld, WebShop, and search-based QA, sample efficiency and robustness both improve over pure outcome RL. How large the gains are, and whether they hold across tasks, needs the comparison tables in the full paper.
Key takeaways: - Densifying a sparse reward doesn't require an external skill library — inferring it from your own trajectories yields dense token-level supervision. - Hierarchical skills plus key-step-first routing is a reusable way to model explicitly which step matters. - Useful for teams doing agentic RL, but the cross-task stability needs more replication before you bank on it.
Source: OPID: On-Policy Skill Distillation for Agentic Reinforcement Learning
03 A Video Model's Worst Habit Is Trusting Bad Frames
The assumed problem with video reasoning models is that they see things wrong. This paper points to something sneakier: the model treats every frame as equally reliable. Under motion blur, glare, or occlusion, accuracy falls 15-30 points while the model never notices its evidence has rotted. The authors call it the Blind Trust Problem.
Robust-TO scores each frame's reliability, then uses that score to decide which perception tool to call and how to weight evidence. Whether a frame deserves trust becomes part of every reasoning step. On clean input, average accuracy beats the strongest open-source baseline by 10.6 points and edges out Gemini-2.5-Pro.
The number that matters more is the gap. Across five real-world perturbations, Robust-TO drops the least — the smallest clean-to-degraded accuracy gap of any method compared. That minimal gap beats the leading absolute score for practitioners. A model silently treating bad evidence as real is far harder to debug than one that occasionally answers wrong.
Key takeaways: - A model not knowing it can't see clearly is the failure mode most easily missed when deploying video models, and harder to catch than a plain wrong answer. - When evaluating video models, look past clean-input accuracy to how wide the accuracy gap grows under perturbation. - Per-frame reliability scoring is a reusable fallback, but the actual payoff depends on the full paper and your own data.
Source: Confidence-Aware Tool Orchestration for Robust Video Understanding
04 Slicing Images into Discrete Tokens Is Easy. Not Losing Anything Is Hard.
Discretization always loses information; the only question is which end. A discrete representation optimized for reconstruction keeps detail but loses semantics. Optimize for semantics and you grind the detail away. Unified multimodal modeling wants both.
ViQ splits quantization into two steps. First, a pretrained language model gives the visual encoder text-aligned semantic supervision. Then comes feature discretization, using a position-aware split-head quantization mechanism that supports any native resolution. ViQ doesn't claim to solve the tradeoff. It pushes the question of whether a discrete representation can hold semantics and detail at once a little further: the paper reports matching the SOTA continuous high-dimensional encoder on multimodal tasks while preserving low-level reconstruction accuracy.
What matters for practitioners is the efficiency math. Switching to the quantized representation cuts multimodal training time by 20% to 70% across different LLMs and training recipes — the natural advantage of discrete tokens over continuous features.
Key takeaways: - The core tension in discrete visual representation is semantics versus detail, and ViQ advances the tradeoff with text-aligned pretraining plus split-head quantization without resolving it. - Any-native-resolution support matters more than benchmark numbers — it decides whether this representation can serve as a general backbone. - The 20-70% training speedup is the real selling point of discrete tokens over continuous features, worth tracking for cost-sensitive multimodal teams.
Source: ViQ: Text-Aligned Visual Quantized Representations at Any Resolution

Also Worth Noting
Today's Observation
The interesting thing today is two papers with "On-Policy...Distillation" in their names colliding from completely unrelated fields. DanceOPD reconciles the warring abilities inside image generation; OPID densifies the sparse RL reward for language agents. One does generation, one does agents, with no business overlap. Crack them open and the core method is identical — on-policy self-distillation: use the trajectories or samples the model's own current policy produces to generate fine-grained internal supervision (token-level, field-level), instead of relying on external teachers, external memory, or offline data.
Calling it a trend would be overreaching, but the coincidence sits on top of one shared bind: supervision of the final goal is too coarse. Trajectory-level sparse rewards, whole-image preferences, nothing guiding the middle. On-policy self-distillation handles distribution matching and dense supervision in one move: learning happens on the state distribution the model actually visits, and the coarse signal gets refined into step-by-step guidance. Two fields reaching this path at once looks less like copying than like one pain point forcing the same fix.
If your training is stuck with signal only at the finish line and darkness in between, read these two together. Check first whether your fine-grained internal supervision can be inferred from the model's own rollouts, before rushing to build an external teacher or memory store.