OpenVLThinkerV2: A Generalist Multimodal Reasoning Model for Multi-domain Visual Tasks
A new training method for AI models that handle images and text claims to stabilize learning across wildly different visual tasks — but real-world gains remain to be proven.

The Thesis
Most AI models that combine vision and language struggle when trained on many different task types at once — each task pulls gradients (the signals that update the model's weights) in different directions, destabilizing learning. This paper introduces G²RPO, a modified version of a popular reinforcement-learning objective called GRPO, which forces each task's reward signals to follow a standard bell-curve distribution before they influence training. The effect is that no single task type can dominate or destabilize the overall model. The resulting model, OpenVLThinkerV2, is tested across 18 benchmarks covering visual question answering, math reasoning, and spatial grounding tasks. The catch: most of the evidence comes from academic benchmarks, and the paper's claims about 'beating leading proprietary frontier models' need independent verification.
Catalyst
Group Relative Policy Optimization (GRPO) — a reinforcement-learning method that scores model outputs relative to a group rather than absolute ground truth — became widely adopted in 2024 after powering models like DeepSeek-R1. As open-source labs started applying GRPO to multimodal (image + text) models, the variance problem across diverse visual tasks became acute and poorly understood. This paper's timing reflects the community's pivot from single-domain to generalist multimodal RL training, where reward incompatibility across tasks is now the dominant bottleneck.
What's New
Standard GRPO normalizes rewards linearly within a batch — meaning a task with large, noisy reward swings can dominate gradient updates and hurt unrelated tasks. Earlier multimodal RL papers such as LLaVA-R1 and InternVL-based RL variants applied GRPO largely task-by-task or with simple reward clipping. G²RPO instead applies a non-linear transformation to force each task's advantage distribution (the relative quality signal for each output) to match a Gaussian (bell-curve) shape, ensuring that every task contributes equally sized gradient signals regardless of how noisy or sparse its rewards are.
The Counter
The core claim — that forcing advantage distributions to be Gaussian improves inter-task equity — is theoretically tidy but experimentally underspecified. The paper tests 18 benchmarks, but many of these benchmarks are correlated and well-known to favor specific model families; there's no evidence the gains hold on held-out, real-world deployment tasks. The claim of beating 'leading proprietary frontier models' is not independently verified and likely refers to selective benchmark comparisons. G²RPO adds a non-linear transformation step that itself introduces hyperparameters (the shape of the target distribution); it's not clear these are robust across model scales or task mixes different from the ones tested. Most critically, 'training stability' is a notoriously easy metric to cherry-pick — the paper would need to show wall-clock training efficiency and downstream task transfer to make the case compelling. Open-source multimodal RL is a fast-moving space; similar normalization tricks have appeared in concurrent work, making this paper's specific contribution potentially incremental.
Longs
- QCOM — on-device multimodal inference for mobile chips
- AMD — open-source model training on RDNA/CDNA accelerators
- ARKG (ARK Genomics ETF) — indirect; multimodal reasoning applies to medical imaging workflows
- SOUN — voice/vision multimodal edge deployments
- Baidu (BIDU) — Chinese open-source multimodal model ecosystem
Shorts
- Anthropic Claude vision — if open-source generalist multimodal models close the gap, Claude's premium pricing for vision tasks weakens
- Scale AI — human-labeled reward data becomes less valuable if RL-from-model-feedback stabilizes without it
- Proprietary fine-tuning API providers (OpenAI fine-tuning) — open RL training pipelines reduce dependency on closed APIs
Enablers (Picks & Shovels)
- Hugging Face TRL library — open-source GRPO/RL training tooling that this work extends
- vLLM — inference engine used for fast rollout generation during RL training
- LMDeploy and SGLang — serving frameworks for multimodal models at evaluation scale
- Open-source benchmark suites: MathVista, MMBench, and MMMU — which provide the multi-domain evaluation infrastructure this paper relies on
Private Watchlist
- Mistral AI — open-weight multimodal model development
- Together AI — infrastructure for open-source RL fine-tuning
- Anyscale — distributed RL training pipelines for vision-language models
- Cartesia — efficient multimodal inference
Resources
The Paper
Group Relative Policy Optimization (GRPO) has emerged as the de facto Reinforcement Learning (RL) objective driving recent advancements in Multimodal Large Language Models. However, extending this success to open-source multimodal generalist models remains heavily constrained by two primary challenges: the extreme variance in reward topologies across diverse visual tasks, and the inherent difficulty of balancing fine-grained perception with multi-step reasoning capabilities. To address these issues, we introduce Gaussian GRPO (G$^2$RPO), a novel RL training objective that replaces standard linear scaling with non-linear distributional matching. By mathematically forcing the advantage distribution of any given task to strictly converge to a standard normal distribution, $\mathcal{N}(0,1)$, G$^2$RPO theoretically ensures inter-task gradient equity, mitigates vulnerabilities to heavy-tail outliers, and offers symmetric update for positive and negative rewards. Leveraging the enhanced training stability provided by G$^2$RPO, we introduce two task-level shaping mechanisms to seamlessly balance perception and reasoning. First, response length shaping dynamically elicits extended reasoning chains for complex queries while enforce direct outputs to bolster visual grounding. Second, entropy shaping tightly bounds the model's exploration zone, effectively preventing both entropy collapse and entropy explosion. Integrating these methodologies, we present OpenVLThinkerV2, a highly robust, general-purpose multimodal model. Extensive evaluations across 18 diverse benchmarks demonstrate its superior performance over strong open-source and leading proprietary frontier models.