Research
InternVL-U: Democratizing Unified Multimodal Models for Understanding, Reasoning, Generation and Editing
Overview Research area: Computer Vision / Multimodal Foundation Models — specifically Unified Multimodal Models (UMMs) that combine image understanding, reasoning, image generation, and image editing
- arXiv
- 2603.09877
- Published
- 2026-03-10
- Authors
- Changyao Tian, Danni Yang, Guanzhou Chen, Erfei Cui, Zhaokai Wang, Yuchen Duan, Penghao Yin, Sitao Chen, Ganlin Yang, Mingxin Liu, Zirun Zhu, Ziqian Fan, Leyao Gu, Haomin Wang, Qi Wei, Jinhui Yin, Xue Yang, Zhihang Zhong, Qi Qin, Yi Xin, Bin Fu, Yihao Liu, Jiaye Ge, Qipeng Guo, Gen Luo, Hongsheng Li, Yu Qiao, Kai Chen, Hongjie Zhang
AI summary
Overview
- Research area: Computer Vision / Multimodal Foundation Models — specifically Unified Multimodal Models (UMMs) that combine image understanding, reasoning, image generation, and image editing in a single system.
- Technical level: Advanced. The paper assumes familiarity with MLLM backbones, diffusion and flow-matching objectives, MMDiT architectures, VAE latents, and rotary positional embeddings.
- Scope: This technical report introduces InternVL-U, a 4B-parameter unified multimodal model built on InternVL 3.5 with a custom MMDiT-based visual generation head, trained through a three-stage curriculum with a large synthetic data pipeline targeting high-semantic-density tasks such as text rendering and scientific reasoning. Note: the provided paper content is truncated at Section 4.4, so the detailed experimental results tables are not available.
What This Paper Is About
Unified multimodal models face a trade-off: making a model good at understanding and reasoning tends to conflict with making it good at generating and editing images, because the two capabilities are trained on different kinds of data and require different visual representations. Existing approaches either train everything from scratch (expensive and hard to balance) or bolt a large external image generator onto an understanding model (costly and hard to align). InternVL-U's goal is to achieve strong generation and editing without sacrificing the multimodal understanding and reasoning ability of its backbone — and to do so at a lightweight scale of only 4B parameters.
Key Contributions
-
A 4B-parameter unified architecture built on three stated design principles: unified contextual modeling with modality-adaptive generation targets, modality-specific modular design for structural efficiency, and decoupled visual representations for understanding versus generation. The model pairs an InternVL 3.5 MLLM backbone with a custom MMDiT-based visual generation head using separate ViT (semantic) and VAE (reconstruction) representations.
-
A comprehensive data construction pipeline targeting high-semantic-density tasks: automated text rendering and editing (bilingual Chinese/English), science-centric data built with programmatic tools (e.g., GeoGebra, SVG) and academic corpora in mathematics, physics, and computer science, plus spatial and humor generation data.
-
A "Reasoning-centric" data synthesis paradigm that uses explicit Chain-of-Thought to convert vague user instructions into executable plans with planning and constraints, applied to meme generation, geometric transformation, and logically constrained editing.
-
Evaluation tooling for the community: GenEditEvalKit to streamline UMM evaluation and TextEdit Benchmark as a more comprehensive text-editing benchmark.
Main Findings
-
Efficiency–performance balance: Despite using only 4B parameters, InternVL-U is reported to consistently outperform unified baseline models with over 3× larger scales, such as BAGEL (14B), on various generation and editing tasks, while retaining strong multimodal understanding and reasoning.
-
Text rendering is a key target: The paper argues prior unified architectures have a deficiency in legible text rendering, and claims InternVL-U exhibits exceptional instruction following and addresses this gap through its text-centric synthesis pipeline.
-
Chain-of-Thought helps generation, not just reasoning: Integrating the CoT strategy is described as a vital catalyst for both generation and editing, enabling strong performance on knowledge-rich generation and complex logic-dependent editing.
-
Understanding is preserved: InternVL-U is reported to retain the robust multimodal capabilities of its predecessor and to surpass comparable unified baselines without compromising native visual-language comprehension.
-
Architectural novelty — gating in MMDiT: The paper states this is the first integration of a gating mechanism within the MMDiT architecture, used to enhance non-linearity and mitigate "attention-sink" phenomena in high-resolution, long-context settings, with minimal parameter overhead.
-
Quantitative benchmark numbers: Not reported in the provided excerpt. The paper's Section 5 evaluations are referenced but truncated before the results tables.
Methodology in Plain English
The team started from an existing, strong open-source multimodal understanding model (InternVL 3.5) rather than training a unified model from scratch. They kept the language and understanding side mostly intact and added a separate image-generation module — an MMDiT — that reads the language model's internal hidden states as its conditioning signal.
Three design ideas shape the system:
-
Different objectives for different modalities. Text tokens are predicted the usual way (next-token prediction with cross-entropy). Images, being continuous and spatially correlated, are generated with Flow Matching in a continuous latent space instead of being turned into discrete tokens.
-
Different representations for reading and drawing. Understanding uses high-level semantic features from a pre-trained ViT; generation uses a separate VAE that compresses images into a reconstructable latent space. The paper's analogy is that people can perceive scenes they cannot necessarily draw — one encoder should not have to do both jobs.
-
Specialized modules instead of one uniform transformer. Rather than treating every modality as an identical token sequence, the backbone handles semantics while dedicated stems and heads handle modality-specific translation.
Training proceeds in three stages: first, freeze the MLLM and train only the generation head and projectors at a fixed 512px resolution using both text-to-image and image-editing data; second, continue training at variable resolution (512 to 1024 pixels, aspect ratios from 0.5 to 2.0) with the backbone still frozen, injecting the condition image's VAE latent for editing tasks to improve pixel-level consistency; third, unfreeze everything for end-to-end supervised fine-tuning mixed with Chain-of-Thought reasoning data, so the model plans in text before generating.
Data is assembled from a large pool of open-source datasets plus purpose-built synthesis pipelines: filtering by aesthetics, resolution, safety and watermark checks; retrieval- and synthesis-based expansion; perceptual-hash deduplication; multi-agent captioning and editing-instruction generation with automated quality verification; and specialized pipelines for text rendering and text editing.
Why This Matters
Impact on research. The paper offers a concrete position in an open debate about how to build unified multimodal models — arguing that decoupled visual representations and modality-specific modularity beat homogenized, modality-agnostic designs, and that a unified model can be built economically on top of an existing strong MLLM rather than trained from scratch. If the reported results hold, it lowers the parameter and compute bar for entering unified-model research.
Real-world applications (as described in the paper):
- Text editing in real imagery — modifying text on license plates, mobile interfaces, and signboards while preserving layout and context.
- Poster and typographic content creation — bilingual (Chinese and English) text rendering on natural images and pure-color backgrounds, including the paper's use of POSTER-TEXT and AutoPoster datasets.
- Scientific and educational illustration — structured visual-text data across mathematics, physics, and computer science generated via tools such as GeoGebra and SVG.
- Memes, humor, and spatial manipulation — reasoning-centric generation tasks that turn underspecified or abstract user intent into concrete visual output.
Industry relevance. The emphasis on typographic precision and knowledge-faithful content mirrors the direction of next-generation commercial systems the paper cites (e.g., Nano-Banana Pro). The release of GenEditEvalKit and TextEdit Benchmark also targets a known industry pain point: standardized, reproducible evaluation of unified models.
Future Directions
-
Scaling and generality of the design principles. The paper does not report whether the three principles (unified context with adaptive targets, modality-specific modularity, decoupled representations) hold at larger parameter counts or whether the efficiency advantage narrows.
-
Closing the gap to specialized generators. The paper states InternVL-U approaches, but does not claim to match, significantly larger specialized generation models — the remaining distance to models like Qwen-Image, FLUX.2, or Hunyuan Image 3.0 is an open question.
-
Extending the Reasoning-centric paradigm. Chain-of-Thought data is currently applied to meme generation, geometric transformation, and logically constrained editing; whether this generalizes to other abstract or multi-step visual tasks is not established.
-
Standardized evaluation of unified models. The introduction of GenEditEvalKit and TextEdit Benchmark raises the question of how these compare to existing evaluation suites and whether the community adopts them as common ground.
Target Audience
Researchers and engineers working on multimodal foundation models, unified understanding-and-generation architectures, diffusion/flow-matching generation heads, and controllable image editing. It is also relevant to practitioners interested in text rendering in generated images, synthetic data pipeline design, and Chain-of-Thought reasoning applied to visual tasks. Readers without background in MLLM architectures, diffusion objectives, or transformer internals will find the methodology sections demanding.
Authors’ abstract
Unified multimodal models (UMMs) that integrate understanding, reasoning, generation, and editing face inherent trade-offs between maintaining strong semantic comprehension and acquiring powerful generation capabilities. In this report, we present InternVL-U, a lightweight 4B-parameter UMM that democratizes these capabilities within a unified framework. Guided by the principles of unified contextual modeling and modality-specific modular design with decoupled visual representations, InternVL-U integrates a state-of-the-art Multimodal Large Language Model (MLLM) with a specialized MMDiT-based visual generation head. To further bridge the gap between aesthetic generation and high-level intelligence, we construct a comprehensive data synthesis pipeline targeting high-semantic-density tasks, such as text rendering and scientific reasoning, under a reasoning-centric paradigm that leverages Chain-of-Thought (CoT) to better align abstract user intent with fine-grained visual generation details. Extensive experiments demonstrate that InternVL-U achieves a superior performance - efficiency balance. Despite using only 4B parameters, it consistently outperforms unified baseline models with over 3x larger scales such as BAGEL (14B) on various generation and editing tasks, while retaining strong multimodal understanding and reasoning capabilities.