Skip to content

UniVR: Thinking in Visual Space for Unified Visual Reasoning

UniVR (ByteDance / Beijing Jiaotong University) trains a model to jointly learn complex reasoning, fine-grained physical dynamics, and long-term planning from pure visual demonstrations — no image-text pairs, no task-specific heuristics. Its core is VR-GRPO, a reinforcement-learning paradigm with complementary global and step-level rewards that enforce logical coherence and physical consistency along the reasoning trajectory. Alongside the method the authors release VR-X, a benchmark curated from 16 sources spanning long-horizon manipulation, spatial puzzles, and physical reasoning, and the first suite that assesses these heterogeneous capabilities under a purely visual protocol. UniVR reports up to +25% on VR-X and transfer gains to standard multimodal understanding benchmarks. Code, data, and models are open-sourced under Apache 2.0.

  • VR-GRPO is a GRPO variant with complementary global and step-level rewards that enforces logical coherence and physical consistency across the entire reasoning trajectory without task-specific heuristics or image-text pairs [Abstract].
  • Learning simultaneously across (complex reasoning, fine-grained physical dynamics, long-term planning) is possible from pure visual demonstrations — UniVR is framed as the first investigation of this joint objective [Abstract].
  • VR-X curates from 16 diverse sources spanning long-horizon manipulation, spatial puzzles, and physical reasoning, and is the first comprehensive benchmark that assesses these heterogeneous capabilities under a purely visual protocol [Abstract].
  • UniVR reports up to +25% improvement on VR-X over prior work [Abstract].
  • Superior visual reasoning transfers: training on VR-X also boosts performance on standard multimodal understanding benchmarks [Abstract].

UniVR is a model + training-paradigm pair. The training paradigm (VR-GRPO) is a group-relative-policy-optimization objective whose reward is decomposed into a global term (rewarding trajectory-level task correctness / coherence) and a step-level term (rewarding per-step logical and physical consistency). This dual reward is the structural counterpart of the shaped-reward pattern common across the reasoning-RL literature: rather than a single scalar over the whole rollout, VR-GRPO gives GRPO a signal at every reasoning step so that logical coherence and physical consistency can be enforced during the reasoning process, not just at the terminal answer. Inputs are pure visual demonstrations — no aligned image-text captions, no per-task heuristics — so the reward stack is the sole source of supervision. The benchmark VR-X is constructed alongside the method to give this training signal a home: 16 sources aggregated into a suite covering long-horizon manipulation, spatial puzzles, and physical reasoning, all evaluated under a purely visual protocol.

  • Up to +25% improvement on VR-X [Abstract].
  • Transfer: gains on multiple multimodal understanding benchmarks beyond VR-X [Abstract] — the abstract does not enumerate which benchmarks or the magnitudes.
  • Open source: all code, data, and models released [Abstract]; repository at github.com/bytedance/UniVR under Apache 2.0.

Per-task ablations of the global-vs-step-level reward split, and comparisons against other GRPO-family recipes (e.g. Video-Thinker’s correctness+format reward, HuDA’s perception-stack reward), are not visible in the abstract-only fetch.

The dual global + step-level reward is a concrete new point in the shaped-reward design space that Reasoning RL has been tracking: prior filed instances shape rewards by task type (hierarchical geodesic distance in vlm-gym: RL gym for vision language models (JAX), correctness + format-adherence in Video-Thinker: Sparking "Thinking with Videos" via Reinforcement Learning, perception-stack aggregation in Human detectors are surprisingly powerful reward models), but UniVR shapes by temporal position within a single rollout — the same trajectory gets both an outcome signal and a per-step process signal. That is closer in spirit to process-reward-modeling than to GRPO’s usual outcome-only pattern, and worth watching whether it generalizes to non-visual reasoning.

The “pure visual demonstrations, no image-text pairs” constraint also sharpens the Thinking with Modalities page’s substrate axis: UniVR is not adding a new substrate (it appears closest to substrate (a) — tagged latent skills in an autoregressive CoT — though the fetched abstract doesn’t disclose the CoT format) but it is the first filed datapoint attempting to train reasoning-in-visual-space without any language-side scaffolding at all. Contrast with Video-Thinker: Sparking "Thinking with Videos" via Reinforcement Learning, which trains visual reasoning via structured <grounding>/<caption> text tags on video, and Do multimodal models imagine electric sheep?, which shows mental imagery emerges from action-only supervision with a matched textual-CoT control failing — UniVR is the RL-based, no-text-supervision counterpart, though whether its reasoning trace is truly text-free at inference time isn’t retrievable from the abstract.