OpenEnvision/Awesome-Multimodal-Modeling

Awesome Multimodal Modeling [Covers MLLM, UMM, and NMM]

JavaScript

546

155 commits

updated Sep 14, 2026

See the code

README

Awesome Multimodal Modeling

A Comprehensive Survey & Curated List of Multimodal Modeling
From Traditional Fusion to Native & Unified Architectures

Awesome PRs Welcome GitHub Stars Last Updated License CC0 1.0

Overview Traditional MLLMs UMMs NMMs Closed Source Models Resources

Overview · Traditional · MLLMs · UMMs · NMMs ·Closed Source Models · Resources

📢 News

  • [2026-06-06] 🚀 We released two new open-source model collections:
  • [2026-04-13] ⭐ The repository has already gained over 100 stars in just one day! Thank you all for the incredible support. We will keep updating this list with more cutting-edge models and resources. Your continued stars and PRs are warmly welcomed!
  • [2026-04-12] 🎉 We are excited to launch Awesome Multimodal Modeling — a curated reading list organized by architectural paradigms. A comprehensive survey paper is coming soon! Stay tuned.

Table of Contents

Browse the list

About This List

In this section: At a Glance · Curation Principles

This repository provides a structured, community-maintained survey of multimodal models, covering the full evolutionary arc from early fusion methods to today's natively-trained omni-models. We emphasize precise architectural definitions and classification, especially for the often-conflated categories of Unified Multimodal Models (UMMs) and Native Multimodal Models (NMMs).

Scope: Primary focus on image + text modalities; audio/video/3D are annotated where present. Omni/any-to-any models are marked with Omni.

At a Glance

DimensionCoverage
Primary scopeImage + text multimodal models, with explicit annotations for video, audio, and omni extensions
Core taxonomyTraditional multimodal models, MLLMs, UMMs, and NMMs with explicit architecture/training qualifications
Key distinctionU+G unification for UMMs; architectural and optimization coupling for NMMs, with overlapping membership allowed
What makes this repo differentArchitecture-first categorization, fusion-aware definitions, and curated links to adjacent awesome lists
Intended audienceResearchers, students, and engineers building or surveying multimodal systems

Curation Principles

PrincipleRule
Source qualityPrefer official conference proceedings, OpenReview, ACL Anthology, CVF Open Access, arXiv, and official project pages
Classification policyCategory assignment is based on this repository's architecture-first definitions, which may differ from authors' own branding
Venue policyIf a peer-reviewed venue is known, we list that venue; otherwise we keep the entry as arXiv
Scope disciplineModels, benchmarks, datasets, and analysis papers are tracked separately to avoid mixing artifacts
Inclusion barWe prioritize landmark papers, broadly adopted benchmarks, open implementations, or papers that clarify important taxonomy boundaries

Classification note: for ambiguous models sitting between MLLM, UMM, and NMM, this list records the category that best matches the training recipe and architectural coupling, not just the paper title. Architecture-native and training-native qualifications distinguish fusion structure from training history.

Back to Top


1. Introduction & Definitions

In this section: 1.1 Multimodal Model Evolution Stages · 1.2 Scope & Taxonomy · 1.3 Architecture Diagrams

1.1 Multimodal Model Evolution Stages

Subtopics: Traditional Multimodal Models · Multimodal Large Language Models (MLLMs) · Unified Multimodal Models (UMMs) · Native Multimodal Models (NMMs)

We use the following precise, architecture-first definitions throughout this list. Understanding these distinctions is critical for correctly classifying modern models.

Traditional Multimodal Models

Traditional category Alignment and Fusion

Pre-2023 mainstream era

Independent per-modality processing followed by simple fusion (early, late, or hybrid). No large-scale language model backbone. Focuses on representation alignment, cross-modal retrieval, and captioning. Examples: CLIP, ALIGN, ViLBERT, BLIP.

Multimodal Large Language Models (MLLMs)

MLLM category Modular late fusion

Pretrained-backbone multimodal language models

Combine a pretrained visual backbone or visual abstractor (e.g., ViT/CLIP/SigLIP, Q-Former, cross-attention adapter) with a pretrained LLM through a connector. The defining property is inheritance from strong pretrained unimodal backbones rather than joint multimodal pretraining from scratch. These models are primarily text-output understanding/reasoning systems, even when auxiliary generators are attached externally.

Key characteristics:

  • ✅ Pretrained visual encoder / abstractor
  • ✅ Pretrained LLM backbone
  • ✅ Connector layer or cross-attention bridge
  • ❌ No end-to-end multimodal pretraining from scratch
  • ❌ No native image generation inside the same backbone

Examples: LLaVA, Qwen-VL, InternVL, MiniCPM-V, CogVLM

Unified Multimodal Models (UMMs)

UMM category Understanding and generation

Single framework for Understanding + Generation (U+G)

A single framework that handles both multimodal understanding and visual generation. UMMs may reuse pretrained components or modular tokenizers; the defining feature is U+G unification, not whether the model is trained from scratch.

Key characteristics:

  • ✅ Unified understanding + generation
  • ✅ Shared model interface or shared backbone for U+G
  • ⚠️ May use pretrained components
  • ⚠️ May use decoupled encoders / modular tokenizers
  • ⚠️ If a model is also natively trained from scratch, its architectural details belong primarily in NMMs (§5)

Examples: Show-o, Janus, OpenUni, BAGEL, BLIP3-o

Native Multimodal Models (NMMs)

NMM category Architecture and training

Architectural integration and multimodal optimization

NMMs are described along two dimensions: architectural nativity captures how early and persistently modalities share core computation; optimization nativity captures when multimodal objectives enter training and which core parameters they optimize. Entries that establish only one dimension are qualified as architecture-native or training-native. Training from scratch provides strong optimization evidence, but is not assumed for every entry. UMM and NMM membership can overlap.

Key characteristics:

  • ✅ Fusion structure and training history are recorded separately
  • ✅ Pretrained components and initialization are annotated per model
  • ✅ Architecture-native entries may inherit pretrained backbones
  • ✅ Input: text tokens + image patches/tokens
  • ✅ Output: text (understanding focus; generation optional)

NMMs are further described by fusion architecture; training-native entries without a confirmed fusion classification are listed separately in §5.5:

NMM — Early Fusion

Modality tokens or embeddings enter shared core computation before the first shared backbone block. Separate tokenizers, input encoders, modality-specific experts, or output decoders can remain; their presence does not by itself imply late fusion.

  • Shared backbone computation over multimodal states
  • Discrete tokens, continuous latents, or pixel patches
  • Modality interaction from the first shared block
  • Initialization and trainable components annotated separately
  • Examples: Chameleon, Emu3, Transfusion; Show-o, Show-o2, OneCat, and Llama 4 carry architecture-native qualifications
NMM — Late Fusion

Each modality is first processed by a dedicated unimodal component (e.g., a vision tower or image encoder), but these components are jointly trained from scratch (not pretrained). Cross-modal interaction occurs at deeper layers.

  • Separate unimodal processing stages (trained from scratch)
  • Cross-modal interaction at deeper layers
  • More modality-specific parameters
  • Examples: Models with jointly-trained vision encoders → decoder interaction

1.2 Scope & Taxonomy

Multimodal Models
├── 2. Traditional Multimodal Models
│   ├── 2.1 Multimodel Representations & Alignment
│   │   ├── Multimodal Representations
│   │   ├── Multimodal Fusion
│   │   └── Multimodal Alignment
│   └── 2.2 Multimodal Pretraining
├── 3. Multimodal Large Language Models (MLLMs)
│   ├── 3.1 Foundation MLLMs
│   └── 3.2 Omni MLLMs
├── 4. Unified Multimodal Models (UMMs)
│   ├── 4.1 Taxonomy by Generation Paradigm
│   │   ├── Diffusion-Based UMMs
│   │   ├── Autoregressive (AR) UMMs
│   │   │   ├── Pixel Encoding
│   │   │   ├── Semantic Encoding
│   │   │   ├── Learnable Query Encoding
│   │   │   ├── Hybrid Encoding (Pseduo)
│   │   │   └── Hybrid Encoding (Joint)
│   │   └── Hybrid (AR + Diffusion) UMMs
│   │       ├── Pixel Encoding
│   │       └── Hybrid Encoding
│   └── 4.2 Any-to-Any / Omni UMMs
└── 5. Native Multimodal Models (NMMs)
    ├── 5.1 Design Analyses & Scaling Laws
    ├── 5.2 Early Fusion NMMs
    ├── 5.3 Late Fusion NMMs
    ├── 5.4 Any-to-Any / Omni NMMs
    └── 5.5 Training-Native Models

1.3 Architecture Diagrams

The NMM diagrams below illustrate from-scratch variants; initialization and input interfaces are specified per model in §5.

┌─────────────────────────────────────────────────────────────────┐
│           TRADITIONAL MULTIMODAL MODEL                          │
│                                                                 │
│  [Image] ──► [CNN/ViT Encoder] ──┐                              │
│                                  ├──► [Fusion] ──► [Output]     │
│  [Text]  ──► [LSTM/BERT]       ──┘                              │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           MLLM — MODULAR LATE FUSION                            │
│                                                                 │
│  [Image] ──► [Pretrained ViT/CLIP] ──► [Projector/Q-Former]     │
│                                                │                │
│                                                ▼                │
│  [Text]  ──────────────────────────► [Pretrained LLM] ──► [Text]│
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           UMM — UNIFIED UNDERSTANDING + GENERATION              │
│                                                                 │
│  [Image/Text Input] ──► [Shared/Modular Tokenizer]              │
│                                │                                │
│                                ▼                                │
│                   [Unified Transformer]                         │
│                       │           │                             │
│                       ▼           ▼                             │
│             [Text Output]      [Image Output]                   │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           NMM — EARLY FUSION (Trained from Scratch)             │
│                                                                 │
│  [Text tokens] ──┐                                              │
│                  └──► [Single Decoder Transformer] ──► [Text]   │
│  [Image patches ──► Linear Patchify] ──┘                        │
│   (raw pixels, minimal preprocessing)                           │
│   Multimodal interaction from Layer 1                           │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           NMM — LATE FUSION (Trained from Scratch)              │
│                                                                 │
│  [Image] ──► [Jointly-Trained Vision Component]                 │
│                         │                                       │
│                         ▼  (deep layers)                        │
│  [Text]  ──────────► [Cross-Modal Interaction] ──► [Text]       │
│           (All components trained jointly from scratch)         │
└─────────────────────────────────────────────────────────────────┘

Back to Top


2. Traditional Multimodal Models

In this section: 2.1 Multimodel Representations & Alignment · 2.2 Multimodal Pretraining

Pre-chat-MLLM and non-native multimodal systems that established the basic vocabulary of alignment, fusion, retrieval, captioning, and multimodal pretraining.

2.1 Multimodel Representations & Alignment

Subtopics: Multimodal Representations · Multimodal Fusion · Multimodal Alignment

Multimodal Representations

PaperVenueLinksNotesTask
Identifiability Results for Multimodal Contrastive LearningICLR 2023PaperTheoretical identifiability analysis of contrastive multimodal learningrepresentation learning
Unpaired Vision-Language Pre-training via Cross-Modal CutMixICML 2022PaperIntroduces CutMix-style augmentation for unpaired VLPvision-language pretraining
Balanced Multimodal Learning via On-the-fly Gradient ModulationCVPR 2022PaperBalances modality learning via dynamic gradient reweightingmultimodal optimization
FLAVA: A Foundational Language And Vision Alignment ModelarXiv 2021PaperUnified architecture for vision-language understanding and generationfoundation multimodal model
UniT: Multimodal Multitask Learning with a Unified TransformerarXiv 2021PaperSingle transformer for multiple multimodal tasksmultimodal multitask learning
MultiBench: Multiscale Benchmarks for Multimodal Representation LearningNeurIPS 2021PaperBenchmark suite for multimodal learning evaluationbenchmarking
Perceiver: General Perception with Iterative AttentionICML 2021PaperGeneral-purpose architecture for high-dimensional multimodal inputsgeneral multimodal architecture
Learning Transferable Visual Models From Natural Language SupervisionarXiv 2021PaperContrastive vision-language pretraining at scalevision-language contrastive learning
VinVL: Revisiting Visual Representations in Vision-Language ModelsarXiv 2021PaperImproved visual features for VL tasksvision-language representation improvement
Learning Transferable Visual Models From Natural Language SupervisionarXiv 2020PaperEarly large-scale vision-language contrastive learningvision-language pretraining
12-in-1: Multi-Task Vision and Language Representation LearningCVPR 2020PaperUnified multi-task learning across 12 VL tasksmulti-task learning
Learning Video Representations using Contrastive Bidirectional TransformerarXiv 2019PaperContrastive transformer for video representation learningvideo contrastive learning
OmniNet: A Unified Architecture for Multi-modal Multi-task LearningarXiv 2019PaperUnified encoder-decoder for multimodal tasksunified multimodal architecture
Learning Representations by Maximizing Mutual Information Across ViewsarXiv 2019PaperInfoMax principle for cross-view representation learningself-supervised learning
ViCo: Word Embeddings from Visual Co-occurrencesICCV 2019PaperLearning word embeddings from visual contextvision-language embeddings
Learning Factorized Multimodal RepresentationsICLR 2019PaperFactorized latent space for multimodal datarepresentation disentanglement
Deep Fragment Embeddings for Bidirectional Image Sentence MappingNeurIPS 2014PaperFragment-level image-sentence alignmentvision-language alignment
DeViSE: A Deep Visual-Semantic Embedding ModelNeurIPS 2013PaperEarly deep vision-to-language embedding modelvision-language embedding
Multimodal Deep LearningICML 2011PaperFoundational multimodal deep learning frameworkmultimodal deep learning

Multimodal Fusion

PaperVenueLinksNotesTask
Robust Contrastive Learning against Noisy ViewsarXiv 2022PaperRobust contrastive learning under noisy multi-view inputscontrastive learning
Attention Bottlenecks for Multimodal FusionNeurIPS 2021PaperIntroduces bottleneck attention mechanism for efficient multimodal fusionmultimodal fusion
VMLoc: Variational Fusion For Learning-Based Multimodal Camera LocalizationAAAI 2021PaperVariational multimodal fusion for camera localization tasksmultimodal localization
Trusted Multi-View ClassificationICLR 2021PaperConfidence-aware weighting for multi-view classificationmulti-view classification
Deep-HOSeq: Deep Higher-Order Sequence Fusion for Multimodal Sentiment AnalysisICDM 2020PaperHigher-order sequence fusion for multimodal sentiment analysismultimodal sentiment analysis
What Makes Training Multi-Modal Classification Networks Hard?CVPR 2020PaperAnalyzes optimization challenges in multimodal classificationtheoretical/empirical analysis
DeepCU: Integrating Both Common and Unique Latent Information for Multimodal Sentiment AnalysisIJCAI 2019PaperSeparates shared and private latent representations for fusionmultimodal sentiment analysis
XFlow: Cross-modal Deep Neural Networks for Audiovisual ClassificationIEEE TNNLS 2019PaperCross-modal feature exchange network for audio-visual tasksaudio-visual classification
MFAS: Multimodal Fusion Architecture SearchCVPR 2019PaperNeural architecture search for optimal multimodal fusion designarchitecture search
The Neuro-Symbolic Concept Learner: Interpreting Scenes, Words, and Sentences From Natural SupervisionICLR 2019PaperNeuro-symbolic model combining perception and reasoningneuro-symbolic learning
Efficient Low-rank Multimodal Fusion with Modality-Specific FactorsACL 2018PaperLow-rank factorization for efficient multimodal fusionefficient fusion
Memory Fusion Network for Multi-view Sequential LearningAAAI 2018PaperMemory-based fusion across temporal multimodal sequencessequential multimodal learning
Tensor Fusion Network for Multimodal Sentiment AnalysisEMNLP 2017PaperTensor-based full interaction modeling across modalitiesmultimodal sentiment analysis

Multimodal Alignment

PaperVenueLinksNotesTask
LanguageBind: Extending Video-Language Pretraining to N-modality by Language-based Semantic AlignmentarXiv 2023Paper CodeLanguage-centered alignment across image, video, audio, depth, thermal, and IMU modalitiesmultimodal alignment
CLIParXiv 2021Paper400M+ image-text pairs; dual-encoder (Vision Transformer + Text Transformer); contrastive alignment at embedding level; classic late-fusion foundationzero-shot image classification, retrieval
CoMIR: Contrastive Multimodal Image Representation for RegistrationNeurIPS 2020PaperContrastive learning for multimodal image registration alignmentmultimodal alignment
Multimodal Transformer for Unaligned Multimodal Language SequencesACL 2019PaperTransformer-based alignment for unaligned multimodal sequencessequence alignment
Temporal Cycle-Consistency LearningCVPR 2019PaperUses cycle-consistency for temporal cross-modal alignmenttemporal alignment
Deep Canonical Correlation AnalysisICML 2013PaperDeep learning extension of CCA for cross-view representation alignmentrepresentation alignment

2.2 Multimodal Pretraining

PaperVenueLinksNotesTask
Align before Fuse: Vision and Language Representation Learning with Momentum DistillationNeurIPS 2021 SpotlightPaperMomentum distillation for aligning vision-language representations before fusionvision-language pretraining
Less is More: ClipBERT for Video-and-Language Learning via Sparse SamplingCVPR 2021PaperSparse frame sampling for efficient video-language pretrainingvideo-language pretraining
UniT: Multimodal Multitask Learning with a Unified TransformerarXiv 2021PaperUnified transformer for multitask multimodal learningunified multimodal pretraining
Large-Scale Adversarial Training for Vision-and-Language Representation LearningNeurIPS 2020PaperAdversarial training improves robustness of vision-language representationsrobust multimodal pretraining
Vokenization: Improving Language Understanding with Contextualized, Visual-Grounded SupervisionEMNLP 2020PaperGrounds language tokens in visual context via voken supervisionvision-grounded language modeling
Integrating Multimodal Information in Large Pretrained TransformersACL 2020PaperInjects multimodal signals into large pretrained transformer architecturesmultimodal transformer pretraining
VL-BERT: Pre-training of Generic Visual-Linguistic RepresentationsarXiv 2019PaperJoint vision-language BERT-style pretrainingvision-language pretraining
VisualBERT: A Simple and Performant Baseline for Vision and LanguagearXiv 2019PaperEarly unified transformer for vision-language understandingvision-language pretraining
ViLBERT: Pretraining Task-Agnostic Visiolinguistic Representations for Vision-and-Language TasksNeurIPS 2019PaperTwo-stream transformer for cross-modal vision-language learningvision-language pretraining
Unicoder-VL: A Universal Encoder for Vision and Language by Cross-modal Pre-trainingarXiv 2019PaperCross-modal encoder for universal vision-language representationsvision-language pretraining
LXMERT: Learning Cross-Modality Encoder Representations from TransformersEMNLP 2019PaperCross-modality transformer encoder for vision-language reasoningvision-language pretraining
VideoBERT: A Joint Model for Video and Language Representation LearningICCV 2019PaperJoint discrete token modeling for video and languagevideo-language pretraining

Back to Top


3. Multimodal Large Language Models (MLLMs)

In this section: 3.1 Foundation MLLMs · 3.2 Omni MLLMs

Models that connect a pretrained visual encoder / abstractor to a pretrained LLM. Primarily text-output understanding and reasoning systems, defined by inherited pretrained unimodal backbones rather than multimodal pretraining from scratch.

3.1 Taxonomy Based on Vision Adapter

MLP/Others Projector

PaperVenueLinksNotesTask
Ling-3.0-flash-VLModel release 2026HFOpen-weight VLM (MIT) extending Ling-3.0-flash with a ViT and a two-layer MLP projector; supports image and video inputs with text outputs. BF16 and quantized checkpoints belong to the same model entryimage/video understanding, document understanding, visual reasoning, GUI agents
LLaDA-UIModel release 2026Code HFSigLIP-initialized native-resolution ViT connects to LLaDA2.0-mini-base through spatial 4-to-1 feature grouping and a two-layer MLP; block-wise diffusion generates text reasoning and GUI actions. Code and weights are available; checkpoint license is unspecified in the model card as of 2026-09-15screenshot understanding, GUI grounding, mobile/desktop/web agents
Muse Glimmer-30BModel release 2026HF ImplementationOpen-weight 30B model (Apache 2.0), distilled from Muse Spark; a dedicated Perception Encoder connects to the language backbone through an MLP adapter and linear projection; text and image inputs, text outputsvisual understanding, visual reasoning, coding, agentic tool use
DiffusionGemmaGoogle DeepMind, 2026Model Card HF ImplementationOpen-weight Gemma 4-based model (Apache 2.0); normalized visual features enter the language model through a linear projection, while an encoder-decoder architecture uses block-wise discrete diffusion for text generation. Image/video understanding with text output; no native image generationvisual understanding, video understanding, reasoning, efficient text generation
Mistral Medium 3.5Mistral AI, 2026Announcement HF ImplementationOpen-weight 128B dense VLM under a Modified MIT license; a from-scratch vision encoder connects through a patch merger and MLP projector to the language backbone. Supports text/image inputs and text outputs; whole-model from-scratch multimodal training is not establishedvisual understanding, reasoning, coding, long-horizon agents
Mage-VL: An Efficient Codec-Native Streaming Multimodal Foundation ModelarXiv 2026Paper Project Model4B codec-native streaming VLM combining a from-scratch Mage-ViT visual encoder, two-layer MLP projector, and pretrained Qwen3-4B-Instruct-2507 decoder; codec-guided token selection reduces visual tokens by over 75%image/video understanding, long video, proactive streaming
StepX-Edge: An On-Device UI Vision-Language Model via Architecture-Training-Deployment Co-DesignarXiv 2026Paper0.9B on-device UI VLM with UI-aware layered visual encoding and a progressive dimensionality projection connector; quantized deployment is validated on Snapdragon 8 Gen5UI understanding, OCR, grounding, on-device deployment
MiniCPM-V 4.5: Cooking Efficient MLLMs via Architecture, Data, and Training RecipearXiv 2025Paper Code ModelEfficient 8B MLLM built with Qwen3-8B, SigLIP2-400M and a unified 3D-Resampler for compact image-video encodingvisual understanding, document/OCR, video understanding, edge deployment
Moondream 3.1Model Release 2026Project ModelEfficient sparse MoE VLM with 9B total and 2B active parameters; supports visual reasoning, query, caption, detection, pointing and segmentationvisual understanding, grounding, segmentation, edge deployment
LLaVA-OneVision-1.5: Fully Open Framework for Democratized Multimodal TrainingarXiv 2025Paper Code HF4B / 8B; 85M mid-training data + 22M instruction data; ViT–MLP–LLM architecture with pretrained RICE-ViT, a two-layer MLP projector, and Qwen3 backbone; supports image, multi-image, and videovisual understanding, video
SAIL-VL2 Technical ReportarXiv 2025PaperOpen-suite 2B/8B vision-language foundation model with SAIL-ViT, progressive multimodal training, SFT-RL thinking fusion, and strong image/video reasoning across 106 datasetsvisual understanding, video, reasoning
Kwai Keye-VL 2.0 Technical ReportarXiv 2026Paperachieves state-of-the-art performance among models of similar scale, particularly excelling in fine-grained temporal localizationvideo understanding
Penguin-VL: Exploring the Efficiency Limits of VLM with LLM-based Vision EncodersarXiv 2026PaperLLM-initialized vision encoder (non-CLIP); text-to-vision weight reuse, generative-aligned visual features, optimized for dense perception.visual understanding
Youtu-VL: Unleashing Visual Potential via Unified Vision-Language SupervisionarXiv 2026PaperTri-modal (V+A+L) unified framework; parameter-efficient tuning, seamless cross-modal reasoning for mobile/IoT deployment.visual understanding
STEP3-VL-10B Technical ReportarXiv 2026Paper10B-scale foundation multimodal; unified unfrozen pre-training + PaCoRe test-time scaling, frontier-level reasoning with compact footprint.visual understanding
GLM-OCRarXiv 2026PaperGLM-OCR is an efficient 0.9B-parameter compact multimodal model designed for real-world document understanding.OCR, structured extraction
Kimi K2.5arXiv 2026Paperjoint text-vision pretraining, Agent Swarm framework; coding, vision, reasoning, agentic tasks; reduces latency by up to 4.5xvisual agentic intelligence, agentic, reasoning
Kwai Keye-VL 1.5 Technical ReportarXiv 2025PaperAdaptive Slow-Fast encoding; 8B parameter scale with 128K long-context; SOTA video reasoning & human-preference aligned.visual understanding
olmOCR / olmOCR-2arXiv 2025PaperEfficient low-VRAM OCR model based on Qwen2.5-VL fine-tune; excels at preserving semantic structure and markdown outputOCR, structured extraction
PaddleOCR-VLarXiv 2025HF / OfficialLightweight (0.9B+) multimodal OCR with 109 languages support; excellent chart-to-HTML/Markdown conversion and high-throughputOCR, multilingual document
DeepSeek-OCRarXiv 2025Paper HFLightweight ~3B MoE vision model optimized for high-volume OCR, document digitization, charts and formulas; efficient inferenceOCR, document
Kimi-VLarXiv 2025Paper HFProjector + MoE backbone; long video/PDF/GUI, agentic capabilities, chain-of-thought vision reasoningvisual understanding, agentic, video
Seed1.5-VL Technical ReportarXiv 2025Paper20B MoE + 532M ViT; native-resolution vision-language foundation model; efficient asymmetric architecture.visual understanding
Qwen3-VLarXiv 2025Paper HFFrontier-grade vision/OCR (32+ languages), video analysis, agentic capabilities, strong multimodal reasoning; includes large MoE variants (e.g., 235B)visual understanding, video, omni
SmolVLMarXiv 2025HFUltra-lightweight (256M–2.2B) projector-based series; efficient on-device video and image understandingvisual understanding, efficiency
LLaDA-V: Large Language Diffusion Models with Visual Instruction TuningarXiv 2025PaperDiffusion LLM as LLM backbone; vision encoder: SigLIPvisual understanding
jina-vlmarXiv 2025Paper HFSigLIP2 + Qwen backbone with custom projector; optimized for semantic VQA, diagrams, scans and document semanticsvisual understanding, VQA, document
Phi-4-MultimodalarXiv 2025Paper HFSmall-parameter (LoRA + projectors) multimodal; vision + speech support, efficient on-device deploymentvisual understanding, on-device
Molmo / PixMoCVPR 2025Paper CodeStrong open-data/open-weight VLM pipelinevisual understanding
FastVLM: Efficient Vision Encoding for Vision Language ModelsCVPR 2025Paperefficient multimodal visual encoding for on-device deploymentvisual understanding, on-device
Qwen2.5-VL: Technical ReportarXiv 2025Paper HFStronger document, grounding, and video capabilitiesvisual understanding
General OCR Theory: Towards OCR-2.0 via a Unified End-to-end ModelarXiv 2024Paper HF/CodeSpecialized end-to-end OCR model with grounding (boxes + points); strong on scientific papers, slides, and mixed visual-text docsOCR, grounding
LLaVA-OneVision: Easy Visual Task TransferarXiv 2024Paper CodeSingle model for image, multi-image, and video transfervisual understanding
MiniCPM-V: A GPT-4V Level MLLM on Your PhonearXiv 2024Paper CodeOn-device efficient MLLMvisual understanding
NVILA: Efficient Frontier Visual Language ModelsCVPR 2025PaperEfficient general purpose multimodal LLM; spatial and temporal "Scale then compress" design; vision encoder: SigLIPvisual understanding
GLM-4VarXiv 2024PaperViT-based vision encoder (EVA-02-CLIP-L); high-resolution input support (up to 1120x1120) via image tiling, late-fusion architecture, optimized for document and OCR tasksvisual understanding
xGen-MM (BLIP-3)arXiv 2024PaperOpen training recipe, datasets, and safety-tuned variantsvisual understanding
DeepSeek-VL2: Mixture-of-Experts Vision-Language ModelsarXiv 2024Paper CodeMoE VLM with dynamic tiling and efficient inferencevisual understanding
PixtralarXiv 2024Paper HF12B open-weight model with strong instruction following, image+text understanding; competitive with larger open VLMsvisual understanding
Qwen2-VLarXiv 2024Paper HFDynamic resolution; native videovisual understanding
Cambrian-1: A Fully Open, Vision-Centric ExplorationNeurIPS 2024Paper CodeSpatial Vision Aggregatorvisual understanding
PaliGemma: A Versatile 3B VLM for TransferarXiv 2024Paper HFSigLIP encoder + Gemma backbone; strong transfer modelvisual understanding
InternLM-XComposer2arXiv 2024Paper CodeCompositional visual groundingvisual understanding
Phi-3-VisionarXiv 2024Paper HFSmall but capablevisual understanding
LLaVA-HR: High Resolution MLLMsCVPR 2024PaperMixture-of-Resolution Adaptationvisual understanding
InternVL2Model release 2024HFInstruction-tuned InternVL family release with strong multilingual and OCR capabilitiesvisual understanding
InternVL: Scaling up Vision Foundation ModelsCVPR 2024Paper CodeProgressively aligned ViT + LLMvisual understanding
MM1: Methods, Analysis & Insights from Multimodal LLM Pre-trainingarXiv 2024PaperLarge-scale proprietary recipe study for multimodal LLM pretrainingvisual understanding
Ovis: Structural Embedding Alignment for Multimodal Large Language ModelarXiv 2024Paper CodeStructural embedding alignment between visual tokens and LLM token spacevisual understanding
TextMonkey: An OCR-Free Large Multimodal Model for Understanding DocumentarXiv 2024Paper CodeOCR-free document MLLM emphasizing text-heavy imagesdocument understanding, OCR
MoE-LLaVA: Mixture of Experts for Large Vision-Language ModelsarXiv 2024Paper CodeSparse MoE extension of LLaVA-style visual instruction tuningvisual understanding
MobileVLM: A Fast, Strong and Open Vision Language Assistant for Mobile DevicesarXiv 2023Paper CodeLightweight VLM for mobile deploymentefficient visual assistant
Vary: Scaling up the Vision Vocabulary for Large Vision-Language ModelsarXiv 2023Paper CodeExpands visual vocabulary for dense OCR/document-style perceptiondocument understanding, OCR
LLaMA-VID: An Image is Worth 2 Tokens in Large Language ModelsarXiv 2023Paper CodeCompresses each frame/image into compact context tokens for efficient video MLLMsvideo understanding
Video-LLaVA: Learning United Visual Representation by Alignment Before ProjectionarXiv 2023Paper CodeUnified image-video representation before projection into LLMimage/video understanding
GLaMM: Pixel Grounding Large Multimodal ModelarXiv 2023Paper CodePixel-level grounding and phrase-region reasoninggrounded visual understanding
Ferret: Refer and Ground Anything Anywhere at Any GranularityarXiv 2023Paper CodeReferring and grounding across points, boxes, and free-form regionsgrounded visual dialogue
LLaVA-1.5: Improved Baselines with Visual Instruction TuningarXiv 2023Paper CodeStrong simple baseline with CLIP visual encoder, MLP projector, and instruction tuningvisual instruction tuning
ImageBind-LLM: Multi-modality Instruction TuningarXiv 2023Paper CodeConnects ImageBind-aligned modalities to an LLM for multi-modality instruction followingmulti-modal instruction tuning
PointLLM: Empowering Large Language Models to Understand Point CloudsarXiv 2023Paper CodeExtends LLM-based multimodal understanding to 3D point clouds3D understanding
LISA: Reasoning Segmentation via Large Language ModelarXiv 2023Paper CodeCouples MLLM reasoning with segmentation mask outputreasoning segmentation
GPT4RoI: Instruction Tuning Large Language Model on Region-of-InterestarXiv 2023Paper CodeRegion-of-interest instruction tuning for fine-grained visual reasoningregion-level understanding
3D-LLM: Injecting the 3D World into Large Language ModelsarXiv 2023Paper CodeProjects 3D scene features into LLMs for 3D reasoning and dialogue3D understanding
Shikra: Unleashing Multimodal LLM's Referential Dialogue MagicarXiv 2023Paper CodeReferential dialogue with natural-language coordinates and groundinggrounded visual dialogue
LLaVA-Med: Training a Large Language-and-Vision Assistant for Biomedicine in One DayarXiv 2023Paper CodeBiomedical adaptation of LLaVA-style visual instruction tuningbiomedical visual assistant
DetGPT: Detect What You Need via ReasoningarXiv 2023Paper CodeUses LLM reasoning to orchestrate detection tools and visual groundingdetection reasoning
VisionLLM: Large Language Model is also an Open-Ended Decoder for Vision-Centric TasksarXiv 2023Paper CodeTreats vision-centric tasks as open-ended decoding with LLMsvision-centric decoding
MultiModal-GPT: A Vision and Language Model for Dialogue with HumansarXiv 2023Paper CodeInstruction-tuned image-text dialogue modelvisual dialogue
LLaMA-Adapter V2: Parameter-Efficient Visual Instruction ModelarXiv 2023Paper CodeParameter-efficient visual instruction tuning via adaptersvisual instruction tuning
LLaMA-Adapter: Efficient Fine-tuning of Language Models with Zero-init AttentionarXiv 2023Paper CodeEarly adapter-based multimodal instruction tuning on LLaMAvisual instruction tuning
LLaVAarXiv 2023Paper Code7B / 13B+ CLIP vision encoder (frozen/pretrained) + linear projection to LLM (Vicuna/LLaMA); common late-fusion baselinevisual instruction tuning, VQA, image captioning

Q-Former

PaperVenueLinksNotesTask
M-MiniGPT4: Multilingual VLLM Alignment via Translated DataarXiv 2026PaperQ-Former based (inherits from MiniGPT-4 / BLIP-2)vision-language understanding
Video Q-Former: Multimodal Large Language Model with Spatio-Temporal Querying TransformerOpenReviewPaperSpatio-temporal Q-Former (learnable queries for video spatial-temporal feature extraction)video understanding
HierarQ: Task-Aware Hierarchical Q-Former for Enhanced Video UnderstandingarXiv 2025PaperHierarchical Q-Former (multi-level learnable queries with memory bank for long video)long video understanding
Towards Efficient Visual-Language Alignment of the Q-FormerarXiv 2024PaperPEFT-tuned Q-Former (parameter-efficient fine-tuning on InstructBLIP-style Q-Former)visual reasoning
Matryoshka Query Transformer (MQT) for Large Vision-Language ModelsNeurIPS 2024PaperMatryoshka Query Transformer (elastic learnable queries, variable token count)vision-language understanding
Semantically Grounded QFormer for Efficient Vision Language UnderstandingarXiv 2023PaperImproved Grounded QFormer (direct latent conditioning, bypass input projection)vision-language understanding
Video-LLaMA: An Instruction-tuned Audio-Visual Language Model for Video UnderstandingarXiv 2023Paper CodeBLIP-2/Q-Former-style visual and audio query transformers for video dialogueaudio-video understanding
InstructBLIP: Towards General-purpose Vision-Language Models with Instruction TuningarXiv 2023Paper CodeInstruction-aware Q-Former trained over diverse vision-language tasksvisual instruction tuning
VideoChat: Chat-Centric Video UnderstandingarXiv 2023Paper CodeVideo-centric MLLM for temporal dialogue and understandingvideo understanding
mPLUG-Owl: Modularization Empowers Large Language Models with MultimodalityarXiv 2023Paper CodeModular visual abstractor connected to a pretrained LLMvisual instruction tuning
MiniGPT-4: Enhancing Vision-Language Understanding with Advanced Large Language ModelsarXiv 2023Paper CodeUses BLIP-2 visual encoder/Q-Former and aligns visual features to Vicunavisual dialogue
BLIP-2: Bootstrapping Language-Image Pre-training with Frozen Image Encoders and Large Language ModelsICML 2023Paper CodeFoundational Q-Former architecture bridging frozen vision encoders and frozen LLMsvision-language pretraining

Cross-Attention

PaperVenueLinksNotesTask
CASA: Cross-Attention over Self-AttentionarXiv 2025PaperEfficient cross-attention via self-attention reformulation; competitive with token insertion on image benchmarks, strong for long videoefficient vision-language fusion, video captioning
LLaMA 3.2 VisionarXiv 2024Paper HFAdapter-based vision addition to Llama 3.2; strong OCR, document VQA, 128K contextvisual understanding, document
Idefics2arXiv 2024Paper HFFlamingo-style with Perceiver Resampler + gated cross-attention; improved efficiency on Mistral backboneopen multimodal understanding
CogVLM: Visual Expert for Pretrained Language ModelsarXiv 2023Paper CodeDeep fusion with visual expert modules inside a pretrained LLMvisual understanding
Qwen-VL: A Versatile Vision-Language ModelarXiv 2023Paper HFHigh-res, multi-lang, bounding boxvisual understanding
Kosmos-2: Grounding Multimodal Large Language Models to the WorldarXiv 2023Paper CodeAdds grounded phrase-region modeling to multimodal language modelinggrounded visual understanding
Kosmos-1: Language Is Not All You Need: Aligning Perception with Language ModelsarXiv 2023Paper CodePerception-language model aligning images and language for multimodal reasoningmultimodal reasoning
Flamingo: a Visual Language Model for Few-Shot LearningNeurIPS 2022PaperPerceiver Resampler + gated cross-attention layers for few-shot multimodal promptingfew-shot visual understanding
IDEFICSHugging Face80B Flamingo-inspired model; late fusion with vision encoder and LLMopen-source multimodal understanding

Hybrid Adaptor

PaperVenueLinksNotesTask
MiniCPM-V 4.6Model release 2026HF ArchitectureOpen-weight VLM (Apache 2.0) combining a SigLIP vision encoder, window-attention merger, MLP merger, and Qwen3.5 language backbone; supports 4x and 16x visual downsampling for efficient image/video understandingvisual understanding, document/OCR, video understanding, on-device deployment
EXAONE 4.5 Technical ReportarXiv 2026Paper CodeIntegrates a dedicated visual encoder with the EXAONE 4.0 framework for multimodal pretraining, with strong document understanding and Korean contextual reasoningvisual understanding, document
Phoenix-VL 1.5 Medium Technical ReportarXiv 2026Paper123B multilingual multimodal model continued-pretrained from Mistral Medium 3.1 on localized multimodal and long-context corporavisual understanding, multilingual
DeepSeek-OCR-2arXiv 2026Paper HFOptimized for high-volume OCR, document digitization, charts and formulas; efficient inferenceOCR, document
Ovis2.5arXiv 2025PaperFollowing VET architecture; excellent document understanding and fine-grained quantizationvisual understanding, document
Ovis2arXiv 2025HFEmbedding table / projector architecture; excellent document understanding and fine-grained quantizationvisual understanding, document
MiniMax-01: Scaling Foundation Models with Lightning AttentionarXiv 2025PaperHybrid Lightning-Softmax Attention; MoE-based (45.9B active) multimodal; 4M long-context with near-zero prefill latency.visual understanding
mPLUG-Owl3arXiv 2024Paper CodeLong visual sequencesvisual understanding
Idefics3arXiv 2024Paper HFOpen-data recipe with strong document understandingvisual understanding
NVLM 1.0: Open Frontier-Class Multimodal LLMsarXiv 2024Paper HFHybrid multimodal design with strong OCR and reasoningvisual understanding
Idefics2arXiv 2024Paper HFFully open; built on Mistralvisual understanding
mPLUG-DocOwl 1.5 / 2: Unified Structure Learning for OCR-free Document UnderstandingarXiv 2024Paper CodeOCR-free document understanding with unified structure learning; excels at long documents and complex layoutsdocument understanding, OCR

3.2 Omni MLLMs

PaperVenueLinksNotesTaskAdaptor
MiMo-V2.5Model release 2026HFOpen-weight MoE model (MIT) with a dedicated MiMo ViT and a MiMo-Audio-initialized audio encoder; text pretraining is followed by visual/audio MLP projector warmup and multimodal pretraining. Supports image, video, and audio understanding with text outputsimage/video/audio understanding, multimodal reasoning, long-context agentsMLP Projector
MiniCPM-o 4.5: Towards Real-Time Full-Duplex Omni-Modal InteractionarXiv 2026Paper Code Model9B edge-oriented omni model using Omni-Flow for simultaneous visual/audio perception and speech response; supports proactive full-duplex interaction with less than 12GB memoryvision-language understanding, audio understanding, speech generation, full-duplex live interactionHybrid
Nemotron 3 Nano Omni: Efficient and Open Multimodal IntelligencearXiv 2026Paper CodeEfficiency-optimized omni-modal backbone using Hybrid Mamba2-Transformer MoE; supports massive multi-modal contexts (10k+ tokens) for long-video reasoning and agentic GUI navigation on edge devicesomni-modal understanding & reasoningHybrid
OmniGAIA: Towards Native Omni-Modal AI AgentsarXiv 2026Paper CodeComprehensive benchmark for omni-modal agents with complex multi-hop queries across video, audio, and image; includes OmniAtlas agent with tool-integrated reasoningomni-modal understanding & reasoningNative
OmniVideo-R1: Reinforcing Audio-visual Reasoning with Query Intention and Modality AttentionarXiv 2026PaperReinforced audio-visual reasoning framework with query intention grounding and modality attention fusionaudio-visual reasoningHybrid
Uni-MoE-2.0-Omni: Scaling Language-Centric Omnimodal Large Model with Advanced MoE, Training and DataarXiv 2025Paper CodeMoE-based scaling for omnimodal understanding and generationomni-modal understanding & generationMLP Projector
Omni-AVSR: Towards Unified Multimodal Speech Recognition with Large Language ModelsarXiv 2025Paper CodeUnified audio-visual speech recognition using LLMsaudio-visual speech recognitionHybrid
LongCat-Flash-Omni Technical ReportarXiv 2025Paper CodeLong-context omni-modal model supporting text and audio generationlong-context omni-modalHybrid
OmniVinci: Enhancing Architecture and Data for Omni-Modal Understanding LLMarXiv 2025Paper CodeArchitecture and data enhancements for omni-modal understandingomni-modal understandingHybrid
InteractiveOmni: A Unified Omni-modal Model for Audio-Visual Multi-turn DialoguearXiv 2025Paper CodeUnified model for audio-visual multi-turn dialogueaudio-visual dialogueHybrid
OneLLM: One Framework to Align All Modalities with LanguageCVPR 2024PaperUnified framework aligning eight modalities to language through modality tokenizers and lightweight projectorsall-in-one LLMHybrid
MoME: Mixture of Matryoshka Experts for Audio-Visual Speech RecognitionNeurIPS 2025PaperMixture of Matryoshka experts for efficient audio-visual speech recognitionaudio-visual speech recognitionHybrid
Qwen3-Omni Technical ReportarXiv 2025Paper CodeOmni-modal model with text and audio capabilities (Alibaba/Qwen series)omni-modalNative
Qwen2.5-Omni Technical ReportarXiv 2025Paper CodeOmni-modal technical report with text and audio support (Alibaba/Qwen series)omni-modalHybrid
MiniCPM-o 2.6: A GPT-4o Level MLLM for Vision, Speech, and Multimodal Live Streaming on Your Phone2025Paper CodeOn-device GPT-4o level MLLM for vision, speech and multimodal live streaming (OpenBMB)on-device multimodal live streamingHybrid
Baichuan-Omni Technical ReportarXiv 2024Paper CodeTechnical report for Baichuan-Omni (Baichuan Inc.)omni-modalHybrid
Baichuan-Omni-1.5 Technical ReportarXiv 2025Paper CodeTechnical report for Baichuan-Omni 1.5 (Baichuan Inc.)omni-modalHybrid
VITA: Towards Open-Source Interactive Omni Multimodal LLMarXiv 2024Paper CodeOpen-source interactive omni multimodal LLMinteractive omni multimodalHybrid
VITA-1.5: Towards GPT-4o Level Real-Time Vision and Speech InteractionarXiv 2024Paper CodeReal-time vision and speech interaction modelreal-time multimodal interactionHybrid
Mini-Omni2: Towards Open-source GPT-4o with Vision, Speech and Duplex CapabilitiesNeurIPS 2024Paper CodeOpen-source GPT-4o style model with vision, speech and duplex capabilitiesvision-speech duplexHybrid
Ola: Pushing the Frontiers of Omni-Modal Language Model with Progressive Modality AlignmentarXiv 2025Paper CodeProgressive modality alignment for omni-modal language modelomni-modal alignmentMLP Projector
MIO: A Foundation Model on Multimodal TokensarXiv 2024Paper CodeFoundation model based on multimodal tokensmultimodal tokensNative
EMOVA: Empowering Language Models to See, Hear and Speak with Vivid EmotionsCVPR 2024Paper CodeMultimodal model supporting seeing, hearing and emotional speechemotional multimodalHybrid
Stream-Omni: Simultaneous Multimodal Interactions with Large Language-Vision-Speech ModelarXiv 2025Paper CodeSimultaneous multimodal interactions with language-vision-speech modelsimultaneous multimodalHybrid
ShapeLLM-Omni: A Native Multimodal LLM for 3D Generation and UnderstandingarXiv 2025Paper CodeNative multimodal LLM focused on 3D generation and understanding3D multimodalNative
Pengi: An Audio Language Model for Audio TasksarXiv 2023Paper CodeAudio-language model using audio representations with a frozen language model for audio captioning, QA, and retrieval-style tasksaudio-language understandingHybrid
LTU: Listen, Think, and UnderstandarXiv 2023Paper CodeAudio-oriented multimodal instruction-following model for open-ended audio understandingaudio-language understandingHybrid

Back to Top


4. Unified Multimodal Models (UMMs)

In this section: 4.1 Taxonomy by Generation Paradigm · 4.2 Any-to-Any / Omni UMMs

Models that unify multimodal understanding and visual generation within one framework. The defining property is U+G unification, not necessarily training from scratch.

Boundary with NMMs: if a unified model's central contribution is native end-to-end multimodal pretraining from scratch, we document its architectural details primarily in §5 NMMs and keep §4 focused on the unified U+G perspective.


Overview of representative paradigms and architectures of Unified Multimodal Models (UMMs). Source: https://github.com/AIDC-AI/Awesome-Unified-Multimodal-Models

4.1 Taxonomy by Generation Paradigm

Subtopics: Diffusion-Based UMMs · Autoregressive (AR) UMMs · Hybrid (AR + Diffusion) UMMs

Unified models are categorized according to their core generation mechanism for visual output (while supporting strong multimodal understanding). This taxonomy highlights trade-offs in fidelity, reasoning, efficiency, and training stability.

Diffusion-Based UMMs

ModelVenueLinksParadigmNotesTask
LLaDA2.0-UniarXiv 2026Paper CodeUnified Discrete DiffusionUnified image generation + understanding base on LLaDA2.0visual understanding, visual generation
Dual DiffusionarXiv 2025Paper CodeDual DiffusionUnified image generation + understanding via bidirectional diffusionvisual understanding, visual generation
UniDiscarXiv 2025Paper CodeUnified Discrete DiffusionDiscrete diffusion for multimodal U+Gvisual understanding, visual generation
MMaDAarXiv 2025Paper CodeMultimodal Large Diffusion LMDiffusion LM for unified understanding/generationvisual understanding, visual generation
FUDOKIarXiv 2025PaperDiscrete Flow-based UnifiedKinetic-optimal velocities for U+Gvisual understanding, visual generation
MudditarXiv 2025Paper CodeUnified Discrete DiffusionLiberating generation beyond T2Ivisual understanding, visual generation
Lavida-OarXiv 2025Paper CodeElastic Large Masked DiffusionElastic masked diffusion for U+Gvisual understanding, visual generation
UniModelarXiv 2025PaperVisual-Only MMDiT FrameworkVisual-only unified multimodal U+Gvisual understanding, visual generation

Autoregressive (AR) UMMs

Pixel Encoding
ModelVenueLinksModalitiesNotesTask
LWMarXiv 2024Papervideo + languageWorld model on million-length video and language with blockwise ring attentionvisual understanding, visual generation
ChameleonarXiv 2024Paper Codeimage + textMixed-modal early-fusion foundation models; token-by-token generationvisual understanding, visual generation
ANOLEarXiv 2024Paper Codeimage + textOpen autoregressive native LMM for interleaved image-text generationvisual understanding, visual generation
MMARarXiv 2024Paperimage + textLossless multi-modal auto-regressive probabilistic modelingvisual understanding, visual generation
OrthusarXiv 2024Paper Codeimage + textAutoregressive interleaved image-text generation with modality-specific headsvisual understanding, visual generation
SynerGen-VLarXiv 2024Paperimage + textSynergistic image understanding and generation with vision experts and token foldingvisual understanding, visual generation
LiquidarXiv 2024Paper Codeimage + textLanguage models are scalable and unified multi-modal generatorsvisual understanding, visual generation
UGenarXiv 2025Paperimage + textUnified autoregressive multimodal model with progressive vocabulary learningvisual understanding, visual generation
HarmonarXiv 2025Paper Codeimage + textShared MAR encoder for semantic + fine-grained harmony; SOTA GenEvalvisual understanding, visual generation
TokLIParXiv 2025Paper Codeimage + textMarry visual tokens to CLIP for U+Gvisual understanding, visual generation
SelftokarXiv 2025Paper Codeimage + textDiscrete visual tokens for AR / Diffusion / Reasoningvisual understanding, visual generation
OneCatarXiv 2025Paper Codeimage + textPure decoder-only unified U+Gvisual understanding, visual generation
Uni-XarXiv 2025Paper Codeimage + textTwo-end-separated architecture mitigating modality conflictvisual understanding, visual generation
Emu3arXiv 2024Paper Codeimage + video + textEarly-fusion native autoregressive model; see NMM / Early Fusion for architectural classificationvisual understanding, visual generation
Semantic Encoding
TitleVenueLinksFocusTask
Ming-UniVision: Joint Image Understanding and Generation with a Unified Continuous TokenizerarXiv 2025Paper CodeUnified continuous tokenizer for joint understanding and generationvisual understanding, visual generation
Bifrost-1: Bridging Multimodal LLMs and Diffusion Models with Patch-level CLIP LatentsarXiv 2025Paper CodeBridging MLLMs and diffusion models via patch-level CLIP latentsvisual understanding, visual generation
Qwen-Image Technical ReportarXiv 2025Paper CodeHigh-quality image generation with strong text renderingvisual generation
X-Omni: Reinforcement Learning Makes Discrete Autoregressive Image Generative Models Great AgainarXiv 2025Paper CodeRL-enhanced discrete autoregressive unified modelingvisual understanding, visual generation
Ovis-U1 Technical ReportarXiv 2025Paper Code3B unified model for understanding, text-to-image and editingvisual understanding, visual generation
UniCode²: Cascaded Large-scale Codebooks for Unified Multimodal Understanding and GenerationarXiv 2025PaperCascaded large-scale codebooks for unified modelingvisual understanding, visual generation
OmniGen2: Exploration to Advanced Multimodal GenerationarXiv 2025Paper CodeVersatile open-source unified generation modelvisual generation
Vision as a Dialect: Unifying Visual Understanding and Generation via Text-Aligned RepresentationsarXiv 2025Paper CodeText-aligned discrete semantic representationsvisual understanding, visual generation
UniFork: Exploring Modality Alignment for Unified Multimodal Understanding and GenerationarXiv 2025Paper CodeY-shaped architecture for modality alignmentvisual understanding, visual generation
UniWorld: High-Resolution Semantic Encoders for Unified Visual Understanding and GenerationarXiv 2025Paper CodeHigh-resolution semantic encodersvisual understanding, visual generation
Pisces: An Auto-regressive Foundation Model for Image Understanding and GenerationarXiv 2025PaperAuto-regressive foundation modelvisual understanding, visual generation
DualToken: Towards Unifying Visual Understanding and Generation with Dual Visual VocabulariesarXiv 2025PaperDual visual vocabulariesvisual understanding, visual generation
UniTok: A Unified Tokenizer for Visual Generation and UnderstandingarXiv 2025Paper CodeUnified tokenizervisual understanding, visual generation
QLIP: Text-Aligned Visual Tokenization Unifies Auto-Regressive Multimodal Understanding and GenerationarXiv 2025Paper CodeText-aligned visual tokenizationvisual understanding, visual generation
MetaMorph: Multimodal Understanding and Generation via Instruction TuningarXiv 2024PaperInstruction tuning for unified multimodalvisual understanding, visual generation
ILLUME: Illuminating Your LLMs to See, Draw, and Self-EnhancearXiv 2024PaperSelf-enhancing unified see-and-drawvisual understanding, visual generation
PUMA: Empowering Unified MLLM with Multi-granular Visual GenerationarXiv 2024Paper CodeMulti-granular visual generationvisual understanding, visual generation
VILA-U: a Unified Foundation Model Integrating Visual Understanding and GenerationICLR 2024Paper CodeUnified foundation modelvisual understanding, visual generation
Mini-Gemini: Mining the Potential of Multi-modality Vision Language ModelsarXiv 2024Paper CodeMulti-modality potential miningvisual understanding, visual generation
MM-Interleaved: Interleaved Image-Text Generative Modeling via Multi-modal Feature SynchronizerarXiv 2024Paper CodeInterleaved image-text generative modelingvisual understanding, visual generation
VL-GPT: A Generative Pre-trained Transformer for Vision and Language Understanding and GenerationarXiv 2023PaperGenerative pre-trained transformervisual understanding, visual generation
Generative Multimodal Models are In-Context Learners (Emu2)CVPR 2024PaperIn-context learning generative multimodal modelvisual understanding, visual generation
DreamLLM: Synergistic Multimodal Comprehension and CreationICLR 2023PaperSynergistic multimodal comprehension and creationvisual understanding, visual generation
LaVIT: Unified Language-Vision Pretraining in LLM with Dynamic Discrete Visual TokenizationICLR 2023Paper CodeDynamic discrete visual tokenizationvisual understanding, visual generation
Emu: Generative Pretraining in MultimodalityICLR 2023PaperGenerative pretraining in multimodalityvisual understanding, visual generation
Learnable Query Encoding
TitleVenueLinksFocusTask
Skywork UniPic 2.0: Building Kontext Model with Online RL for Unified Multimodal ModelarXiv 2025PaperKontext model with online RL and MetaQuery connector for unified multimodal frameworkvisual understanding, visual generation, editing
TBAC-UniImage: Unified Understanding and Generation by Ladder-Side Diffusion TuningarXiv 2025PaperLadder-side diffusion tuning integrating MLLM and DiT via layer-wise alignmentvisual understanding, visual generation
UniLiP: Adapting CLIP for Unified Multimodal Understanding, Generation and EditingarXiv 2025PaperAdapting CLIP with unified continuous tokenizer for reconstruction, generation and editingvisual understanding, visual generation, editing
OpenUni: A Simple Baseline for Unified Multimodal Understanding and GenerationarXiv 2025Paper CodeSimple baseline with learnable queries and lightweight connector bridging MLLM and diffusionvisual understanding, visual generation
BLIP3-o: A Family of Fully Open Unified Multimodal Models-Architecture, Training and DatasetarXiv 2025PaperFully open unified multimodal models with complete architecture, training recipe and datasetsvisual understanding, visual generation
Ming-Lite-Uni: Advancements in Unified Architecture for Natural Multimodal InteractionarXiv 2025PaperUnified visual generator and native multimodal autoregressive model for natural interactionvisual understanding, visual generation
Nexus-Gen: A Unified Model for Image Understanding, Generation, and EditingarXiv 2025Paper CodePrefilled autoregression in shared embedding space unifying understanding, generation and editingvisual understanding, visual generation, editing
Transfer between Modalities with MetaQueriesarXiv 2025Paper CodeLearnable MetaQueries as efficient interface between autoregressive MLLMs and diffusion modelsvisual understanding, visual generation
SEED-X: Multimodal Models with Unified Multi-granularity Comprehension and GenerationarXiv 2024Paper CodeUnified multi-granularity visual semantics for arbitrary-size comprehension and generationvisual understanding, visual generation
Making LLaMA SEE and Draw with SEED TokenizerICLR 2023Paper CodeSEED tokenizer enabling LLaMA for scalable multimodal autoregression (see and draw)visual understanding, visual generation
Planting a SEED of Vision in Large Language ModelarXiv 2023Paper CodeSEED image tokenizer with 1D causal dependency and high-level semantics for LLM visionvisual understanding, visual generation
Hybrid Encoding (Pseduo)
TitleVenueLinksFocusTask
Skywork UniPic: Unified Autoregressive Modeling for Visual Understanding and GenerationarXiv 2025Paper CodeUnified autoregressive modeling with decoupled encoding for image understanding, generation and editingvisual understanding, visual generation
MindOmni: Unleashing Reasoning Generation in Vision Language Models with RGPOarXiv 2025Paper CodeUnified VLM with reasoning generation via Reinforcement Learning (RGPO)multimodal understanding, reasoning generation
UniFluid: Unified Autoregressive Visual Generation and Understanding with Continuous TokensarXiv 2025PaperUnified autoregressive framework using continuous visual tokensvisual understanding, visual generation
OmniMamba: Efficient and Unified Multimodal Understanding and Generation via State Space ModelsarXiv 2025Paper CodeEfficient linear-time unified multimodal model based on Mamba (state space models)multimodal understanding, visual generation
Janus-Pro: Unified Multimodal Understanding and Generation with Data and Model ScalingarXiv 2025Paper CodeScaled-up version of Janus with improved training strategy, more data and larger model sizemultimodal understanding, visual generation
Janus: Decoupling Visual Encoding for Unified Multimodal Understanding and GenerationarXiv 2024Paper CodeDecoupling visual encoding to enable unified understanding and generation in an autoregressive frameworkmultimodal understanding, visual generation
Hybrid Encoding (Joint)
TitleVenueLinksFocusTask
UniAR: Unified Multimodal Autoregressive Modeling with Shared Context-Visual Tokenizer is Key to UnificationICML 2026PaperShared context-visual tokenizer bridging understanding and generation; AR visual-token prediction with diffusion-based decoding for high-fidelity generation and editingvisual understanding, visual generation, editing
AToken: A Unified Tokenizer for VisionarXiv 2025Paper CodeAToken unified visual tokenizer achieving high-fidelity reconstruction and semantic understanding for images, videos and 3Dvisual understanding, visual generation
UniWeTok: An Unified Binary Tokenizer with Codebook Size 2128 for Unified Multimodal Large Language ModelarXiv 2026PaperUniWeTok unified binary tokenizer with 2^{128} codebook, pre-post distillation and generative-aware prior for MLLMsvisual understanding, visual generation
Towards Scalable Pre-training of Visual Tokenizers for GenerationarXiv 2025Paper CodeVTP unified visual tokenizer pre-training framework with joint image-text contrastive, self-supervised and reconstruction lossesvisual understanding, visual generation
The Prism Hypothesis: Harmonizing Semantic and Pixel Representations via Unified AutoencodingarXiv 2025Paper CodePrism Hypothesis and unified autoencoding (UAE) harmonizing semantic and pixel representations across modalitiesvisual understanding, visual generation
Show-o2: Improved Native Unified Multimodal ModelsarXiv 2025Paper CodeImproved native unified multimodal models with autoregressive modeling and flow matching for understanding and generationmultimodal understanding and generation
UniToken: Harmonizing Multimodal Understanding and Generation through Unified Visual EncodingCVPRW 2025Paper CodeUnified visual encoding combining discrete and continuous representations for autoregressive multimodal modelsmultimodal understanding and generation
VARGPT-v1.1: Improve Visual Autoregressive Large Unified Model via Iterative Instruction Tuning and Reinforcement LearningarXiv 2025Paper CodeEnhanced visual autoregressive unified model with iterative instruction tuning and DPO reinforcement learningvisual understanding, generation and editing
ILLUME+: Illuminating Unified MLLM with Dual Visual Tokenization and Diffusion RefinementarXiv 2025Paper CodeDual visual tokenization and diffusion refinement for unified multimodal large language modelmultimodal understanding and generation
SemHiTok: A Unified Image Tokenizer via Semantic-Guided Hierarchical Codebook for Multimodal Understanding and GenerationarXiv 2025PaperSemantic-guided hierarchical codebook for unified image tokenization supporting understanding and generationmultimodal understanding and generation
VARGPT: Unified Understanding and Generation in a Visual Autoregressive Multimodal Large Language ModelarXiv 2025Paper CodeVisual autoregressive framework unifying understanding and generation in a single MLLMvisual understanding and generation
TokenFlow: Unified Image Tokenizer for Multimodal Understanding and GenerationCVPR 2025Paper CodeUnified image tokenizer with dual-codebook architecture bridging understanding and generationmultimodal understanding and generation
MUSE-VL: Modeling Unified VLM through Semantic Discrete EncodingarXiv 2024PaperSemantic discrete encoding for unified vision-language model enabling efficient multimodal understanding and generationmultimodal understanding and generation

Hybrid (AR + Diffusion) UMMs

Pixel Encoding
PaperVenueLinksNotesTask
Tuna: Taming Unified Visual Representations for Native Unified Multimodal ModelsarXiv 2025Paper CodeNative unified multimodal model with cascaded VAE + representation encoder for unified continuous visual representationsmultimodal understanding and generation
LMFusion: Adapting Pretrained Language Models for Multimodal GenerationarXiv 2024PaperAdapting pretrained LLMs (Llama) for multimodal generation by adding parallel diffusion modules while keeping autoregressive text modelingmultimodal understanding and generation
MonoFormer: One Transformer for Both Diffusion and AutoregressionarXiv 2024Paper CodeSingle shared transformer backbone that handles both autoregressive modeling and diffusion for unified multimodal tasksvisual understanding and generation
Show-o: One Single Transformer to Unify Multimodal Understanding and GenerationICLR 2025Paper CodeUnified transformer combining autoregressive and discrete diffusion modeling to flexibly handle mixed-modality inputs/outputsmultimodal understanding and generation
Transfusion: Predict the Next Token and Diffuse Images with One Multi-Modal ModelICLR 2025Paper7B-scale reportSingle multimodal model combining next-token text prediction with image diffusion over mixed discrete/continuous sequences
Hybrid Encoding
PaperVenueLinksNotesTask
Mamoda2.5: Enhancing Unified Multimodal Model with DiT-MoEarXiv 2026Paper CodeUnified AR-Diffusion framework coupling multimodal understanding with a DiT-MoE generation backbone; supports image/video generation and editing, including few-step video editing. Paper and inference code are public; official repository lists model weights as under internal review as of 2026-09-15multimodal understanding, image/video generation, image/video editing
Vision as Unified Multimodal Generation (SenseNova-Vision)arXiv 2026Paper Model CollectionFine-tunes a pretrained BAGEL-7B-MoT unified model to express computer-vision tasks through native text, image, or mixed generation without task-specific prediction headsdetection, OCR, keypoints, segmentation, depth, normals, point maps, camera pose
Qwen-Image-2.0 Technical ReportarXiv 2026PaperCouples Qwen3-VL as condition encoder with a Multimodal Diffusion Transformer for unified high-fidelity image generation and precise editingmultimodal understanding, image generation, editing
S1-Omni-Image: A Unified Model for Scientific Image Understanding, Generation, and EditingarXiv 2026PaperBuilds on S1-VL-32B and injects reasoning hidden states into an image generation module for scientific image understanding, generation and editingscientific image understanding, generation and editing
Omni-Video 2: Scaling MLLM-Conditioned Diffusion for Unified Video Generation and EditingarXiv 2026Paper CodeConnects pretrained MLLMs with video diffusion models through lightweight adapters for unified video generation and editingvideo generation and editing
InternVL-U: Democratizing Unified Multimodal Models for Understanding, Reasoning, Generation and EditingarXiv 2026Paper Code4B unified multimodal model integrating a strong MLLM with an MMDiT-based visual generation head for understanding, reasoning, generation and editingmultimodal understanding, reasoning, generation and editing
EMMA: Efficient Multimodal Understanding, Generation, and Editing with a Unified ArchitecturearXiv 2025Paper CodeEfficient unified architecture with autoencoders, channel-wise concatenation, shared-decoupled networks and MoE for understanding, generation and editingmultimodal understanding, generation and editing
HBridge: H-Shape Bridging of Heterogeneous Experts for Unified Multimodal Understanding and GenerationarXiv 2025PaperAsymmetric H-shaped architecture bridging heterogeneous experts with symmetric dense mid-layer connections for unified multimodal modelingmultimodal understanding and generation
LightFusion: A Light-weighted, Double Fusion Framework for Unified Multimodal Understanding and GenerationarXiv 2025Paper CodeLight-weighted double fusion framework that efficiently integrates pretrained vision-language and diffusion modelsmultimodal understanding and generation
BAGEL: Emerging Properties in Unified Multimodal PretrainingarXiv 2025Paper CodeOpen-source foundational decoder-only model pretrained on trillions of interleaved multimodal tokens supporting native understanding and generationmultimodal understanding and generation
Mogao: An Omni Foundation Model for Interleaved Multi-Modal GenerationarXiv 2025PaperCausal interleaved multi-modal generation framework with deep-fusion, dual vision encoders and multi-modal classifier-free guidanceinterleaved multimodal generation
JanusFlow: Harmonizing Autoregression and Rectified Flow for Unified Multimodal Understanding and GenerationarXiv 2024Paper CodeMinimalist framework harmonizing autoregressive LLMs with rectified flow for efficient unified understanding and generationmultimodal understanding and generation

4.2 Any-to-Any / Omni UMMs

Models that extend unified understanding + generation beyond text and image to support any-to-any modality conversion (audio, video, speech, etc.). These often build on the paradigms above but emphasize native omni-modal tokenization, long-context handling, and cross-modal generation.

ModelPaperLinksNotesTask
Kling-Omni Technical ReportarXiv 2025PaperUnified Diffusion Transformer (DiT) framework with Prompt Enhancer for high-fidelity video generation and reasoning-based editingMulti-modal visual language (MVL) for unified generation and understanding
LongCat-Flash-OmniarXiv 2025Paper CodeEfficient omni model with flash-style acceleration and real-time audio-visual interaction (560B parameters)any-to-any multimodal generation and understanding
Ming-flash-omni 2.0Model release 2026-02-11HFOpen-weight 100B-total / 6B-active MoE model (MIT) based on Ling-2.0; unifies image, text, video, and audio inputs with image, text, and audio outputs, including image editing and controllable speech/audio/music synthesismultimodal understanding, image generation/editing, audio generation, streaming video conversation
Ming-Flash-OmniarXiv 2025Paper CodeSparse unified MoE architecture (100B total, 6.1B active) for efficient multimodal perception and generationany-to-any multimodal perception and generation
Qwen3-OmniarXiv 2025Paper CodeNext-gen Qwen omni model with unified modality space, maintaining SOTA across text/image/audio/videoany-to-any multimodal understanding and generation
Ming-OmniarXiv 2025Paper CodeUnified multimodal architecture for perception + generation (images, text, audio, video)any-to-any multimodal tasks
M2-OmniarXiv 2025PaperExtends Omni-MLLM with broader modality support and competitive performance to GPT-4oany-to-any multimodal modeling
SpiderarXiv 2024Paper CodeAny-to-many multimodal LLM with flexible output heads for arbitrary modality combinationsmultimodal understanding and generation
MIOarXiv 2024PaperToken-level unified multimodal foundation model on discrete multimodal tokensany-to-any multimodal token modeling
X-VILAarXiv 2024PaperCross-modality alignment for LLM-based multimodal systems (image/video/audio)multimodal understanding
AnyGPTarXiv 2024Paper CodeDiscrete token modeling for unified multimodal generationany-to-any multimodal generation
OmniFlowCVPR 2025PaperUses multi-modal rectified flows for any-to-any generation across modalitiesany-to-any generation across modalities
Video-LaVITICML 2024Paper CodeDecoupled visual-motion tokenization for video-language modelingvideo understanding and generation
Unified-IO 2CVPR 2024Paper CodeScales autoregressive multimodal models across modalitiesany-to-any multimodal tasks (vision, language, audio, action)
NExT-GPTarXiv 2023Paper CodeAny-to-any; encoder+LLM+diffusion decodersvisual understanding, visual generation, omni

Back to Top


5. Native Multimodal Models (NMMs)

In this section: 5.1 Design Analyses & Scaling Laws · 5.2 Early Fusion NMMs · 5.3 Late Fusion NMMs · 5.4 Any-to-Any / Omni NMMs · 5.5 Training-Native Models

Two dimensions of nativity: architectural integration and multimodal optimization. Architecture-native entries may inherit pretrained backbones; training-native entries are distinguished from claims about fusion depth. From-scratch initialization is stated only where supported. Models may also retain their UMM classification.

What recent arXiv work emphasizes: native multimodality is increasingly defined by end-to-end multimodal pretraining, tokenizer/representation co-design, and scaling strategies that explicitly address the asymmetry between vision and language.

5.1 Design Analyses & Scaling Laws

Recent arXiv papers sharpen the definition of NMMs and identify the main bottlenecks in native multimodal pretraining.

PaperVenueLinksInsights
Scaling Native Multimodal Pre-Training From ScratcharXiv 2026PaperDerives compute and allocation laws for transformer-based VLMs trained from scratch, showing distinct language and multimodal scaling behavior, data-mixture-sensitive multimodal allocation, and positive cross-modal transfer
Toward Native Multimodal Modeling: A RoadmaparXiv 2026PaperThe end-to-end pipeline from industrial perspectives from architectural coordination, massive data curation, to full-stack training recipes, inference & deployment, and the comprehensive evaluation for truly native modeling
Beyond Language Modeling: An Exploration of Multimodal PretrainingarXiv 2026PaperHighlights representation autoencoders, vision-language data synergy, and MoE for native pretraining
NaViL: Rethinking Scaling Properties of Native Multimodal Large Language Models under Data ConstraintsarXiv 2025Paper CodeEnd-to-end native MLLM scaling shows positive correlation between visual encoder and LLM size under data constraints; optimal meta-architecture balances cost and performance
Learning to See Before Seeing: Demystifying LLM Visual Priors from Language Pre-trainingarXiv 2025Paperreveals that LLMs develop latent visual priors during text-only pre-training, where reasoning-centric data (code and math) builds transferable visual reasoning skills while broad corpora foster perception, enabling models to 'see' before ever processing an image.
Scaling Laws for Native Multimodal ModelsarXiv 2025PaperEarly-fusion NMMs match or outperform late-fusion at low compute; early-fusion needs fewer params; MoE with modality-agnostic routing boosts sparse NMM scaling
The Narrow Gate: Localized Image-Text Communication in Native Multimodal ModelsarXiv 2024PaperNative models often funnel image-to-text communication through a single post-image token

5.2 Early Fusion NMMs

Modality tokens or embeddings enter shared backbone computation before its first block. Separate input encoders, tokenizers, experts, and decoders are compatible with early fusion. Architecture-native entries are explicitly qualified where pretrained initialization prevents an equally strong from-scratch claim.

Recent scaling-law evidence suggests early-fusion NMMs are often stronger at lower parameter counts and simpler to deploy when paired with sufficiently strong visual representations.

ModelPaperLinksTraining ScaleNotesTask
DeepSeek-V4.1-FlashModel release 2026-09-10Announcement HF552B backbone; 45T multimodal pretraining tokens; 1M contextOpen-weight model (MIT) trained from scratch on multimodal data; DeepSeek-ViT and a two-layer MLP produce image embeddings jointly processed with text from the start of language-model pretraining. Shared computation uses a Causal Encoder-Decoder architectureimage/text understanding, visual reasoning, coding, long-context agents
Qwen3.8-Flash-NextModel release 2026-08-26Code HF Implementation125B backbone / 6B active; 51B n-gram embeddings + 4B MTPOpen-weight experimental architecture preview under Qwen Community License 1.0; architecture-native early fusion inserts image/video embeddings into the shared language-backbone input. Combines Gated DeltaNet, Qwen Sparse Attention, and gated residuals; all-components-from-scratch initialization is unverifiedimage/video understanding, visual reasoning, coding, long-horizon agents
Qwen3.8-27BModel release 2026-08-14Code HF27B dense; 262K native context, extensible to 1MOpen-weight architecture-native VLM built on Qwen3.5's early-fusion vision-language architecture; image/video embeddings and text share the language backbone. Training stage is pretraining plus post-training; all-components-from-scratch initialization is unverifiedimage/video understanding, document understanding, visual reasoning, agentic work
Inkling-SmallModel release 2026-07-30Announcement Model Card HF276B total / 12B activeOpen-weight MoE model with a hierarchical image-patch encoder and discrete audio encoding; text, image, and audio representations enter a shared hidden space and are jointly processed by one decoder. Outputs text; fusion classification does not assert all-components-from-scratch initializationtext/image/audio understanding, visual and audio reasoning, coding, agentic tool use
InklingThinking Machines Lab, 2026Announcement Model Card HF975B total / 41B active; 45T multimodal pretraining tokens; 1M contextOpen-weight MoE model trained from scratch with encoder-free vision and audio inputs; images use 40×40 patches with a lightweight four-layer hMLP, while audio uses dMel spectrograms, jointly processed with text tokenstext/image/audio understanding, visual and audio reasoning, speech transcription, coding, agentic tool use
Gemma 4 12B UnifiedModel release 2026-06-03Announcement HF12BOpen-weight encoder-free architecture (Apache 2.0): lightweight linear layers project raw image patches and audio waveforms into the shared decoder's embedding space. Listed separately from encoder-based Gemma 4 variants; "Unified" refers to input architecture, with text-only outputimage/video/audio understanding, multimodal reasoning, on-device agents
HYDRA-X: Native Unified Multimodal Models with Holistic Visual TokenizersarXiv 2026Paper7B dense modelNative unified multimodal model with a holistic image-video ViT tokenizer, covering image/video understanding, image/video generation, and image editingimage/video understanding, image/video generation, editing
NEO-OVarXiv 2026PaperNative one-vision scaling from pixels to words, extending the NEO line toward stronger native visual primitivesvision-language understanding
SenseNova-U1.5-8B-MoTModel release 2026-08-20Paper Code HFNEO-unify-based encoder-free MoT model with improved patchify layers, native 4K generation, text rendering, and image editing; grouped with U1 by architecture, with from-scratch initialization unverifiedvisual understanding, image generation, editing, interleaved generation
SenseNova-U1arXiv 2026Paper CodeNEO-Unify-based native unified multimodal model handling understanding, generation, and reasoning in one modelUnified Understanding & Generation
HiDream-O1-ImagearXiv 2026PaperNatively unified image generative foundation model with pixel-level unified transformerimage generation, unified modeling
Tuna-2arXiv 2026PaperNative unified multimodal model that discards traditional vision encoders in favor of direct pixel embeddings for end-to-end understanding and generationUnified Understanding & Generation
NEOarXiv 2025PaperNative vision-language primitives at scale; paired with reusable components for cost-effective native VLM developmentvision-language understanding
NEO-UnifyBlog 2025BlogNative unified extension of NEO for understanding, generation, and reasoningUnified Understanding & Generation
Emu3.5Nature 2026Paper CodeLarge-scale (trillion+ tokens)Native world model; next-state prediction on interleaved video/text; Discrete Diffusion Adaptation for efficiencyinterleaved generation, world modeling, any-to-image
LongCat-NextarXiv 2026PaperEarly fusion: DiNA represents text, vision, and audio as discrete tokens processed by a shared modality-agnostic autoregressive backbone; Omni capabilitiestext/image/audio understanding and generation
Llama4arXiv 2026Paper BlogScout/Maverick: 17B active / ~109B–400B total; Behemoth: ~2T totalArchitecture-native early fusion of text and vision tokens in a shared MoE backbone; separately trained vision encoder, so early fusion does not imply all components were trained from scratchvision-language understanding
Emu3arXiv 2024Paper Code8BEarly-fusion autoregressive backbone jointly models text, image, and video tokens; also indexed under UMM / AR / Pixel Encodingvisual understanding, visual generation
ChameleonarXiv 2024Paper CodeEarly-fusion backbone trained from scratch on interleaved image-text tokens; separate visual tokenizer; also listed under UMM / AR / Pixel Encodingvisual understanding, visual generation
Transfusion: Predict the Next Token and Diffuse Images with One Multi-Modal ModelICLR 2025Paper7BEarly-fusion shared Transformer jointly models text tokens and continuous image latents with next-token prediction and diffusion; also listed under Hybrid UMMsvisual understanding, visual generation
Show-o: One Single Transformer to Unify Multimodal Understanding and GenerationICLR 2025Paper CodeArchitecture-native early fusion with a pretrained language-model initialization; shared Transformer combines autoregressive text modeling and masked image-token diffusion; UMM entrymultimodal understanding and generation
Show-o2: Improved Native Unified Multimodal ModelsarXiv 2025Paper CodeArchitecture-native early fusion with autoregressive text modeling and visual flow matching; uses a pretrained language backbone, not an all-components-from-scratch model; UMM entrymultimodal understanding and generation
OneCatarXiv 2025Paper CodeArchitecture-native early fusion with a Qwen2.5-initialized decoder and modality-specific experts; unified autoregressive understanding and generation; UMM entryvisual understanding, visual generation, editing

5.3 Late Fusion NMMs

Models where separate unimodal components are jointly trained from scratch (not pretrained), with cross-modal interaction occurring at deeper layers. Distinct from MLLMs where vision encoders are pretrained.

ModelPaperLinksTraining ScaleNotesTask
LancearXiv 2026Paper Code3B (MoE)Native multimodal MoEUnified multimodal understanding and multimodal generation
Kimi K3: Open Frontier IntelligencearXiv 2026Paper HF2.8T total / 104B active; 1M contextJoint language-vision training from the outset; MoonViT-V2 is trained from scratch and connected to the language backbone through pixel-shuffle downsampling and an MLP projectorimage/video understanding, visual reasoning, long-horizon agents
Kimi K2.6Moonshot AI 2026BlogMoE Architecture: 32B active / 1T total parameters; supports 256K contextNative multimodal MoE with MLA (Multi-head Latent Attention) and MoonViT encoderUnified multimodal understanding, long-horizon coding, and agent swarms
GLM-5V-Turbo: Toward a Native Foundation Model for Multimodal AgentsarXiv 2026PaperNative multimodal foundation model featuring CogViT vision encoder, Multimodal Multi-Token Prediction (MMTP), and joint RL for agentic GUI/Design2Code tasksmultimodal agentic reasoning
LLaVA-OneVision-2arXiv 2026Code HF8BNative multimodal training with OneVision-Encoder and Qwen3 text backbone; codec-aligned visual encoding for image, long-video, spatial, document/OCR/chart understandingvisual understanding, video, spatial reasoning
Qwen3.5-BlogDiscrete Native Any-resolution Visual Transformervision-language understanding
Gemma4-BlogA pre-trained ViT encoder with a visual expert that uses cross-attention for deep but late-style fusion to the LLM, preserving its capabilities.vision-language understanding

5.4 Any-to-Any / Omni NMMs

The latest arXiv-native multimodal papers increasingly blur the boundaries between omni understanding, any-to-any generation, world modeling, and RL-enhanced post-training.

ModelPaperLinksTraining ScaleNotesTask
HyperCLOVA X 8B OmniarXiv 2026Paper HF8BAny-to-any omnimodal model unifying text, audio, and vision through a shared next-token prediction interface over interleaved multimodal sequencestext/audio/vision understanding and generation
MiniMax-M3MiniMax 2026Blog Code~428B total / ~23B active; 1M contextNative multimodal model with MiniMax Sparse Attention (MSA), trained for text, image, and video understanding, long-context coding, agentic workflows, and computer-use tasksnative multimodal understanding, video, coding, agentic computer use
Tri-Modal Masked Diffusion ModelsarXiv 2026 (Omni / Any-to-Any)Paper3B; 6.4T tokensStudies a from-scratch tri-modal masked diffusion model spanning text, image-text, and audio-text data, with scaling, modality mixing, noise-schedule, batch-size, and inference analysestext generation, text-to-image, text-to-speech
Qwen3.5-OmniQwen Blog 2026BlogDiscrete native any-resolution visual transformer with omni-modal extensionvision-language understanding, omni
ERNIE 5.0 Technical ReportarXiv 2026 (Late fusion)PaperNatively autoregressive foundation model designed for unified multimodal understanding and generation across text, image, video, and audiovision-language understanding, omni

5.5 Training-Native Models

These entries record a native multimodal training route separately from fusion topology. This qualification does not claim that every component is trained from scratch; no Early, Mid, or Late Fusion label is assigned without architectural evidence.

ModelPaperLinksTraining ScaleNotesTask
InternVL3arXiv 2025PaperTraining-native route: native multimodal pretraining within a ViT–MLP–LLM architecture; pretrained components are retained. This training qualification does not establish strict late or mid fusion; fusion depth is left unspecified here.vision-language understanding
InternVL3.5arXiv 2025PaperTraining-native route: native multimodal pretraining within a ViT–MLP–LLM architecture; pretrained components are retained. This training qualification does not establish strict late or mid fusion; fusion depth is left unspecified here.vision-language understanding

Back to Top


6. Closed-Source Multimodal Models

Year 2026

ModelVenueLinksNotesTask
GPT-6 AstraOpenAI, 2026Announcement System CardSeptember 2026 proprietary model with text/image input and text output, supporting visual reasoning, coding, computer use, and long-horizon agentic workvisual understanding, multimodal reasoning, coding, computer use, agents
Claude Fable 5.1 / Mythos 5.1Anthropic, 2026Announcement ModelsSeptember 2026 release; Fable 5.1 and Mythos 5.1 are the same underlying model with different safeguards. Fable is generally available, while Mythos is restricted to trusted access programs; grouped as one entryvisual understanding, reasoning, coding, computer use, long-horizon agents
Muse Spark 1.3Meta, 2026Announcement ModelsSeptember 2026 proprietary Muse Spark update for multimodal perception, coding, and agentic work, available through Muse Code and Meta Model API. Open-weight release remains a future plan as of 2026-09-15visual understanding, multimodal reasoning, coding, agents
Gemini 3.8 FlashGoogle DeepMind, 2026Model CardSeptember 2026 Gemini Flash model supporting text, image, audio, and video inputs with text output; up to 1M input context, with configurable reasoning effortmultimodal understanding, video/audio understanding, reasoning, coding, agents
Grok 4.6xAI, 2026Announcement Model DocsAugust 2026 proprietary model with text/image input and text output; extends the Grok family with visual work, coding, and long-running agent workflowsvisual understanding, multimodal reasoning, coding, agents
Claude 5 Family (Opus 5 / Sonnet 5)Anthropic, 2026Opus 5 Sonnet 5 ModelsOpus 5 (July 2026) and Sonnet 5 (June 2026) support text/image input and text output, with vision, reasoning, tool use, and agentic coding; retained separately from the Fable/Mythos familyvisual understanding, reasoning, coding, computer use, agents
Seed2.1 Pro / TurboByteDance Seed, 2026Announcement ModelsJune 2026 proprietary Seed2.1 family; Pro and Turbo provide different model sizes for visual/video understanding, reasoning, software engineering, and cross-tool agent workflowsvisual/video understanding, multimodal reasoning, coding, agents
GPT-5.6 Sol / Terra / LunaOpenAI, 2026AnnouncementJuly 2026 general-availability release of the GPT-5.6 family: Sol is the flagship model, Terra balances capability and cost, and Luna prioritizes speed and affordability.Multimodal Reasoning + Computer Use + Agentic Work
GPT-5.4 / GPT-5.5OpenAI BlogGPT-5.4 GPT-5.52026 GPT-5-series updates with improved reasoning, multimodal capability, and deployment efficiency.Omni-Modal + Professional/Agentic Workflows
Claude 4.6 Family (Opus 4.6 / Sonnet 4.6)Anthropic BlogOpus 4.6 Sonnet 4.6Claude 4.6 proprietary model family with vision, coding, tool use, and computer-use workflows.Multimodal + Agentic/Coding/Computer-Use
Gemini 3.1 Pro / Gemini 3.5Google BlogGemini 3.1 Pro Gemini 3.52026 Gemini 3-series updates with stronger multimodal reasoning, long-context, and action-oriented capabilities.Frontier Multimodal (text/image/audio/video + reasoning)

Year 2025

ModelVenueLinksNotesTask
Gemini 3 / Gemini 3 ProGoogle BlogGemini 3Native multimodal Gemini 3 generation with advanced reasoning, coding, and long-context capabilities.Frontier Multimodal + Reasoning
GPT-5 / GPT-4.5OpenAI BlogGPT-5 GPT-4.5Proprietary OpenAI GPT-series updates with multimodal reasoning and tool-use support.Omni-Modal + Advanced Reasoning/Agentic
Claude 4 Family (Opus 4 / Sonnet 4)Anthropic BlogClaude 4Claude 4 model family for coding, agentic tasks, vision, and extended tool use.Vision + Advanced Reasoning/Agentic Workflows
Grok 3 / Grok 4 / Grok 4.1xAI AnnouncementGrok 3 Grok 4 Grok 4.1Proprietary xAI models with multimodal input, real-time platform integration, and reasoning-focused releases.Multimodal Reasoning + Real-Time Integration
Gemini 2.0 / 2.5 (Pro / Flash)Google BlogGemini 2.0 Gemini 2.5 Pro Gemini 2.5 UpdatesNative multimodal Gemini 2-series models with long context, video/audio/image understanding, and agentic features.Advanced Native Multimodal + Agentic
Mistral Medium 3Mistral AIAnnouncementProprietary Mistral model offering text and vision capabilities through API/platform deployments.General Multimodal Tasks

Year 2024

ModelVenueLinksNotesTask
Gemini 1.5 (Pro / Flash)Google DeepMind BlogGemini 1.5 AnnouncementReleased February 2024. Massive context (>1M tokens), strong long-context multimodal (video, audio, images). Proprietary.Long-Context Multimodal (video/audio/image/text)
Claude 3 Family (Opus / Sonnet / Haiku)Anthropic BlogClaude 3 FamilyReleased March 2024. Strong native vision for images, charts, diagrams, and documents. Proprietary API + Claude.ai.Vision-Language + Reasoning
Claude 3.5 SonnetAnthropic BlogAnnouncementStronger proprietary Claude vision/reasoning model used for images, documents, charts, and coding workflows.Vision-Language + Reasoning
GPT-4o / GPT-4o miniOpenAI BlogGPT-4o GPT-4o miniGPT-4o introduced real-time omni interactions; GPT-4o mini provided a lower-cost multimodal model.Real-Time Omni-Modal (text/vision/audio)
Grok-1.5V / Grok-2 VisionxAI AnnouncementGrok-1.5V Grok-2Vision-capable Grok models for image understanding, diagram reasoning, and X platform integration.Vision-Language
Amazon Nova (Pro / Lite / Canvas / Reel)Amazon AnnouncementAWS BlogAmazon Bedrock model family covering multimodal understanding and image/video generation variants.Multimodal Understanding + Generation
Pixtral LargeMistral AIAnnouncementProprietary frontier multimodal Mistral model for image-text understanding through Le Chat/API deployments.Vision-Language

Year 2023

ModelVenueLinksNotesTask
GPT-4V (Vision)OpenAI AnnouncementGPT-4V System CardReleased September 2023. First widely available multimodal GPT-4 variant. Image + text input, text output. API/ChatGPT access only.Vision-Language (image understanding, VQA, OCR, document analysis, captioning)
Gemini 1.0 (Ultra / Pro / Nano)Google DeepMind BlogGemini AnnouncementReleased December 2023. Native multimodal from training (text + image + audio + video). Proprietary API + Gemini chatbot.Native Multimodal Understanding (text/image/audio/video)

7. Resources

In this section: 7.1 Related Awesome Lists · 7.2 Slides & Survey Papers · 7.3 Code Repositories & Tools

RepositoryFocusAuthor
awesome-multimodal-mlGeneral multimodal MLpliang279
Awesome-Multimodal-Large-Language-ModelsMLLMs + evaluationBradyFU
Awesome-Multimodal-ResearchBroad multimodal researchEurus-Holmes
Awesome-Unified-Multimodal-ModelsUMMsShowLab
Awesome-Multimodal-Large-Language-ModelsMLLMsyfzhang114
awesome-foundation-and-multimodal-modelsFoundation + multimodalSkalskiP
Awesome-MultimodalityGeneral multimodalityYutong-Zhou-cv
Awesome-Unified-MultimodalUnified modelsPurshow
Awesome-Unified-MultimodalUnified modelsAIDC-AI

7.2 Slides & Survey Papers

TypeResourceNotes
SlidesNative LMM SlidesZiwei Liu (NTU); concise framing for native multimodal models
SurveyA Survey on Multimodal Large Language ModelsBroad survey of MLLM architectures, data, and evaluation
ReportThe Dawn of LMMs: Preliminary Explorations with GPT-4VEarly capability analysis around GPT-4V
SurveyMultimodal Foundation Models: From Specialists to General-Purpose AssistantsBroader foundation-model view across multimodal systems

7.3 Code Repositories & Tools

ToolDescriptionLink
TorchUMMUnified evaluation, analysis and post-training toolkit for heterogeneous unified multimodal model architectures, tasks and datasetsPaper Code
LMMs-EvalUnified evaluation harness for multimodal modelsCode
ImageBenchLive text-to-image benchmark ranking 40+ models on 192 prompts across 6 categories using VLM judges; every generated image is published for inspectionSite Methodology
LAVISLibrary for Language-Vision Intelligence (Salesforce)Code
OpenFlamingoOpen reproduction of DeepMind FlamingoCode
xtunerEfficient fine-tuning for multimodal LLMsCode
LLaMA-FactoryMultimodal instruction tuning frameworkCode
MMEngineFoundation for perception research (OpenMMLab)Code
DeepSpeed-VisualChatScalable multimodal chat trainingCode

Back to Top


How to Contribute

In this section: Validation Rules · Entry Format

We welcome contributions! Please follow these guidelines:

Validation Rules

For NMM submissions:

  • Record architectural integration and multimodal training history separately
  • Identify pretrained backbones, encoders, tokenizers, and the trainable parameters at each stage
  • Qualify architecture-native or training-native entries; claim from-scratch training only with supporting evidence
  • Assign fusion depth only when supported by the architecture; otherwise use the Training-Native group with fusion unspecified

For UMM submissions:

  • Confirm the model handles both image understanding AND image generation
  • Note whether pretrained components are used (annotate accordingly)

For MLLM submissions:

  • Note which vision encoder is used (must be a pretrained encoder)
  • Note which LLM backbone is used (must be a pretrained LLM)

Entry Format

| **Model Name** | [Paper](arxiv_link) [Code](github_link) [HF](huggingface_link) BADGES | Scale | Key contribution / notes |

Submit a PR with:

  1. The paper/model entry in the correct section
  2. A one-line justification for the chosen category
  3. Links to paper, code, and/or weights

Back to Top


Citation

If this list is useful in your research, please consider citing:

@misc{awesome-multimodal-modeling-2026,
  title     = {Awesome Multimodal Modeling: From Traditional to Native & Unified},
  author    = OpenEnvision-Lab,
  year      = {2026},
  url       = {https://github.com/OpenEnvision-Lab/Awesome-Multimodal-Model-Traditional-Advanced},
  note      = {GitHub repository}
}

Back to Top


Star Growth of Awesome-Multimodal-Modeling

⭐ Star Growth of Awesome-Multimodal-Modeling

License

CC0

This list is released under the CC0 1.0 Universal license.

Star this repo

Maintained by the community for the multimodal research community.

Back to Top

Companion Website

The companion research library is designed for openenvision.github.io/Awesome-Multimodal-Modeling/, under the OpenEnvision organization site.

  • 📄 Survey paper — Coming soon. A survey of multimodal foundation models is in preparation.
  • 💻 GitHub repository. Explore the list, suggest entries, and contribute.

The website derives its catalog and category memberships from this README. It supports search, nested category filters, year and resource filters, sorting, pagination, entry details, shareable filter URLs, and a browser-local reading list. Counts represent entries, including cross-listed models and analysis papers, rather than unique models.

Files ready to publish

index.html lives in the repository root, beside README.md. It is a complete static page, with its styles, scripts, icons, diagrams, and catalog in assets/site/.

Awesome-Multimodal-Modeling/
├── index.html              # Website entry point, ready to serve
├── README.md               # Source catalog and project documentation
├── .nojekyll               # Serve static files directly on GitHub Pages
├── robots.txt
├── sitemap.xml
├── assets/
│   ├── site/               # Website styles, scripts, icons, diagrams, and catalog.json
│   └── ...                 # Existing README illustrations
├── scripts/                # Catalog synchronization and local preview tools
└── .github/workflows/pages.yml

Publish index.html together with assets/; keep their relative paths intact. No server, package installation, or API key is required to host the prepared files.

Publish from the repository root

  1. Commit the root index.html, README.md, assets/, .nojekyll, robots.txt, and sitemap.xml to main.
  2. Open Settings → Pages → Build and deployment.
  3. Choose Deploy from a branch, select main and /(root), then save.

The site will be available at openenvision.github.io/Awesome-Multimodal-Modeling/. The custom workflow detects branch publishing and skips its own deployment.

Keep the website synchronized

After editing the model list, run:

npm test
npm run build

Node.js 22 or later is sufficient. The build refreshes the generated catalog blocks inside the root index.html, writes assets/site/catalog.json, and exports a clean copy to dist/. Commit the refreshed root files when publishing from a branch. Page content outside the marked catalog blocks can be edited directly in the root index.html.

For automatic catalog synchronization on every push, choose GitHub Actions as the Pages source and keep the included workflow. It checks pull requests, rebuilds the catalog from README changes, and deploys successful main builds. A first deployment can also be started with Run workflow. The generated dist/ directory is only used as the Actions deployment artifact and is excluded from version control.

See GitHub's publishing-source documentation.

Local preview

npm run preview

Open http://127.0.0.1:4173/Awesome-Multimodal-Modeling/. This serves the prepared files directly from the repository root. Use npm run dev for an in-memory preview that watches README.md, index.html, and assets/; reload the browser after edits.

The project uses relative asset URLs. It needs no custom domain, CNAME file, or change to the OpenEnvision organization's main website.

The brand mark comes from the OpenEnvision site. The GitHub icon comes from GitHub Octicons; its MIT license is included in assets/site/OCTICONS-LICENSE.txt. Model membership, release annotations, and availability qualifications remain governed by the README.

awesome
awesome-list
mllm
multimodal
nmm
umm
vlm

Contributors

Ferry1231

98 commits

tianshijing

52 commits

hatttoomma

2 commits

linxin0

2 commits

OpenEnvision/Awesome-Multimodal-Modeling

Awesome Multimodal Modeling [Covers MLLM, UMM, and NMM]

JavaScript

546

155 commits

updated Sep 14, 2026

See the code

README

Awesome Multimodal Modeling

A Comprehensive Survey & Curated List of Multimodal Modeling
From Traditional Fusion to Native & Unified Architectures

Awesome PRs Welcome GitHub Stars Last Updated License CC0 1.0

Overview Traditional MLLMs UMMs NMMs Closed Source Models Resources

Overview · Traditional · MLLMs · UMMs · NMMs ·Closed Source Models · Resources

📢 News

  • [2026-06-06] 🚀 We released two new open-source model collections:
  • [2026-04-13] ⭐ The repository has already gained over 100 stars in just one day! Thank you all for the incredible support. We will keep updating this list with more cutting-edge models and resources. Your continued stars and PRs are warmly welcomed!
  • [2026-04-12] 🎉 We are excited to launch Awesome Multimodal Modeling — a curated reading list organized by architectural paradigms. A comprehensive survey paper is coming soon! Stay tuned.

Table of Contents

Browse the list

About This List

In this section: At a Glance · Curation Principles

This repository provides a structured, community-maintained survey of multimodal models, covering the full evolutionary arc from early fusion methods to today's natively-trained omni-models. We emphasize precise architectural definitions and classification, especially for the often-conflated categories of Unified Multimodal Models (UMMs) and Native Multimodal Models (NMMs).

Scope: Primary focus on image + text modalities; audio/video/3D are annotated where present. Omni/any-to-any models are marked with Omni.

At a Glance

DimensionCoverage
Primary scopeImage + text multimodal models, with explicit annotations for video, audio, and omni extensions
Core taxonomyTraditional multimodal models, MLLMs, UMMs, and NMMs with explicit architecture/training qualifications
Key distinctionU+G unification for UMMs; architectural and optimization coupling for NMMs, with overlapping membership allowed
What makes this repo differentArchitecture-first categorization, fusion-aware definitions, and curated links to adjacent awesome lists
Intended audienceResearchers, students, and engineers building or surveying multimodal systems

Curation Principles

PrincipleRule
Source qualityPrefer official conference proceedings, OpenReview, ACL Anthology, CVF Open Access, arXiv, and official project pages
Classification policyCategory assignment is based on this repository's architecture-first definitions, which may differ from authors' own branding
Venue policyIf a peer-reviewed venue is known, we list that venue; otherwise we keep the entry as arXiv
Scope disciplineModels, benchmarks, datasets, and analysis papers are tracked separately to avoid mixing artifacts
Inclusion barWe prioritize landmark papers, broadly adopted benchmarks, open implementations, or papers that clarify important taxonomy boundaries

Classification note: for ambiguous models sitting between MLLM, UMM, and NMM, this list records the category that best matches the training recipe and architectural coupling, not just the paper title. Architecture-native and training-native qualifications distinguish fusion structure from training history.

Back to Top


1. Introduction & Definitions

In this section: 1.1 Multimodal Model Evolution Stages · 1.2 Scope & Taxonomy · 1.3 Architecture Diagrams

1.1 Multimodal Model Evolution Stages

Subtopics: Traditional Multimodal Models · Multimodal Large Language Models (MLLMs) · Unified Multimodal Models (UMMs) · Native Multimodal Models (NMMs)

We use the following precise, architecture-first definitions throughout this list. Understanding these distinctions is critical for correctly classifying modern models.

Traditional Multimodal Models

Traditional category Alignment and Fusion

Pre-2023 mainstream era

Independent per-modality processing followed by simple fusion (early, late, or hybrid). No large-scale language model backbone. Focuses on representation alignment, cross-modal retrieval, and captioning. Examples: CLIP, ALIGN, ViLBERT, BLIP.

Multimodal Large Language Models (MLLMs)

MLLM category Modular late fusion

Pretrained-backbone multimodal language models

Combine a pretrained visual backbone or visual abstractor (e.g., ViT/CLIP/SigLIP, Q-Former, cross-attention adapter) with a pretrained LLM through a connector. The defining property is inheritance from strong pretrained unimodal backbones rather than joint multimodal pretraining from scratch. These models are primarily text-output understanding/reasoning systems, even when auxiliary generators are attached externally.

Key characteristics:

  • ✅ Pretrained visual encoder / abstractor
  • ✅ Pretrained LLM backbone
  • ✅ Connector layer or cross-attention bridge
  • ❌ No end-to-end multimodal pretraining from scratch
  • ❌ No native image generation inside the same backbone

Examples: LLaVA, Qwen-VL, InternVL, MiniCPM-V, CogVLM

Unified Multimodal Models (UMMs)

UMM category Understanding and generation

Single framework for Understanding + Generation (U+G)

A single framework that handles both multimodal understanding and visual generation. UMMs may reuse pretrained components or modular tokenizers; the defining feature is U+G unification, not whether the model is trained from scratch.

Key characteristics:

  • ✅ Unified understanding + generation
  • ✅ Shared model interface or shared backbone for U+G
  • ⚠️ May use pretrained components
  • ⚠️ May use decoupled encoders / modular tokenizers
  • ⚠️ If a model is also natively trained from scratch, its architectural details belong primarily in NMMs (§5)

Examples: Show-o, Janus, OpenUni, BAGEL, BLIP3-o

Native Multimodal Models (NMMs)

NMM category Architecture and training

Architectural integration and multimodal optimization

NMMs are described along two dimensions: architectural nativity captures how early and persistently modalities share core computation; optimization nativity captures when multimodal objectives enter training and which core parameters they optimize. Entries that establish only one dimension are qualified as architecture-native or training-native. Training from scratch provides strong optimization evidence, but is not assumed for every entry. UMM and NMM membership can overlap.

Key characteristics:

  • ✅ Fusion structure and training history are recorded separately
  • ✅ Pretrained components and initialization are annotated per model
  • ✅ Architecture-native entries may inherit pretrained backbones
  • ✅ Input: text tokens + image patches/tokens
  • ✅ Output: text (understanding focus; generation optional)

NMMs are further described by fusion architecture; training-native entries without a confirmed fusion classification are listed separately in §5.5:

NMM — Early Fusion

Modality tokens or embeddings enter shared core computation before the first shared backbone block. Separate tokenizers, input encoders, modality-specific experts, or output decoders can remain; their presence does not by itself imply late fusion.

  • Shared backbone computation over multimodal states
  • Discrete tokens, continuous latents, or pixel patches
  • Modality interaction from the first shared block
  • Initialization and trainable components annotated separately
  • Examples: Chameleon, Emu3, Transfusion; Show-o, Show-o2, OneCat, and Llama 4 carry architecture-native qualifications
NMM — Late Fusion

Each modality is first processed by a dedicated unimodal component (e.g., a vision tower or image encoder), but these components are jointly trained from scratch (not pretrained). Cross-modal interaction occurs at deeper layers.

  • Separate unimodal processing stages (trained from scratch)
  • Cross-modal interaction at deeper layers
  • More modality-specific parameters
  • Examples: Models with jointly-trained vision encoders → decoder interaction

1.2 Scope & Taxonomy

Multimodal Models
├── 2. Traditional Multimodal Models
│   ├── 2.1 Multimodel Representations & Alignment
│   │   ├── Multimodal Representations
│   │   ├── Multimodal Fusion
│   │   └── Multimodal Alignment
│   └── 2.2 Multimodal Pretraining
├── 3. Multimodal Large Language Models (MLLMs)
│   ├── 3.1 Foundation MLLMs
│   └── 3.2 Omni MLLMs
├── 4. Unified Multimodal Models (UMMs)
│   ├── 4.1 Taxonomy by Generation Paradigm
│   │   ├── Diffusion-Based UMMs
│   │   ├── Autoregressive (AR) UMMs
│   │   │   ├── Pixel Encoding
│   │   │   ├── Semantic Encoding
│   │   │   ├── Learnable Query Encoding
│   │   │   ├── Hybrid Encoding (Pseduo)
│   │   │   └── Hybrid Encoding (Joint)
│   │   └── Hybrid (AR + Diffusion) UMMs
│   │       ├── Pixel Encoding
│   │       └── Hybrid Encoding
│   └── 4.2 Any-to-Any / Omni UMMs
└── 5. Native Multimodal Models (NMMs)
    ├── 5.1 Design Analyses & Scaling Laws
    ├── 5.2 Early Fusion NMMs
    ├── 5.3 Late Fusion NMMs
    ├── 5.4 Any-to-Any / Omni NMMs
    └── 5.5 Training-Native Models

1.3 Architecture Diagrams

The NMM diagrams below illustrate from-scratch variants; initialization and input interfaces are specified per model in §5.

┌─────────────────────────────────────────────────────────────────┐
│           TRADITIONAL MULTIMODAL MODEL                          │
│                                                                 │
│  [Image] ──► [CNN/ViT Encoder] ──┐                              │
│                                  ├──► [Fusion] ──► [Output]     │
│  [Text]  ──► [LSTM/BERT]       ──┘                              │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           MLLM — MODULAR LATE FUSION                            │
│                                                                 │
│  [Image] ──► [Pretrained ViT/CLIP] ──► [Projector/Q-Former]     │
│                                                │                │
│                                                ▼                │
│  [Text]  ──────────────────────────► [Pretrained LLM] ──► [Text]│
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           UMM — UNIFIED UNDERSTANDING + GENERATION              │
│                                                                 │
│  [Image/Text Input] ──► [Shared/Modular Tokenizer]              │
│                                │                                │
│                                ▼                                │
│                   [Unified Transformer]                         │
│                       │           │                             │
│                       ▼           ▼                             │
│             [Text Output]      [Image Output]                   │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           NMM — EARLY FUSION (Trained from Scratch)             │
│                                                                 │
│  [Text tokens] ──┐                                              │
│                  └──► [Single Decoder Transformer] ──► [Text]   │
│  [Image patches ──► Linear Patchify] ──┘                        │
│   (raw pixels, minimal preprocessing)                           │
│   Multimodal interaction from Layer 1                           │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│           NMM — LATE FUSION (Trained from Scratch)              │
│                                                                 │
│  [Image] ──► [Jointly-Trained Vision Component]                 │
│                         │                                       │
│                         ▼  (deep layers)                        │
│  [Text]  ──────────► [Cross-Modal Interaction] ──► [Text]       │
│           (All components trained jointly from scratch)         │
└─────────────────────────────────────────────────────────────────┘

Back to Top


2. Traditional Multimodal Models

In this section: 2.1 Multimodel Representations & Alignment · 2.2 Multimodal Pretraining

Pre-chat-MLLM and non-native multimodal systems that established the basic vocabulary of alignment, fusion, retrieval, captioning, and multimodal pretraining.

2.1 Multimodel Representations & Alignment

Subtopics: Multimodal Representations · Multimodal Fusion · Multimodal Alignment

Multimodal Representations

PaperVenueLinksNotesTask
Identifiability Results for Multimodal Contrastive LearningICLR 2023PaperTheoretical identifiability analysis of contrastive multimodal learningrepresentation learning
Unpaired Vision-Language Pre-training via Cross-Modal CutMixICML 2022PaperIntroduces CutMix-style augmentation for unpaired VLPvision-language pretraining
Balanced Multimodal Learning via On-the-fly Gradient ModulationCVPR 2022PaperBalances modality learning via dynamic gradient reweightingmultimodal optimization
FLAVA: A Foundational Language And Vision Alignment ModelarXiv 2021PaperUnified architecture for vision-language understanding and generationfoundation multimodal model
UniT: Multimodal Multitask Learning with a Unified TransformerarXiv 2021PaperSingle transformer for multiple multimodal tasksmultimodal multitask learning
MultiBench: Multiscale Benchmarks for Multimodal Representation LearningNeurIPS 2021PaperBenchmark suite for multimodal learning evaluationbenchmarking
Perceiver: General Perception with Iterative AttentionICML 2021PaperGeneral-purpose architecture for high-dimensional multimodal inputsgeneral multimodal architecture
Learning Transferable Visual Models From Natural Language SupervisionarXiv 2021PaperContrastive vision-language pretraining at scalevision-language contrastive learning
VinVL: Revisiting Visual Representations in Vision-Language ModelsarXiv 2021PaperImproved visual features for VL tasksvision-language representation improvement
Learning Transferable Visual Models From Natural Language SupervisionarXiv 2020PaperEarly large-scale vision-language contrastive learningvision-language pretraining
12-in-1: Multi-Task Vision and Language Representation LearningCVPR 2020PaperUnified multi-task learning across 12 VL tasksmulti-task learning
Learning Video Representations using Contrastive Bidirectional TransformerarXiv 2019PaperContrastive transformer for video representation learningvideo contrastive learning
OmniNet: A Unified Architecture for Multi-modal Multi-task LearningarXiv 2019PaperUnified encoder-decoder for multimodal tasksunified multimodal architecture
Learning Representations by Maximizing Mutual Information Across ViewsarXiv 2019PaperInfoMax principle for cross-view representation learningself-supervised learning
ViCo: Word Embeddings from Visual Co-occurrencesICCV 2019PaperLearning word embeddings from visual contextvision-language embeddings
Learning Factorized Multimodal RepresentationsICLR 2019PaperFactorized latent space for multimodal datarepresentation disentanglement
Deep Fragment Embeddings for Bidirectional Image Sentence MappingNeurIPS 2014PaperFragment-level image-sentence alignmentvision-language alignment
DeViSE: A Deep Visual-Semantic Embedding ModelNeurIPS 2013PaperEarly deep vision-to-language embedding modelvision-language embedding
Multimodal Deep LearningICML 2011PaperFoundational multimodal deep learning frameworkmultimodal deep learning

Multimodal Fusion

PaperVenueLinksNotesTask
Robust Contrastive Learning against Noisy ViewsarXiv 2022PaperRobust contrastive learning under noisy multi-view inputscontrastive learning
Attention Bottlenecks for Multimodal FusionNeurIPS 2021PaperIntroduces bottleneck attention mechanism for efficient multimodal fusionmultimodal fusion
VMLoc: Variational Fusion For Learning-Based Multimodal Camera LocalizationAAAI 2021PaperVariational multimodal fusion for camera localization tasksmultimodal localization
Trusted Multi-View ClassificationICLR 2021PaperConfidence-aware weighting for multi-view classificationmulti-view classification
Deep-HOSeq: Deep Higher-Order Sequence Fusion for Multimodal Sentiment AnalysisICDM 2020PaperHigher-order sequence fusion for multimodal sentiment analysismultimodal sentiment analysis
What Makes Training Multi-Modal Classification Networks Hard?CVPR 2020PaperAnalyzes optimization challenges in multimodal classificationtheoretical/empirical analysis
DeepCU: Integrating Both Common and Unique Latent Information for Multimodal Sentiment AnalysisIJCAI 2019PaperSeparates shared and private latent representations for fusionmultimodal sentiment analysis
XFlow: Cross-modal Deep Neural Networks for Audiovisual ClassificationIEEE TNNLS 2019PaperCross-modal feature exchange network for audio-visual tasksaudio-visual classification
MFAS: Multimodal Fusion Architecture SearchCVPR 2019PaperNeural architecture search for optimal multimodal fusion designarchitecture search
The Neuro-Symbolic Concept Learner: Interpreting Scenes, Words, and Sentences From Natural SupervisionICLR 2019PaperNeuro-symbolic model combining perception and reasoningneuro-symbolic learning
Efficient Low-rank Multimodal Fusion with Modality-Specific FactorsACL 2018PaperLow-rank factorization for efficient multimodal fusionefficient fusion
Memory Fusion Network for Multi-view Sequential LearningAAAI 2018PaperMemory-based fusion across temporal multimodal sequencessequential multimodal learning
Tensor Fusion Network for Multimodal Sentiment AnalysisEMNLP 2017PaperTensor-based full interaction modeling across modalitiesmultimodal sentiment analysis

Multimodal Alignment

PaperVenueLinksNotesTask
LanguageBind: Extending Video-Language Pretraining to N-modality by Language-based Semantic AlignmentarXiv 2023Paper CodeLanguage-centered alignment across image, video, audio, depth, thermal, and IMU modalitiesmultimodal alignment
CLIParXiv 2021Paper400M+ image-text pairs; dual-encoder (Vision Transformer + Text Transformer); contrastive alignment at embedding level; classic late-fusion foundationzero-shot image classification, retrieval
CoMIR: Contrastive Multimodal Image Representation for RegistrationNeurIPS 2020PaperContrastive learning for multimodal image registration alignmentmultimodal alignment
Multimodal Transformer for Unaligned Multimodal Language SequencesACL 2019PaperTransformer-based alignment for unaligned multimodal sequencessequence alignment
Temporal Cycle-Consistency LearningCVPR 2019PaperUses cycle-consistency for temporal cross-modal alignmenttemporal alignment
Deep Canonical Correlation AnalysisICML 2013PaperDeep learning extension of CCA for cross-view representation alignmentrepresentation alignment

2.2 Multimodal Pretraining

PaperVenueLinksNotesTask
Align before Fuse: Vision and Language Representation Learning with Momentum DistillationNeurIPS 2021 SpotlightPaperMomentum distillation for aligning vision-language representations before fusionvision-language pretraining
Less is More: ClipBERT for Video-and-Language Learning via Sparse SamplingCVPR 2021PaperSparse frame sampling for efficient video-language pretrainingvideo-language pretraining
UniT: Multimodal Multitask Learning with a Unified TransformerarXiv 2021PaperUnified transformer for multitask multimodal learningunified multimodal pretraining
Large-Scale Adversarial Training for Vision-and-Language Representation LearningNeurIPS 2020PaperAdversarial training improves robustness of vision-language representationsrobust multimodal pretraining
Vokenization: Improving Language Understanding with Contextualized, Visual-Grounded SupervisionEMNLP 2020PaperGrounds language tokens in visual context via voken supervisionvision-grounded language modeling
Integrating Multimodal Information in Large Pretrained TransformersACL 2020PaperInjects multimodal signals into large pretrained transformer architecturesmultimodal transformer pretraining
VL-BERT: Pre-training of Generic Visual-Linguistic RepresentationsarXiv 2019PaperJoint vision-language BERT-style pretrainingvision-language pretraining
VisualBERT: A Simple and Performant Baseline for Vision and LanguagearXiv 2019PaperEarly unified transformer for vision-language understandingvision-language pretraining
ViLBERT: Pretraining Task-Agnostic Visiolinguistic Representations for Vision-and-Language TasksNeurIPS 2019PaperTwo-stream transformer for cross-modal vision-language learningvision-language pretraining
Unicoder-VL: A Universal Encoder for Vision and Language by Cross-modal Pre-trainingarXiv 2019PaperCross-modal encoder for universal vision-language representationsvision-language pretraining
LXMERT: Learning Cross-Modality Encoder Representations from TransformersEMNLP 2019PaperCross-modality transformer encoder for vision-language reasoningvision-language pretraining
VideoBERT: A Joint Model for Video and Language Representation LearningICCV 2019PaperJoint discrete token modeling for video and languagevideo-language pretraining

Back to Top


3. Multimodal Large Language Models (MLLMs)

In this section: 3.1 Foundation MLLMs · 3.2 Omni MLLMs

Models that connect a pretrained visual encoder / abstractor to a pretrained LLM. Primarily text-output understanding and reasoning systems, defined by inherited pretrained unimodal backbones rather than multimodal pretraining from scratch.

3.1 Taxonomy Based on Vision Adapter

MLP/Others Projector

PaperVenueLinksNotesTask
Ling-3.0-flash-VLModel release 2026HFOpen-weight VLM (MIT) extending Ling-3.0-flash with a ViT and a two-layer MLP projector; supports image and video inputs with text outputs. BF16 and quantized checkpoints belong to the same model entryimage/video understanding, document understanding, visual reasoning, GUI agents
LLaDA-UIModel release 2026Code HFSigLIP-initialized native-resolution ViT connects to LLaDA2.0-mini-base through spatial 4-to-1 feature grouping and a two-layer MLP; block-wise diffusion generates text reasoning and GUI actions. Code and weights are available; checkpoint license is unspecified in the model card as of 2026-09-15screenshot understanding, GUI grounding, mobile/desktop/web agents
Muse Glimmer-30BModel release 2026HF ImplementationOpen-weight 30B model (Apache 2.0), distilled from Muse Spark; a dedicated Perception Encoder connects to the language backbone through an MLP adapter and linear projection; text and image inputs, text outputsvisual understanding, visual reasoning, coding, agentic tool use
DiffusionGemmaGoogle DeepMind, 2026Model Card HF ImplementationOpen-weight Gemma 4-based model (Apache 2.0); normalized visual features enter the language model through a linear projection, while an encoder-decoder architecture uses block-wise discrete diffusion for text generation. Image/video understanding with text output; no native image generationvisual understanding, video understanding, reasoning, efficient text generation
Mistral Medium 3.5Mistral AI, 2026Announcement HF ImplementationOpen-weight 128B dense VLM under a Modified MIT license; a from-scratch vision encoder connects through a patch merger and MLP projector to the language backbone. Supports text/image inputs and text outputs; whole-model from-scratch multimodal training is not establishedvisual understanding, reasoning, coding, long-horizon agents
Mage-VL: An Efficient Codec-Native Streaming Multimodal Foundation ModelarXiv 2026Paper Project Model4B codec-native streaming VLM combining a from-scratch Mage-ViT visual encoder, two-layer MLP projector, and pretrained Qwen3-4B-Instruct-2507 decoder; codec-guided token selection reduces visual tokens by over 75%image/video understanding, long video, proactive streaming
StepX-Edge: An On-Device UI Vision-Language Model via Architecture-Training-Deployment Co-DesignarXiv 2026Paper0.9B on-device UI VLM with UI-aware layered visual encoding and a progressive dimensionality projection connector; quantized deployment is validated on Snapdragon 8 Gen5UI understanding, OCR, grounding, on-device deployment
MiniCPM-V 4.5: Cooking Efficient MLLMs via Architecture, Data, and Training RecipearXiv 2025Paper Code ModelEfficient 8B MLLM built with Qwen3-8B, SigLIP2-400M and a unified 3D-Resampler for compact image-video encodingvisual understanding, document/OCR, video understanding, edge deployment
Moondream 3.1Model Release 2026Project ModelEfficient sparse MoE VLM with 9B total and 2B active parameters; supports visual reasoning, query, caption, detection, pointing and segmentationvisual understanding, grounding, segmentation, edge deployment
LLaVA-OneVision-1.5: Fully Open Framework for Democratized Multimodal TrainingarXiv 2025Paper Code HF4B / 8B; 85M mid-training data + 22M instruction data; ViT–MLP–LLM architecture with pretrained RICE-ViT, a two-layer MLP projector, and Qwen3 backbone; supports image, multi-image, and videovisual understanding, video
SAIL-VL2 Technical ReportarXiv 2025PaperOpen-suite 2B/8B vision-language foundation model with SAIL-ViT, progressive multimodal training, SFT-RL thinking fusion, and strong image/video reasoning across 106 datasetsvisual understanding, video, reasoning
Kwai Keye-VL 2.0 Technical ReportarXiv 2026Paperachieves state-of-the-art performance among models of similar scale, particularly excelling in fine-grained temporal localizationvideo understanding
Penguin-VL: Exploring the Efficiency Limits of VLM with LLM-based Vision EncodersarXiv 2026PaperLLM-initialized vision encoder (non-CLIP); text-to-vision weight reuse, generative-aligned visual features, optimized for dense perception.visual understanding
Youtu-VL: Unleashing Visual Potential via Unified Vision-Language SupervisionarXiv 2026PaperTri-modal (V+A+L) unified framework; parameter-efficient tuning, seamless cross-modal reasoning for mobile/IoT deployment.visual understanding
STEP3-VL-10B Technical ReportarXiv 2026Paper10B-scale foundation multimodal; unified unfrozen pre-training + PaCoRe test-time scaling, frontier-level reasoning with compact footprint.visual understanding
GLM-OCRarXiv 2026PaperGLM-OCR is an efficient 0.9B-parameter compact multimodal model designed for real-world document understanding.OCR, structured extraction
Kimi K2.5arXiv 2026Paperjoint text-vision pretraining, Agent Swarm framework; coding, vision, reasoning, agentic tasks; reduces latency by up to 4.5xvisual agentic intelligence, agentic, reasoning
Kwai Keye-VL 1.5 Technical ReportarXiv 2025PaperAdaptive Slow-Fast encoding; 8B parameter scale with 128K long-context; SOTA video reasoning & human-preference aligned.visual understanding
olmOCR / olmOCR-2arXiv 2025PaperEfficient low-VRAM OCR model based on Qwen2.5-VL fine-tune; excels at preserving semantic structure and markdown outputOCR, structured extraction
PaddleOCR-VLarXiv 2025HF / OfficialLightweight (0.9B+) multimodal OCR with 109 languages support; excellent chart-to-HTML/Markdown conversion and high-throughputOCR, multilingual document
DeepSeek-OCRarXiv 2025Paper HFLightweight ~3B MoE vision model optimized for high-volume OCR, document digitization, charts and formulas; efficient inferenceOCR, document
Kimi-VLarXiv 2025Paper HFProjector + MoE backbone; long video/PDF/GUI, agentic capabilities, chain-of-thought vision reasoningvisual understanding, agentic, video
Seed1.5-VL Technical ReportarXiv 2025Paper20B MoE + 532M ViT; native-resolution vision-language foundation model; efficient asymmetric architecture.visual understanding
Qwen3-VLarXiv 2025Paper HFFrontier-grade vision/OCR (32+ languages), video analysis, agentic capabilities, strong multimodal reasoning; includes large MoE variants (e.g., 235B)visual understanding, video, omni
SmolVLMarXiv 2025HFUltra-lightweight (256M–2.2B) projector-based series; efficient on-device video and image understandingvisual understanding, efficiency
LLaDA-V: Large Language Diffusion Models with Visual Instruction TuningarXiv 2025PaperDiffusion LLM as LLM backbone; vision encoder: SigLIPvisual understanding
jina-vlmarXiv 2025Paper HFSigLIP2 + Qwen backbone with custom projector; optimized for semantic VQA, diagrams, scans and document semanticsvisual understanding, VQA, document
Phi-4-MultimodalarXiv 2025Paper HFSmall-parameter (LoRA + projectors) multimodal; vision + speech support, efficient on-device deploymentvisual understanding, on-device
Molmo / PixMoCVPR 2025Paper CodeStrong open-data/open-weight VLM pipelinevisual understanding
FastVLM: Efficient Vision Encoding for Vision Language ModelsCVPR 2025Paperefficient multimodal visual encoding for on-device deploymentvisual understanding, on-device
Qwen2.5-VL: Technical ReportarXiv 2025Paper HFStronger document, grounding, and video capabilitiesvisual understanding
General OCR Theory: Towards OCR-2.0 via a Unified End-to-end ModelarXiv 2024Paper HF/CodeSpecialized end-to-end OCR model with grounding (boxes + points); strong on scientific papers, slides, and mixed visual-text docsOCR, grounding
LLaVA-OneVision: Easy Visual Task TransferarXiv 2024Paper CodeSingle model for image, multi-image, and video transfervisual understanding
MiniCPM-V: A GPT-4V Level MLLM on Your PhonearXiv 2024Paper CodeOn-device efficient MLLMvisual understanding
NVILA: Efficient Frontier Visual Language ModelsCVPR 2025PaperEfficient general purpose multimodal LLM; spatial and temporal "Scale then compress" design; vision encoder: SigLIPvisual understanding
GLM-4VarXiv 2024PaperViT-based vision encoder (EVA-02-CLIP-L); high-resolution input support (up to 1120x1120) via image tiling, late-fusion architecture, optimized for document and OCR tasksvisual understanding
xGen-MM (BLIP-3)arXiv 2024PaperOpen training recipe, datasets, and safety-tuned variantsvisual understanding
DeepSeek-VL2: Mixture-of-Experts Vision-Language ModelsarXiv 2024Paper CodeMoE VLM with dynamic tiling and efficient inferencevisual understanding
PixtralarXiv 2024Paper HF12B open-weight model with strong instruction following, image+text understanding; competitive with larger open VLMsvisual understanding
Qwen2-VLarXiv 2024Paper HFDynamic resolution; native videovisual understanding
Cambrian-1: A Fully Open, Vision-Centric ExplorationNeurIPS 2024Paper CodeSpatial Vision Aggregatorvisual understanding
PaliGemma: A Versatile 3B VLM for TransferarXiv 2024Paper HFSigLIP encoder + Gemma backbone; strong transfer modelvisual understanding
InternLM-XComposer2arXiv 2024Paper CodeCompositional visual groundingvisual understanding
Phi-3-VisionarXiv 2024Paper HFSmall but capablevisual understanding
LLaVA-HR: High Resolution MLLMsCVPR 2024PaperMixture-of-Resolution Adaptationvisual understanding
InternVL2Model release 2024HFInstruction-tuned InternVL family release with strong multilingual and OCR capabilitiesvisual understanding
InternVL: Scaling up Vision Foundation ModelsCVPR 2024Paper CodeProgressively aligned ViT + LLMvisual understanding
MM1: Methods, Analysis & Insights from Multimodal LLM Pre-trainingarXiv 2024PaperLarge-scale proprietary recipe study for multimodal LLM pretrainingvisual understanding
Ovis: Structural Embedding Alignment for Multimodal Large Language ModelarXiv 2024Paper CodeStructural embedding alignment between visual tokens and LLM token spacevisual understanding
TextMonkey: An OCR-Free Large Multimodal Model for Understanding DocumentarXiv 2024Paper CodeOCR-free document MLLM emphasizing text-heavy imagesdocument understanding, OCR
MoE-LLaVA: Mixture of Experts for Large Vision-Language ModelsarXiv 2024Paper CodeSparse MoE extension of LLaVA-style visual instruction tuningvisual understanding
MobileVLM: A Fast, Strong and Open Vision Language Assistant for Mobile DevicesarXiv 2023Paper CodeLightweight VLM for mobile deploymentefficient visual assistant
Vary: Scaling up the Vision Vocabulary for Large Vision-Language ModelsarXiv 2023Paper CodeExpands visual vocabulary for dense OCR/document-style perceptiondocument understanding, OCR
LLaMA-VID: An Image is Worth 2 Tokens in Large Language ModelsarXiv 2023Paper CodeCompresses each frame/image into compact context tokens for efficient video MLLMsvideo understanding
Video-LLaVA: Learning United Visual Representation by Alignment Before ProjectionarXiv 2023Paper CodeUnified image-video representation before projection into LLMimage/video understanding
GLaMM: Pixel Grounding Large Multimodal ModelarXiv 2023Paper CodePixel-level grounding and phrase-region reasoninggrounded visual understanding
Ferret: Refer and Ground Anything Anywhere at Any GranularityarXiv 2023Paper CodeReferring and grounding across points, boxes, and free-form regionsgrounded visual dialogue
LLaVA-1.5: Improved Baselines with Visual Instruction TuningarXiv 2023Paper CodeStrong simple baseline with CLIP visual encoder, MLP projector, and instruction tuningvisual instruction tuning
ImageBind-LLM: Multi-modality Instruction TuningarXiv 2023Paper CodeConnects ImageBind-aligned modalities to an LLM for multi-modality instruction followingmulti-modal instruction tuning
PointLLM: Empowering Large Language Models to Understand Point CloudsarXiv 2023Paper CodeExtends LLM-based multimodal understanding to 3D point clouds3D understanding
LISA: Reasoning Segmentation via Large Language ModelarXiv 2023Paper CodeCouples MLLM reasoning with segmentation mask outputreasoning segmentation
GPT4RoI: Instruction Tuning Large Language Model on Region-of-InterestarXiv 2023Paper CodeRegion-of-interest instruction tuning for fine-grained visual reasoningregion-level understanding
3D-LLM: Injecting the 3D World into Large Language ModelsarXiv 2023Paper CodeProjects 3D scene features into LLMs for 3D reasoning and dialogue3D understanding
Shikra: Unleashing Multimodal LLM's Referential Dialogue MagicarXiv 2023Paper CodeReferential dialogue with natural-language coordinates and groundinggrounded visual dialogue
LLaVA-Med: Training a Large Language-and-Vision Assistant for Biomedicine in One DayarXiv 2023Paper CodeBiomedical adaptation of LLaVA-style visual instruction tuningbiomedical visual assistant
DetGPT: Detect What You Need via ReasoningarXiv 2023Paper CodeUses LLM reasoning to orchestrate detection tools and visual groundingdetection reasoning
VisionLLM: Large Language Model is also an Open-Ended Decoder for Vision-Centric TasksarXiv 2023Paper CodeTreats vision-centric tasks as open-ended decoding with LLMsvision-centric decoding
MultiModal-GPT: A Vision and Language Model for Dialogue with HumansarXiv 2023Paper CodeInstruction-tuned image-text dialogue modelvisual dialogue
LLaMA-Adapter V2: Parameter-Efficient Visual Instruction ModelarXiv 2023Paper CodeParameter-efficient visual instruction tuning via adaptersvisual instruction tuning
LLaMA-Adapter: Efficient Fine-tuning of Language Models with Zero-init AttentionarXiv 2023Paper CodeEarly adapter-based multimodal instruction tuning on LLaMAvisual instruction tuning
LLaVAarXiv 2023Paper Code7B / 13B+ CLIP vision encoder (frozen/pretrained) + linear projection to LLM (Vicuna/LLaMA); common late-fusion baselinevisual instruction tuning, VQA, image captioning

Q-Former

PaperVenueLinksNotesTask
M-MiniGPT4: Multilingual VLLM Alignment via Translated DataarXiv 2026PaperQ-Former based (inherits from MiniGPT-4 / BLIP-2)vision-language understanding
Video Q-Former: Multimodal Large Language Model with Spatio-Temporal Querying TransformerOpenReviewPaperSpatio-temporal Q-Former (learnable queries for video spatial-temporal feature extraction)video understanding
HierarQ: Task-Aware Hierarchical Q-Former for Enhanced Video UnderstandingarXiv 2025PaperHierarchical Q-Former (multi-level learnable queries with memory bank for long video)long video understanding
Towards Efficient Visual-Language Alignment of the Q-FormerarXiv 2024PaperPEFT-tuned Q-Former (parameter-efficient fine-tuning on InstructBLIP-style Q-Former)visual reasoning
Matryoshka Query Transformer (MQT) for Large Vision-Language ModelsNeurIPS 2024PaperMatryoshka Query Transformer (elastic learnable queries, variable token count)vision-language understanding
Semantically Grounded QFormer for Efficient Vision Language UnderstandingarXiv 2023PaperImproved Grounded QFormer (direct latent conditioning, bypass input projection)vision-language understanding
Video-LLaMA: An Instruction-tuned Audio-Visual Language Model for Video UnderstandingarXiv 2023Paper CodeBLIP-2/Q-Former-style visual and audio query transformers for video dialogueaudio-video understanding
InstructBLIP: Towards General-purpose Vision-Language Models with Instruction TuningarXiv 2023Paper CodeInstruction-aware Q-Former trained over diverse vision-language tasksvisual instruction tuning
VideoChat: Chat-Centric Video UnderstandingarXiv 2023Paper CodeVideo-centric MLLM for temporal dialogue and understandingvideo understanding
mPLUG-Owl: Modularization Empowers Large Language Models with MultimodalityarXiv 2023Paper CodeModular visual abstractor connected to a pretrained LLMvisual instruction tuning
MiniGPT-4: Enhancing Vision-Language Understanding with Advanced Large Language ModelsarXiv 2023Paper CodeUses BLIP-2 visual encoder/Q-Former and aligns visual features to Vicunavisual dialogue
BLIP-2: Bootstrapping Language-Image Pre-training with Frozen Image Encoders and Large Language ModelsICML 2023Paper CodeFoundational Q-Former architecture bridging frozen vision encoders and frozen LLMsvision-language pretraining

Cross-Attention

PaperVenueLinksNotesTask
CASA: Cross-Attention over Self-AttentionarXiv 2025PaperEfficient cross-attention via self-attention reformulation; competitive with token insertion on image benchmarks, strong for long videoefficient vision-language fusion, video captioning
LLaMA 3.2 VisionarXiv 2024Paper HFAdapter-based vision addition to Llama 3.2; strong OCR, document VQA, 128K contextvisual understanding, document
Idefics2arXiv 2024Paper HFFlamingo-style with Perceiver Resampler + gated cross-attention; improved efficiency on Mistral backboneopen multimodal understanding
CogVLM: Visual Expert for Pretrained Language ModelsarXiv 2023Paper CodeDeep fusion with visual expert modules inside a pretrained LLMvisual understanding
Qwen-VL: A Versatile Vision-Language ModelarXiv 2023Paper HFHigh-res, multi-lang, bounding boxvisual understanding
Kosmos-2: Grounding Multimodal Large Language Models to the WorldarXiv 2023Paper CodeAdds grounded phrase-region modeling to multimodal language modelinggrounded visual understanding
Kosmos-1: Language Is Not All You Need: Aligning Perception with Language ModelsarXiv 2023Paper CodePerception-language model aligning images and language for multimodal reasoningmultimodal reasoning
Flamingo: a Visual Language Model for Few-Shot LearningNeurIPS 2022PaperPerceiver Resampler + gated cross-attention layers for few-shot multimodal promptingfew-shot visual understanding
IDEFICSHugging Face80B Flamingo-inspired model; late fusion with vision encoder and LLMopen-source multimodal understanding

Hybrid Adaptor

PaperVenueLinksNotesTask
MiniCPM-V 4.6Model release 2026HF ArchitectureOpen-weight VLM (Apache 2.0) combining a SigLIP vision encoder, window-attention merger, MLP merger, and Qwen3.5 language backbone; supports 4x and 16x visual downsampling for efficient image/video understandingvisual understanding, document/OCR, video understanding, on-device deployment
EXAONE 4.5 Technical ReportarXiv 2026Paper CodeIntegrates a dedicated visual encoder with the EXAONE 4.0 framework for multimodal pretraining, with strong document understanding and Korean contextual reasoningvisual understanding, document
Phoenix-VL 1.5 Medium Technical ReportarXiv 2026Paper123B multilingual multimodal model continued-pretrained from Mistral Medium 3.1 on localized multimodal and long-context corporavisual understanding, multilingual
DeepSeek-OCR-2arXiv 2026Paper HFOptimized for high-volume OCR, document digitization, charts and formulas; efficient inferenceOCR, document
Ovis2.5arXiv 2025PaperFollowing VET architecture; excellent document understanding and fine-grained quantizationvisual understanding, document
Ovis2arXiv 2025HFEmbedding table / projector architecture; excellent document understanding and fine-grained quantizationvisual understanding, document
MiniMax-01: Scaling Foundation Models with Lightning AttentionarXiv 2025PaperHybrid Lightning-Softmax Attention; MoE-based (45.9B active) multimodal; 4M long-context with near-zero prefill latency.visual understanding
mPLUG-Owl3arXiv 2024Paper CodeLong visual sequencesvisual understanding
Idefics3arXiv 2024Paper HFOpen-data recipe with strong document understandingvisual understanding
NVLM 1.0: Open Frontier-Class Multimodal LLMsarXiv 2024Paper HFHybrid multimodal design with strong OCR and reasoningvisual understanding
Idefics2arXiv 2024Paper HFFully open; built on Mistralvisual understanding
mPLUG-DocOwl 1.5 / 2: Unified Structure Learning for OCR-free Document UnderstandingarXiv 2024Paper CodeOCR-free document understanding with unified structure learning; excels at long documents and complex layoutsdocument understanding, OCR

3.2 Omni MLLMs

PaperVenueLinksNotesTaskAdaptor
MiMo-V2.5Model release 2026HFOpen-weight MoE model (MIT) with a dedicated MiMo ViT and a MiMo-Audio-initialized audio encoder; text pretraining is followed by visual/audio MLP projector warmup and multimodal pretraining. Supports image, video, and audio understanding with text outputsimage/video/audio understanding, multimodal reasoning, long-context agentsMLP Projector
MiniCPM-o 4.5: Towards Real-Time Full-Duplex Omni-Modal InteractionarXiv 2026Paper Code Model9B edge-oriented omni model using Omni-Flow for simultaneous visual/audio perception and speech response; supports proactive full-duplex interaction with less than 12GB memoryvision-language understanding, audio understanding, speech generation, full-duplex live interactionHybrid
Nemotron 3 Nano Omni: Efficient and Open Multimodal IntelligencearXiv 2026Paper CodeEfficiency-optimized omni-modal backbone using Hybrid Mamba2-Transformer MoE; supports massive multi-modal contexts (10k+ tokens) for long-video reasoning and agentic GUI navigation on edge devicesomni-modal understanding & reasoningHybrid
OmniGAIA: Towards Native Omni-Modal AI AgentsarXiv 2026Paper CodeComprehensive benchmark for omni-modal agents with complex multi-hop queries across video, audio, and image; includes OmniAtlas agent with tool-integrated reasoningomni-modal understanding & reasoningNative
OmniVideo-R1: Reinforcing Audio-visual Reasoning with Query Intention and Modality AttentionarXiv 2026PaperReinforced audio-visual reasoning framework with query intention grounding and modality attention fusionaudio-visual reasoningHybrid
Uni-MoE-2.0-Omni: Scaling Language-Centric Omnimodal Large Model with Advanced MoE, Training and DataarXiv 2025Paper CodeMoE-based scaling for omnimodal understanding and generationomni-modal understanding & generationMLP Projector
Omni-AVSR: Towards Unified Multimodal Speech Recognition with Large Language ModelsarXiv 2025Paper CodeUnified audio-visual speech recognition using LLMsaudio-visual speech recognitionHybrid
LongCat-Flash-Omni Technical ReportarXiv 2025Paper CodeLong-context omni-modal model supporting text and audio generationlong-context omni-modalHybrid
OmniVinci: Enhancing Architecture and Data for Omni-Modal Understanding LLMarXiv 2025Paper CodeArchitecture and data enhancements for omni-modal understandingomni-modal understandingHybrid
InteractiveOmni: A Unified Omni-modal Model for Audio-Visual Multi-turn DialoguearXiv 2025Paper CodeUnified model for audio-visual multi-turn dialogueaudio-visual dialogueHybrid
OneLLM: One Framework to Align All Modalities with LanguageCVPR 2024PaperUnified framework aligning eight modalities to language through modality tokenizers and lightweight projectorsall-in-one LLMHybrid
MoME: Mixture of Matryoshka Experts for Audio-Visual Speech RecognitionNeurIPS 2025PaperMixture of Matryoshka experts for efficient audio-visual speech recognitionaudio-visual speech recognitionHybrid
Qwen3-Omni Technical ReportarXiv 2025Paper CodeOmni-modal model with text and audio capabilities (Alibaba/Qwen series)omni-modalNative
Qwen2.5-Omni Technical ReportarXiv 2025Paper CodeOmni-modal technical report with text and audio support (Alibaba/Qwen series)omni-modalHybrid
MiniCPM-o 2.6: A GPT-4o Level MLLM for Vision, Speech, and Multimodal Live Streaming on Your Phone2025Paper CodeOn-device GPT-4o level MLLM for vision, speech and multimodal live streaming (OpenBMB)on-device multimodal live streamingHybrid
Baichuan-Omni Technical ReportarXiv 2024Paper CodeTechnical report for Baichuan-Omni (Baichuan Inc.)omni-modalHybrid
Baichuan-Omni-1.5 Technical ReportarXiv 2025Paper CodeTechnical report for Baichuan-Omni 1.5 (Baichuan Inc.)omni-modalHybrid
VITA: Towards Open-Source Interactive Omni Multimodal LLMarXiv 2024Paper CodeOpen-source interactive omni multimodal LLMinteractive omni multimodalHybrid
VITA-1.5: Towards GPT-4o Level Real-Time Vision and Speech InteractionarXiv 2024Paper CodeReal-time vision and speech interaction modelreal-time multimodal interactionHybrid
Mini-Omni2: Towards Open-source GPT-4o with Vision, Speech and Duplex CapabilitiesNeurIPS 2024Paper CodeOpen-source GPT-4o style model with vision, speech and duplex capabilitiesvision-speech duplexHybrid
Ola: Pushing the Frontiers of Omni-Modal Language Model with Progressive Modality AlignmentarXiv 2025Paper CodeProgressive modality alignment for omni-modal language modelomni-modal alignmentMLP Projector
MIO: A Foundation Model on Multimodal TokensarXiv 2024Paper CodeFoundation model based on multimodal tokensmultimodal tokensNative
EMOVA: Empowering Language Models to See, Hear and Speak with Vivid EmotionsCVPR 2024Paper CodeMultimodal model supporting seeing, hearing and emotional speechemotional multimodalHybrid
Stream-Omni: Simultaneous Multimodal Interactions with Large Language-Vision-Speech ModelarXiv 2025Paper CodeSimultaneous multimodal interactions with language-vision-speech modelsimultaneous multimodalHybrid
ShapeLLM-Omni: A Native Multimodal LLM for 3D Generation and UnderstandingarXiv 2025Paper CodeNative multimodal LLM focused on 3D generation and understanding3D multimodalNative
Pengi: An Audio Language Model for Audio TasksarXiv 2023Paper CodeAudio-language model using audio representations with a frozen language model for audio captioning, QA, and retrieval-style tasksaudio-language understandingHybrid
LTU: Listen, Think, and UnderstandarXiv 2023Paper CodeAudio-oriented multimodal instruction-following model for open-ended audio understandingaudio-language understandingHybrid

Back to Top


4. Unified Multimodal Models (UMMs)

In this section: 4.1 Taxonomy by Generation Paradigm · 4.2 Any-to-Any / Omni UMMs

Models that unify multimodal understanding and visual generation within one framework. The defining property is U+G unification, not necessarily training from scratch.

Boundary with NMMs: if a unified model's central contribution is native end-to-end multimodal pretraining from scratch, we document its architectural details primarily in §5 NMMs and keep §4 focused on the unified U+G perspective.


Overview of representative paradigms and architectures of Unified Multimodal Models (UMMs). Source: https://github.com/AIDC-AI/Awesome-Unified-Multimodal-Models

4.1 Taxonomy by Generation Paradigm

Subtopics: Diffusion-Based UMMs · Autoregressive (AR) UMMs · Hybrid (AR + Diffusion) UMMs

Unified models are categorized according to their core generation mechanism for visual output (while supporting strong multimodal understanding). This taxonomy highlights trade-offs in fidelity, reasoning, efficiency, and training stability.

Diffusion-Based UMMs

ModelVenueLinksParadigmNotesTask
LLaDA2.0-UniarXiv 2026Paper CodeUnified Discrete DiffusionUnified image generation + understanding base on LLaDA2.0visual understanding, visual generation
Dual DiffusionarXiv 2025Paper CodeDual DiffusionUnified image generation + understanding via bidirectional diffusionvisual understanding, visual generation
UniDiscarXiv 2025Paper CodeUnified Discrete DiffusionDiscrete diffusion for multimodal U+Gvisual understanding, visual generation
MMaDAarXiv 2025Paper CodeMultimodal Large Diffusion LMDiffusion LM for unified understanding/generationvisual understanding, visual generation
FUDOKIarXiv 2025PaperDiscrete Flow-based UnifiedKinetic-optimal velocities for U+Gvisual understanding, visual generation
MudditarXiv 2025Paper CodeUnified Discrete DiffusionLiberating generation beyond T2Ivisual understanding, visual generation
Lavida-OarXiv 2025Paper CodeElastic Large Masked DiffusionElastic masked diffusion for U+Gvisual understanding, visual generation
UniModelarXiv 2025PaperVisual-Only MMDiT FrameworkVisual-only unified multimodal U+Gvisual understanding, visual generation

Autoregressive (AR) UMMs

Pixel Encoding
ModelVenueLinksModalitiesNotesTask
LWMarXiv 2024Papervideo + languageWorld model on million-length video and language with blockwise ring attentionvisual understanding, visual generation
ChameleonarXiv 2024Paper Codeimage + textMixed-modal early-fusion foundation models; token-by-token generationvisual understanding, visual generation
ANOLEarXiv 2024Paper Codeimage + textOpen autoregressive native LMM for interleaved image-text generationvisual understanding, visual generation
MMARarXiv 2024Paperimage + textLossless multi-modal auto-regressive probabilistic modelingvisual understanding, visual generation
OrthusarXiv 2024Paper Codeimage + textAutoregressive interleaved image-text generation with modality-specific headsvisual understanding, visual generation
SynerGen-VLarXiv 2024Paperimage + textSynergistic image understanding and generation with vision experts and token foldingvisual understanding, visual generation
LiquidarXiv 2024Paper Codeimage + textLanguage models are scalable and unified multi-modal generatorsvisual understanding, visual generation
UGenarXiv 2025Paperimage + textUnified autoregressive multimodal model with progressive vocabulary learningvisual understanding, visual generation
HarmonarXiv 2025Paper Codeimage + textShared MAR encoder for semantic + fine-grained harmony; SOTA GenEvalvisual understanding, visual generation
TokLIParXiv 2025Paper Codeimage + textMarry visual tokens to CLIP for U+Gvisual understanding, visual generation
SelftokarXiv 2025Paper Codeimage + textDiscrete visual tokens for AR / Diffusion / Reasoningvisual understanding, visual generation
OneCatarXiv 2025Paper Codeimage + textPure decoder-only unified U+Gvisual understanding, visual generation
Uni-XarXiv 2025Paper Codeimage + textTwo-end-separated architecture mitigating modality conflictvisual understanding, visual generation
Emu3arXiv 2024Paper Codeimage + video + textEarly-fusion native autoregressive model; see NMM / Early Fusion for architectural classificationvisual understanding, visual generation
Semantic Encoding
TitleVenueLinksFocusTask
Ming-UniVision: Joint Image Understanding and Generation with a Unified Continuous TokenizerarXiv 2025Paper CodeUnified continuous tokenizer for joint understanding and generationvisual understanding, visual generation
Bifrost-1: Bridging Multimodal LLMs and Diffusion Models with Patch-level CLIP LatentsarXiv 2025Paper CodeBridging MLLMs and diffusion models via patch-level CLIP latentsvisual understanding, visual generation
Qwen-Image Technical ReportarXiv 2025Paper CodeHigh-quality image generation with strong text renderingvisual generation
X-Omni: Reinforcement Learning Makes Discrete Autoregressive Image Generative Models Great AgainarXiv 2025Paper CodeRL-enhanced discrete autoregressive unified modelingvisual understanding, visual generation
Ovis-U1 Technical ReportarXiv 2025Paper Code3B unified model for understanding, text-to-image and editingvisual understanding, visual generation
UniCode²: Cascaded Large-scale Codebooks for Unified Multimodal Understanding and GenerationarXiv 2025PaperCascaded large-scale codebooks for unified modelingvisual understanding, visual generation
OmniGen2: Exploration to Advanced Multimodal GenerationarXiv 2025Paper CodeVersatile open-source unified generation modelvisual generation
Vision as a Dialect: Unifying Visual Understanding and Generation via Text-Aligned RepresentationsarXiv 2025Paper CodeText-aligned discrete semantic representationsvisual understanding, visual generation
UniFork: Exploring Modality Alignment for Unified Multimodal Understanding and GenerationarXiv 2025Paper CodeY-shaped architecture for modality alignmentvisual understanding, visual generation
UniWorld: High-Resolution Semantic Encoders for Unified Visual Understanding and GenerationarXiv 2025Paper CodeHigh-resolution semantic encodersvisual understanding, visual generation
Pisces: An Auto-regressive Foundation Model for Image Understanding and GenerationarXiv 2025PaperAuto-regressive foundation modelvisual understanding, visual generation
DualToken: Towards Unifying Visual Understanding and Generation with Dual Visual VocabulariesarXiv 2025PaperDual visual vocabulariesvisual understanding, visual generation
UniTok: A Unified Tokenizer for Visual Generation and UnderstandingarXiv 2025Paper CodeUnified tokenizervisual understanding, visual generation
QLIP: Text-Aligned Visual Tokenization Unifies Auto-Regressive Multimodal Understanding and GenerationarXiv 2025Paper CodeText-aligned visual tokenizationvisual understanding, visual generation
MetaMorph: Multimodal Understanding and Generation via Instruction TuningarXiv 2024PaperInstruction tuning for unified multimodalvisual understanding, visual generation
ILLUME: Illuminating Your LLMs to See, Draw, and Self-EnhancearXiv 2024PaperSelf-enhancing unified see-and-drawvisual understanding, visual generation
PUMA: Empowering Unified MLLM with Multi-granular Visual GenerationarXiv 2024Paper CodeMulti-granular visual generationvisual understanding, visual generation
VILA-U: a Unified Foundation Model Integrating Visual Understanding and GenerationICLR 2024Paper CodeUnified foundation modelvisual understanding, visual generation
Mini-Gemini: Mining the Potential of Multi-modality Vision Language ModelsarXiv 2024Paper CodeMulti-modality potential miningvisual understanding, visual generation
MM-Interleaved: Interleaved Image-Text Generative Modeling via Multi-modal Feature SynchronizerarXiv 2024Paper CodeInterleaved image-text generative modelingvisual understanding, visual generation
VL-GPT: A Generative Pre-trained Transformer for Vision and Language Understanding and GenerationarXiv 2023PaperGenerative pre-trained transformervisual understanding, visual generation
Generative Multimodal Models are In-Context Learners (Emu2)CVPR 2024PaperIn-context learning generative multimodal modelvisual understanding, visual generation
DreamLLM: Synergistic Multimodal Comprehension and CreationICLR 2023PaperSynergistic multimodal comprehension and creationvisual understanding, visual generation
LaVIT: Unified Language-Vision Pretraining in LLM with Dynamic Discrete Visual TokenizationICLR 2023Paper CodeDynamic discrete visual tokenizationvisual understanding, visual generation
Emu: Generative Pretraining in MultimodalityICLR 2023PaperGenerative pretraining in multimodalityvisual understanding, visual generation
Learnable Query Encoding
TitleVenueLinksFocusTask
Skywork UniPic 2.0: Building Kontext Model with Online RL for Unified Multimodal ModelarXiv 2025PaperKontext model with online RL and MetaQuery connector for unified multimodal frameworkvisual understanding, visual generation, editing
TBAC-UniImage: Unified Understanding and Generation by Ladder-Side Diffusion TuningarXiv 2025PaperLadder-side diffusion tuning integrating MLLM and DiT via layer-wise alignmentvisual understanding, visual generation
UniLiP: Adapting CLIP for Unified Multimodal Understanding, Generation and EditingarXiv 2025PaperAdapting CLIP with unified continuous tokenizer for reconstruction, generation and editingvisual understanding, visual generation, editing
OpenUni: A Simple Baseline for Unified Multimodal Understanding and GenerationarXiv 2025Paper CodeSimple baseline with learnable queries and lightweight connector bridging MLLM and diffusionvisual understanding, visual generation
BLIP3-o: A Family of Fully Open Unified Multimodal Models-Architecture, Training and DatasetarXiv 2025PaperFully open unified multimodal models with complete architecture, training recipe and datasetsvisual understanding, visual generation
Ming-Lite-Uni: Advancements in Unified Architecture for Natural Multimodal InteractionarXiv 2025PaperUnified visual generator and native multimodal autoregressive model for natural interactionvisual understanding, visual generation
Nexus-Gen: A Unified Model for Image Understanding, Generation, and EditingarXiv 2025Paper CodePrefilled autoregression in shared embedding space unifying understanding, generation and editingvisual understanding, visual generation, editing
Transfer between Modalities with MetaQueriesarXiv 2025Paper CodeLearnable MetaQueries as efficient interface between autoregressive MLLMs and diffusion modelsvisual understanding, visual generation
SEED-X: Multimodal Models with Unified Multi-granularity Comprehension and GenerationarXiv 2024Paper CodeUnified multi-granularity visual semantics for arbitrary-size comprehension and generationvisual understanding, visual generation
Making LLaMA SEE and Draw with SEED TokenizerICLR 2023Paper CodeSEED tokenizer enabling LLaMA for scalable multimodal autoregression (see and draw)visual understanding, visual generation
Planting a SEED of Vision in Large Language ModelarXiv 2023Paper CodeSEED image tokenizer with 1D causal dependency and high-level semantics for LLM visionvisual understanding, visual generation
Hybrid Encoding (Pseduo)
TitleVenueLinksFocusTask
Skywork UniPic: Unified Autoregressive Modeling for Visual Understanding and GenerationarXiv 2025Paper CodeUnified autoregressive modeling with decoupled encoding for image understanding, generation and editingvisual understanding, visual generation
MindOmni: Unleashing Reasoning Generation in Vision Language Models with RGPOarXiv 2025Paper CodeUnified VLM with reasoning generation via Reinforcement Learning (RGPO)multimodal understanding, reasoning generation
UniFluid: Unified Autoregressive Visual Generation and Understanding with Continuous TokensarXiv 2025PaperUnified autoregressive framework using continuous visual tokensvisual understanding, visual generation
OmniMamba: Efficient and Unified Multimodal Understanding and Generation via State Space ModelsarXiv 2025Paper CodeEfficient linear-time unified multimodal model based on Mamba (state space models)multimodal understanding, visual generation
Janus-Pro: Unified Multimodal Understanding and Generation with Data and Model ScalingarXiv 2025Paper CodeScaled-up version of Janus with improved training strategy, more data and larger model sizemultimodal understanding, visual generation
Janus: Decoupling Visual Encoding for Unified Multimodal Understanding and GenerationarXiv 2024Paper CodeDecoupling visual encoding to enable unified understanding and generation in an autoregressive frameworkmultimodal understanding, visual generation
Hybrid Encoding (Joint)
TitleVenueLinksFocusTask
UniAR: Unified Multimodal Autoregressive Modeling with Shared Context-Visual Tokenizer is Key to UnificationICML 2026PaperShared context-visual tokenizer bridging understanding and generation; AR visual-token prediction with diffusion-based decoding for high-fidelity generation and editingvisual understanding, visual generation, editing
AToken: A Unified Tokenizer for VisionarXiv 2025Paper CodeAToken unified visual tokenizer achieving high-fidelity reconstruction and semantic understanding for images, videos and 3Dvisual understanding, visual generation
UniWeTok: An Unified Binary Tokenizer with Codebook Size 2128 for Unified Multimodal Large Language ModelarXiv 2026PaperUniWeTok unified binary tokenizer with 2^{128} codebook, pre-post distillation and generative-aware prior for MLLMsvisual understanding, visual generation
Towards Scalable Pre-training of Visual Tokenizers for GenerationarXiv 2025Paper CodeVTP unified visual tokenizer pre-training framework with joint image-text contrastive, self-supervised and reconstruction lossesvisual understanding, visual generation
The Prism Hypothesis: Harmonizing Semantic and Pixel Representations via Unified AutoencodingarXiv 2025Paper CodePrism Hypothesis and unified autoencoding (UAE) harmonizing semantic and pixel representations across modalitiesvisual understanding, visual generation
Show-o2: Improved Native Unified Multimodal ModelsarXiv 2025Paper CodeImproved native unified multimodal models with autoregressive modeling and flow matching for understanding and generationmultimodal understanding and generation
UniToken: Harmonizing Multimodal Understanding and Generation through Unified Visual EncodingCVPRW 2025Paper CodeUnified visual encoding combining discrete and continuous representations for autoregressive multimodal modelsmultimodal understanding and generation
VARGPT-v1.1: Improve Visual Autoregressive Large Unified Model via Iterative Instruction Tuning and Reinforcement LearningarXiv 2025Paper CodeEnhanced visual autoregressive unified model with iterative instruction tuning and DPO reinforcement learningvisual understanding, generation and editing
ILLUME+: Illuminating Unified MLLM with Dual Visual Tokenization and Diffusion RefinementarXiv 2025Paper CodeDual visual tokenization and diffusion refinement for unified multimodal large language modelmultimodal understanding and generation
SemHiTok: A Unified Image Tokenizer via Semantic-Guided Hierarchical Codebook for Multimodal Understanding and GenerationarXiv 2025PaperSemantic-guided hierarchical codebook for unified image tokenization supporting understanding and generationmultimodal understanding and generation
VARGPT: Unified Understanding and Generation in a Visual Autoregressive Multimodal Large Language ModelarXiv 2025Paper CodeVisual autoregressive framework unifying understanding and generation in a single MLLMvisual understanding and generation
TokenFlow: Unified Image Tokenizer for Multimodal Understanding and GenerationCVPR 2025Paper CodeUnified image tokenizer with dual-codebook architecture bridging understanding and generationmultimodal understanding and generation
MUSE-VL: Modeling Unified VLM through Semantic Discrete EncodingarXiv 2024PaperSemantic discrete encoding for unified vision-language model enabling efficient multimodal understanding and generationmultimodal understanding and generation

Hybrid (AR + Diffusion) UMMs

Pixel Encoding
PaperVenueLinksNotesTask
Tuna: Taming Unified Visual Representations for Native Unified Multimodal ModelsarXiv 2025Paper CodeNative unified multimodal model with cascaded VAE + representation encoder for unified continuous visual representationsmultimodal understanding and generation
LMFusion: Adapting Pretrained Language Models for Multimodal GenerationarXiv 2024PaperAdapting pretrained LLMs (Llama) for multimodal generation by adding parallel diffusion modules while keeping autoregressive text modelingmultimodal understanding and generation
MonoFormer: One Transformer for Both Diffusion and AutoregressionarXiv 2024Paper CodeSingle shared transformer backbone that handles both autoregressive modeling and diffusion for unified multimodal tasksvisual understanding and generation
Show-o: One Single Transformer to Unify Multimodal Understanding and GenerationICLR 2025Paper CodeUnified transformer combining autoregressive and discrete diffusion modeling to flexibly handle mixed-modality inputs/outputsmultimodal understanding and generation
Transfusion: Predict the Next Token and Diffuse Images with One Multi-Modal ModelICLR 2025Paper7B-scale reportSingle multimodal model combining next-token text prediction with image diffusion over mixed discrete/continuous sequences
Hybrid Encoding
PaperVenueLinksNotesTask
Mamoda2.5: Enhancing Unified Multimodal Model with DiT-MoEarXiv 2026Paper CodeUnified AR-Diffusion framework coupling multimodal understanding with a DiT-MoE generation backbone; supports image/video generation and editing, including few-step video editing. Paper and inference code are public; official repository lists model weights as under internal review as of 2026-09-15multimodal understanding, image/video generation, image/video editing
Vision as Unified Multimodal Generation (SenseNova-Vision)arXiv 2026Paper Model CollectionFine-tunes a pretrained BAGEL-7B-MoT unified model to express computer-vision tasks through native text, image, or mixed generation without task-specific prediction headsdetection, OCR, keypoints, segmentation, depth, normals, point maps, camera pose
Qwen-Image-2.0 Technical ReportarXiv 2026PaperCouples Qwen3-VL as condition encoder with a Multimodal Diffusion Transformer for unified high-fidelity image generation and precise editingmultimodal understanding, image generation, editing
S1-Omni-Image: A Unified Model for Scientific Image Understanding, Generation, and EditingarXiv 2026PaperBuilds on S1-VL-32B and injects reasoning hidden states into an image generation module for scientific image understanding, generation and editingscientific image understanding, generation and editing
Omni-Video 2: Scaling MLLM-Conditioned Diffusion for Unified Video Generation and EditingarXiv 2026Paper CodeConnects pretrained MLLMs with video diffusion models through lightweight adapters for unified video generation and editingvideo generation and editing
InternVL-U: Democratizing Unified Multimodal Models for Understanding, Reasoning, Generation and EditingarXiv 2026Paper Code4B unified multimodal model integrating a strong MLLM with an MMDiT-based visual generation head for understanding, reasoning, generation and editingmultimodal understanding, reasoning, generation and editing
EMMA: Efficient Multimodal Understanding, Generation, and Editing with a Unified ArchitecturearXiv 2025Paper CodeEfficient unified architecture with autoencoders, channel-wise concatenation, shared-decoupled networks and MoE for understanding, generation and editingmultimodal understanding, generation and editing
HBridge: H-Shape Bridging of Heterogeneous Experts for Unified Multimodal Understanding and GenerationarXiv 2025PaperAsymmetric H-shaped architecture bridging heterogeneous experts with symmetric dense mid-layer connections for unified multimodal modelingmultimodal understanding and generation
LightFusion: A Light-weighted, Double Fusion Framework for Unified Multimodal Understanding and GenerationarXiv 2025Paper CodeLight-weighted double fusion framework that efficiently integrates pretrained vision-language and diffusion modelsmultimodal understanding and generation
BAGEL: Emerging Properties in Unified Multimodal PretrainingarXiv 2025Paper CodeOpen-source foundational decoder-only model pretrained on trillions of interleaved multimodal tokens supporting native understanding and generationmultimodal understanding and generation
Mogao: An Omni Foundation Model for Interleaved Multi-Modal GenerationarXiv 2025PaperCausal interleaved multi-modal generation framework with deep-fusion, dual vision encoders and multi-modal classifier-free guidanceinterleaved multimodal generation
JanusFlow: Harmonizing Autoregression and Rectified Flow for Unified Multimodal Understanding and GenerationarXiv 2024Paper CodeMinimalist framework harmonizing autoregressive LLMs with rectified flow for efficient unified understanding and generationmultimodal understanding and generation

4.2 Any-to-Any / Omni UMMs

Models that extend unified understanding + generation beyond text and image to support any-to-any modality conversion (audio, video, speech, etc.). These often build on the paradigms above but emphasize native omni-modal tokenization, long-context handling, and cross-modal generation.

ModelPaperLinksNotesTask
Kling-Omni Technical ReportarXiv 2025PaperUnified Diffusion Transformer (DiT) framework with Prompt Enhancer for high-fidelity video generation and reasoning-based editingMulti-modal visual language (MVL) for unified generation and understanding
LongCat-Flash-OmniarXiv 2025Paper CodeEfficient omni model with flash-style acceleration and real-time audio-visual interaction (560B parameters)any-to-any multimodal generation and understanding
Ming-flash-omni 2.0Model release 2026-02-11HFOpen-weight 100B-total / 6B-active MoE model (MIT) based on Ling-2.0; unifies image, text, video, and audio inputs with image, text, and audio outputs, including image editing and controllable speech/audio/music synthesismultimodal understanding, image generation/editing, audio generation, streaming video conversation
Ming-Flash-OmniarXiv 2025Paper CodeSparse unified MoE architecture (100B total, 6.1B active) for efficient multimodal perception and generationany-to-any multimodal perception and generation
Qwen3-OmniarXiv 2025Paper CodeNext-gen Qwen omni model with unified modality space, maintaining SOTA across text/image/audio/videoany-to-any multimodal understanding and generation
Ming-OmniarXiv 2025Paper CodeUnified multimodal architecture for perception + generation (images, text, audio, video)any-to-any multimodal tasks
M2-OmniarXiv 2025PaperExtends Omni-MLLM with broader modality support and competitive performance to GPT-4oany-to-any multimodal modeling
SpiderarXiv 2024Paper CodeAny-to-many multimodal LLM with flexible output heads for arbitrary modality combinationsmultimodal understanding and generation
MIOarXiv 2024PaperToken-level unified multimodal foundation model on discrete multimodal tokensany-to-any multimodal token modeling
X-VILAarXiv 2024PaperCross-modality alignment for LLM-based multimodal systems (image/video/audio)multimodal understanding
AnyGPTarXiv 2024Paper CodeDiscrete token modeling for unified multimodal generationany-to-any multimodal generation
OmniFlowCVPR 2025PaperUses multi-modal rectified flows for any-to-any generation across modalitiesany-to-any generation across modalities
Video-LaVITICML 2024Paper CodeDecoupled visual-motion tokenization for video-language modelingvideo understanding and generation
Unified-IO 2CVPR 2024Paper CodeScales autoregressive multimodal models across modalitiesany-to-any multimodal tasks (vision, language, audio, action)
NExT-GPTarXiv 2023Paper CodeAny-to-any; encoder+LLM+diffusion decodersvisual understanding, visual generation, omni

Back to Top


5. Native Multimodal Models (NMMs)

In this section: 5.1 Design Analyses & Scaling Laws · 5.2 Early Fusion NMMs · 5.3 Late Fusion NMMs · 5.4 Any-to-Any / Omni NMMs · 5.5 Training-Native Models

Two dimensions of nativity: architectural integration and multimodal optimization. Architecture-native entries may inherit pretrained backbones; training-native entries are distinguished from claims about fusion depth. From-scratch initialization is stated only where supported. Models may also retain their UMM classification.

What recent arXiv work emphasizes: native multimodality is increasingly defined by end-to-end multimodal pretraining, tokenizer/representation co-design, and scaling strategies that explicitly address the asymmetry between vision and language.

5.1 Design Analyses & Scaling Laws

Recent arXiv papers sharpen the definition of NMMs and identify the main bottlenecks in native multimodal pretraining.

PaperVenueLinksInsights
Scaling Native Multimodal Pre-Training From ScratcharXiv 2026PaperDerives compute and allocation laws for transformer-based VLMs trained from scratch, showing distinct language and multimodal scaling behavior, data-mixture-sensitive multimodal allocation, and positive cross-modal transfer
Toward Native Multimodal Modeling: A RoadmaparXiv 2026PaperThe end-to-end pipeline from industrial perspectives from architectural coordination, massive data curation, to full-stack training recipes, inference & deployment, and the comprehensive evaluation for truly native modeling
Beyond Language Modeling: An Exploration of Multimodal PretrainingarXiv 2026PaperHighlights representation autoencoders, vision-language data synergy, and MoE for native pretraining
NaViL: Rethinking Scaling Properties of Native Multimodal Large Language Models under Data ConstraintsarXiv 2025Paper CodeEnd-to-end native MLLM scaling shows positive correlation between visual encoder and LLM size under data constraints; optimal meta-architecture balances cost and performance
Learning to See Before Seeing: Demystifying LLM Visual Priors from Language Pre-trainingarXiv 2025Paperreveals that LLMs develop latent visual priors during text-only pre-training, where reasoning-centric data (code and math) builds transferable visual reasoning skills while broad corpora foster perception, enabling models to 'see' before ever processing an image.
Scaling Laws for Native Multimodal ModelsarXiv 2025PaperEarly-fusion NMMs match or outperform late-fusion at low compute; early-fusion needs fewer params; MoE with modality-agnostic routing boosts sparse NMM scaling
The Narrow Gate: Localized Image-Text Communication in Native Multimodal ModelsarXiv 2024PaperNative models often funnel image-to-text communication through a single post-image token

5.2 Early Fusion NMMs

Modality tokens or embeddings enter shared backbone computation before its first block. Separate input encoders, tokenizers, experts, and decoders are compatible with early fusion. Architecture-native entries are explicitly qualified where pretrained initialization prevents an equally strong from-scratch claim.

Recent scaling-law evidence suggests early-fusion NMMs are often stronger at lower parameter counts and simpler to deploy when paired with sufficiently strong visual representations.

ModelPaperLinksTraining ScaleNotesTask
DeepSeek-V4.1-FlashModel release 2026-09-10Announcement HF552B backbone; 45T multimodal pretraining tokens; 1M contextOpen-weight model (MIT) trained from scratch on multimodal data; DeepSeek-ViT and a two-layer MLP produce image embeddings jointly processed with text from the start of language-model pretraining. Shared computation uses a Causal Encoder-Decoder architectureimage/text understanding, visual reasoning, coding, long-context agents
Qwen3.8-Flash-NextModel release 2026-08-26Code HF Implementation125B backbone / 6B active; 51B n-gram embeddings + 4B MTPOpen-weight experimental architecture preview under Qwen Community License 1.0; architecture-native early fusion inserts image/video embeddings into the shared language-backbone input. Combines Gated DeltaNet, Qwen Sparse Attention, and gated residuals; all-components-from-scratch initialization is unverifiedimage/video understanding, visual reasoning, coding, long-horizon agents
Qwen3.8-27BModel release 2026-08-14Code HF27B dense; 262K native context, extensible to 1MOpen-weight architecture-native VLM built on Qwen3.5's early-fusion vision-language architecture; image/video embeddings and text share the language backbone. Training stage is pretraining plus post-training; all-components-from-scratch initialization is unverifiedimage/video understanding, document understanding, visual reasoning, agentic work
Inkling-SmallModel release 2026-07-30Announcement Model Card HF276B total / 12B activeOpen-weight MoE model with a hierarchical image-patch encoder and discrete audio encoding; text, image, and audio representations enter a shared hidden space and are jointly processed by one decoder. Outputs text; fusion classification does not assert all-components-from-scratch initializationtext/image/audio understanding, visual and audio reasoning, coding, agentic tool use
InklingThinking Machines Lab, 2026Announcement Model Card HF975B total / 41B active; 45T multimodal pretraining tokens; 1M contextOpen-weight MoE model trained from scratch with encoder-free vision and audio inputs; images use 40×40 patches with a lightweight four-layer hMLP, while audio uses dMel spectrograms, jointly processed with text tokenstext/image/audio understanding, visual and audio reasoning, speech transcription, coding, agentic tool use
Gemma 4 12B UnifiedModel release 2026-06-03Announcement HF12BOpen-weight encoder-free architecture (Apache 2.0): lightweight linear layers project raw image patches and audio waveforms into the shared decoder's embedding space. Listed separately from encoder-based Gemma 4 variants; "Unified" refers to input architecture, with text-only outputimage/video/audio understanding, multimodal reasoning, on-device agents
HYDRA-X: Native Unified Multimodal Models with Holistic Visual TokenizersarXiv 2026Paper7B dense modelNative unified multimodal model with a holistic image-video ViT tokenizer, covering image/video understanding, image/video generation, and image editingimage/video understanding, image/video generation, editing
NEO-OVarXiv 2026PaperNative one-vision scaling from pixels to words, extending the NEO line toward stronger native visual primitivesvision-language understanding
SenseNova-U1.5-8B-MoTModel release 2026-08-20Paper Code HFNEO-unify-based encoder-free MoT model with improved patchify layers, native 4K generation, text rendering, and image editing; grouped with U1 by architecture, with from-scratch initialization unverifiedvisual understanding, image generation, editing, interleaved generation
SenseNova-U1arXiv 2026Paper CodeNEO-Unify-based native unified multimodal model handling understanding, generation, and reasoning in one modelUnified Understanding & Generation
HiDream-O1-ImagearXiv 2026PaperNatively unified image generative foundation model with pixel-level unified transformerimage generation, unified modeling
Tuna-2arXiv 2026PaperNative unified multimodal model that discards traditional vision encoders in favor of direct pixel embeddings for end-to-end understanding and generationUnified Understanding & Generation
NEOarXiv 2025PaperNative vision-language primitives at scale; paired with reusable components for cost-effective native VLM developmentvision-language understanding
NEO-UnifyBlog 2025BlogNative unified extension of NEO for understanding, generation, and reasoningUnified Understanding & Generation
Emu3.5Nature 2026Paper CodeLarge-scale (trillion+ tokens)Native world model; next-state prediction on interleaved video/text; Discrete Diffusion Adaptation for efficiencyinterleaved generation, world modeling, any-to-image
LongCat-NextarXiv 2026PaperEarly fusion: DiNA represents text, vision, and audio as discrete tokens processed by a shared modality-agnostic autoregressive backbone; Omni capabilitiestext/image/audio understanding and generation
Llama4arXiv 2026Paper BlogScout/Maverick: 17B active / ~109B–400B total; Behemoth: ~2T totalArchitecture-native early fusion of text and vision tokens in a shared MoE backbone; separately trained vision encoder, so early fusion does not imply all components were trained from scratchvision-language understanding
Emu3arXiv 2024Paper Code8BEarly-fusion autoregressive backbone jointly models text, image, and video tokens; also indexed under UMM / AR / Pixel Encodingvisual understanding, visual generation
ChameleonarXiv 2024Paper CodeEarly-fusion backbone trained from scratch on interleaved image-text tokens; separate visual tokenizer; also listed under UMM / AR / Pixel Encodingvisual understanding, visual generation
Transfusion: Predict the Next Token and Diffuse Images with One Multi-Modal ModelICLR 2025Paper7BEarly-fusion shared Transformer jointly models text tokens and continuous image latents with next-token prediction and diffusion; also listed under Hybrid UMMsvisual understanding, visual generation
Show-o: One Single Transformer to Unify Multimodal Understanding and GenerationICLR 2025Paper CodeArchitecture-native early fusion with a pretrained language-model initialization; shared Transformer combines autoregressive text modeling and masked image-token diffusion; UMM entrymultimodal understanding and generation
Show-o2: Improved Native Unified Multimodal ModelsarXiv 2025Paper CodeArchitecture-native early fusion with autoregressive text modeling and visual flow matching; uses a pretrained language backbone, not an all-components-from-scratch model; UMM entrymultimodal understanding and generation
OneCatarXiv 2025Paper CodeArchitecture-native early fusion with a Qwen2.5-initialized decoder and modality-specific experts; unified autoregressive understanding and generation; UMM entryvisual understanding, visual generation, editing

5.3 Late Fusion NMMs

Models where separate unimodal components are jointly trained from scratch (not pretrained), with cross-modal interaction occurring at deeper layers. Distinct from MLLMs where vision encoders are pretrained.

ModelPaperLinksTraining ScaleNotesTask
LancearXiv 2026Paper Code3B (MoE)Native multimodal MoEUnified multimodal understanding and multimodal generation
Kimi K3: Open Frontier IntelligencearXiv 2026Paper HF2.8T total / 104B active; 1M contextJoint language-vision training from the outset; MoonViT-V2 is trained from scratch and connected to the language backbone through pixel-shuffle downsampling and an MLP projectorimage/video understanding, visual reasoning, long-horizon agents
Kimi K2.6Moonshot AI 2026BlogMoE Architecture: 32B active / 1T total parameters; supports 256K contextNative multimodal MoE with MLA (Multi-head Latent Attention) and MoonViT encoderUnified multimodal understanding, long-horizon coding, and agent swarms
GLM-5V-Turbo: Toward a Native Foundation Model for Multimodal AgentsarXiv 2026PaperNative multimodal foundation model featuring CogViT vision encoder, Multimodal Multi-Token Prediction (MMTP), and joint RL for agentic GUI/Design2Code tasksmultimodal agentic reasoning
LLaVA-OneVision-2arXiv 2026Code HF8BNative multimodal training with OneVision-Encoder and Qwen3 text backbone; codec-aligned visual encoding for image, long-video, spatial, document/OCR/chart understandingvisual understanding, video, spatial reasoning
Qwen3.5-BlogDiscrete Native Any-resolution Visual Transformervision-language understanding
Gemma4-BlogA pre-trained ViT encoder with a visual expert that uses cross-attention for deep but late-style fusion to the LLM, preserving its capabilities.vision-language understanding

5.4 Any-to-Any / Omni NMMs

The latest arXiv-native multimodal papers increasingly blur the boundaries between omni understanding, any-to-any generation, world modeling, and RL-enhanced post-training.

ModelPaperLinksTraining ScaleNotesTask
HyperCLOVA X 8B OmniarXiv 2026Paper HF8BAny-to-any omnimodal model unifying text, audio, and vision through a shared next-token prediction interface over interleaved multimodal sequencestext/audio/vision understanding and generation
MiniMax-M3MiniMax 2026Blog Code~428B total / ~23B active; 1M contextNative multimodal model with MiniMax Sparse Attention (MSA), trained for text, image, and video understanding, long-context coding, agentic workflows, and computer-use tasksnative multimodal understanding, video, coding, agentic computer use
Tri-Modal Masked Diffusion ModelsarXiv 2026 (Omni / Any-to-Any)Paper3B; 6.4T tokensStudies a from-scratch tri-modal masked diffusion model spanning text, image-text, and audio-text data, with scaling, modality mixing, noise-schedule, batch-size, and inference analysestext generation, text-to-image, text-to-speech
Qwen3.5-OmniQwen Blog 2026BlogDiscrete native any-resolution visual transformer with omni-modal extensionvision-language understanding, omni
ERNIE 5.0 Technical ReportarXiv 2026 (Late fusion)PaperNatively autoregressive foundation model designed for unified multimodal understanding and generation across text, image, video, and audiovision-language understanding, omni

5.5 Training-Native Models

These entries record a native multimodal training route separately from fusion topology. This qualification does not claim that every component is trained from scratch; no Early, Mid, or Late Fusion label is assigned without architectural evidence.

ModelPaperLinksTraining ScaleNotesTask
InternVL3arXiv 2025PaperTraining-native route: native multimodal pretraining within a ViT–MLP–LLM architecture; pretrained components are retained. This training qualification does not establish strict late or mid fusion; fusion depth is left unspecified here.vision-language understanding
InternVL3.5arXiv 2025PaperTraining-native route: native multimodal pretraining within a ViT–MLP–LLM architecture; pretrained components are retained. This training qualification does not establish strict late or mid fusion; fusion depth is left unspecified here.vision-language understanding

Back to Top


6. Closed-Source Multimodal Models

Year 2026

ModelVenueLinksNotesTask
GPT-6 AstraOpenAI, 2026Announcement System CardSeptember 2026 proprietary model with text/image input and text output, supporting visual reasoning, coding, computer use, and long-horizon agentic workvisual understanding, multimodal reasoning, coding, computer use, agents
Claude Fable 5.1 / Mythos 5.1Anthropic, 2026Announcement ModelsSeptember 2026 release; Fable 5.1 and Mythos 5.1 are the same underlying model with different safeguards. Fable is generally available, while Mythos is restricted to trusted access programs; grouped as one entryvisual understanding, reasoning, coding, computer use, long-horizon agents
Muse Spark 1.3Meta, 2026Announcement ModelsSeptember 2026 proprietary Muse Spark update for multimodal perception, coding, and agentic work, available through Muse Code and Meta Model API. Open-weight release remains a future plan as of 2026-09-15visual understanding, multimodal reasoning, coding, agents
Gemini 3.8 FlashGoogle DeepMind, 2026Model CardSeptember 2026 Gemini Flash model supporting text, image, audio, and video inputs with text output; up to 1M input context, with configurable reasoning effortmultimodal understanding, video/audio understanding, reasoning, coding, agents
Grok 4.6xAI, 2026Announcement Model DocsAugust 2026 proprietary model with text/image input and text output; extends the Grok family with visual work, coding, and long-running agent workflowsvisual understanding, multimodal reasoning, coding, agents
Claude 5 Family (Opus 5 / Sonnet 5)Anthropic, 2026Opus 5 Sonnet 5 ModelsOpus 5 (July 2026) and Sonnet 5 (June 2026) support text/image input and text output, with vision, reasoning, tool use, and agentic coding; retained separately from the Fable/Mythos familyvisual understanding, reasoning, coding, computer use, agents
Seed2.1 Pro / TurboByteDance Seed, 2026Announcement ModelsJune 2026 proprietary Seed2.1 family; Pro and Turbo provide different model sizes for visual/video understanding, reasoning, software engineering, and cross-tool agent workflowsvisual/video understanding, multimodal reasoning, coding, agents
GPT-5.6 Sol / Terra / LunaOpenAI, 2026AnnouncementJuly 2026 general-availability release of the GPT-5.6 family: Sol is the flagship model, Terra balances capability and cost, and Luna prioritizes speed and affordability.Multimodal Reasoning + Computer Use + Agentic Work
GPT-5.4 / GPT-5.5OpenAI BlogGPT-5.4 GPT-5.52026 GPT-5-series updates with improved reasoning, multimodal capability, and deployment efficiency.Omni-Modal + Professional/Agentic Workflows
Claude 4.6 Family (Opus 4.6 / Sonnet 4.6)Anthropic BlogOpus 4.6 Sonnet 4.6Claude 4.6 proprietary model family with vision, coding, tool use, and computer-use workflows.Multimodal + Agentic/Coding/Computer-Use
Gemini 3.1 Pro / Gemini 3.5Google BlogGemini 3.1 Pro Gemini 3.52026 Gemini 3-series updates with stronger multimodal reasoning, long-context, and action-oriented capabilities.Frontier Multimodal (text/image/audio/video + reasoning)

Year 2025

ModelVenueLinksNotesTask
Gemini 3 / Gemini 3 ProGoogle BlogGemini 3Native multimodal Gemini 3 generation with advanced reasoning, coding, and long-context capabilities.Frontier Multimodal + Reasoning
GPT-5 / GPT-4.5OpenAI BlogGPT-5 GPT-4.5Proprietary OpenAI GPT-series updates with multimodal reasoning and tool-use support.Omni-Modal + Advanced Reasoning/Agentic
Claude 4 Family (Opus 4 / Sonnet 4)Anthropic BlogClaude 4Claude 4 model family for coding, agentic tasks, vision, and extended tool use.Vision + Advanced Reasoning/Agentic Workflows
Grok 3 / Grok 4 / Grok 4.1xAI AnnouncementGrok 3 Grok 4 Grok 4.1Proprietary xAI models with multimodal input, real-time platform integration, and reasoning-focused releases.Multimodal Reasoning + Real-Time Integration
Gemini 2.0 / 2.5 (Pro / Flash)Google BlogGemini 2.0 Gemini 2.5 Pro Gemini 2.5 UpdatesNative multimodal Gemini 2-series models with long context, video/audio/image understanding, and agentic features.Advanced Native Multimodal + Agentic
Mistral Medium 3Mistral AIAnnouncementProprietary Mistral model offering text and vision capabilities through API/platform deployments.General Multimodal Tasks

Year 2024

ModelVenueLinksNotesTask
Gemini 1.5 (Pro / Flash)Google DeepMind BlogGemini 1.5 AnnouncementReleased February 2024. Massive context (>1M tokens), strong long-context multimodal (video, audio, images). Proprietary.Long-Context Multimodal (video/audio/image/text)
Claude 3 Family (Opus / Sonnet / Haiku)Anthropic BlogClaude 3 FamilyReleased March 2024. Strong native vision for images, charts, diagrams, and documents. Proprietary API + Claude.ai.Vision-Language + Reasoning
Claude 3.5 SonnetAnthropic BlogAnnouncementStronger proprietary Claude vision/reasoning model used for images, documents, charts, and coding workflows.Vision-Language + Reasoning
GPT-4o / GPT-4o miniOpenAI BlogGPT-4o GPT-4o miniGPT-4o introduced real-time omni interactions; GPT-4o mini provided a lower-cost multimodal model.Real-Time Omni-Modal (text/vision/audio)
Grok-1.5V / Grok-2 VisionxAI AnnouncementGrok-1.5V Grok-2Vision-capable Grok models for image understanding, diagram reasoning, and X platform integration.Vision-Language
Amazon Nova (Pro / Lite / Canvas / Reel)Amazon AnnouncementAWS BlogAmazon Bedrock model family covering multimodal understanding and image/video generation variants.Multimodal Understanding + Generation
Pixtral LargeMistral AIAnnouncementProprietary frontier multimodal Mistral model for image-text understanding through Le Chat/API deployments.Vision-Language

Year 2023

ModelVenueLinksNotesTask
GPT-4V (Vision)OpenAI AnnouncementGPT-4V System CardReleased September 2023. First widely available multimodal GPT-4 variant. Image + text input, text output. API/ChatGPT access only.Vision-Language (image understanding, VQA, OCR, document analysis, captioning)
Gemini 1.0 (Ultra / Pro / Nano)Google DeepMind BlogGemini AnnouncementReleased December 2023. Native multimodal from training (text + image + audio + video). Proprietary API + Gemini chatbot.Native Multimodal Understanding (text/image/audio/video)

7. Resources

In this section: 7.1 Related Awesome Lists · 7.2 Slides & Survey Papers · 7.3 Code Repositories & Tools

RepositoryFocusAuthor
awesome-multimodal-mlGeneral multimodal MLpliang279
Awesome-Multimodal-Large-Language-ModelsMLLMs + evaluationBradyFU
Awesome-Multimodal-ResearchBroad multimodal researchEurus-Holmes
Awesome-Unified-Multimodal-ModelsUMMsShowLab
Awesome-Multimodal-Large-Language-ModelsMLLMsyfzhang114
awesome-foundation-and-multimodal-modelsFoundation + multimodalSkalskiP
Awesome-MultimodalityGeneral multimodalityYutong-Zhou-cv
Awesome-Unified-MultimodalUnified modelsPurshow
Awesome-Unified-MultimodalUnified modelsAIDC-AI

7.2 Slides & Survey Papers

TypeResourceNotes
SlidesNative LMM SlidesZiwei Liu (NTU); concise framing for native multimodal models
SurveyA Survey on Multimodal Large Language ModelsBroad survey of MLLM architectures, data, and evaluation
ReportThe Dawn of LMMs: Preliminary Explorations with GPT-4VEarly capability analysis around GPT-4V
SurveyMultimodal Foundation Models: From Specialists to General-Purpose AssistantsBroader foundation-model view across multimodal systems

7.3 Code Repositories & Tools

ToolDescriptionLink
TorchUMMUnified evaluation, analysis and post-training toolkit for heterogeneous unified multimodal model architectures, tasks and datasetsPaper Code
LMMs-EvalUnified evaluation harness for multimodal modelsCode
ImageBenchLive text-to-image benchmark ranking 40+ models on 192 prompts across 6 categories using VLM judges; every generated image is published for inspectionSite Methodology
LAVISLibrary for Language-Vision Intelligence (Salesforce)Code
OpenFlamingoOpen reproduction of DeepMind FlamingoCode
xtunerEfficient fine-tuning for multimodal LLMsCode
LLaMA-FactoryMultimodal instruction tuning frameworkCode
MMEngineFoundation for perception research (OpenMMLab)Code
DeepSpeed-VisualChatScalable multimodal chat trainingCode

Back to Top


How to Contribute

In this section: Validation Rules · Entry Format

We welcome contributions! Please follow these guidelines:

Validation Rules

For NMM submissions:

  • Record architectural integration and multimodal training history separately
  • Identify pretrained backbones, encoders, tokenizers, and the trainable parameters at each stage
  • Qualify architecture-native or training-native entries; claim from-scratch training only with supporting evidence
  • Assign fusion depth only when supported by the architecture; otherwise use the Training-Native group with fusion unspecified

For UMM submissions:

  • Confirm the model handles both image understanding AND image generation
  • Note whether pretrained components are used (annotate accordingly)

For MLLM submissions:

  • Note which vision encoder is used (must be a pretrained encoder)
  • Note which LLM backbone is used (must be a pretrained LLM)

Entry Format

| **Model Name** | [Paper](arxiv_link) [Code](github_link) [HF](huggingface_link) BADGES | Scale | Key contribution / notes |

Submit a PR with:

  1. The paper/model entry in the correct section
  2. A one-line justification for the chosen category
  3. Links to paper, code, and/or weights

Back to Top


Citation

If this list is useful in your research, please consider citing:

@misc{awesome-multimodal-modeling-2026,
  title     = {Awesome Multimodal Modeling: From Traditional to Native & Unified},
  author    = OpenEnvision-Lab,
  year      = {2026},
  url       = {https://github.com/OpenEnvision-Lab/Awesome-Multimodal-Model-Traditional-Advanced},
  note      = {GitHub repository}
}

Back to Top


Star Growth of Awesome-Multimodal-Modeling

⭐ Star Growth of Awesome-Multimodal-Modeling

License

CC0

This list is released under the CC0 1.0 Universal license.

Star this repo

Maintained by the community for the multimodal research community.

Back to Top

Companion Website

The companion research library is designed for openenvision.github.io/Awesome-Multimodal-Modeling/, under the OpenEnvision organization site.

  • 📄 Survey paper — Coming soon. A survey of multimodal foundation models is in preparation.
  • 💻 GitHub repository. Explore the list, suggest entries, and contribute.

The website derives its catalog and category memberships from this README. It supports search, nested category filters, year and resource filters, sorting, pagination, entry details, shareable filter URLs, and a browser-local reading list. Counts represent entries, including cross-listed models and analysis papers, rather than unique models.

Files ready to publish

index.html lives in the repository root, beside README.md. It is a complete static page, with its styles, scripts, icons, diagrams, and catalog in assets/site/.

Awesome-Multimodal-Modeling/
├── index.html              # Website entry point, ready to serve
├── README.md               # Source catalog and project documentation
├── .nojekyll               # Serve static files directly on GitHub Pages
├── robots.txt
├── sitemap.xml
├── assets/
│   ├── site/               # Website styles, scripts, icons, diagrams, and catalog.json
│   └── ...                 # Existing README illustrations
├── scripts/                # Catalog synchronization and local preview tools
└── .github/workflows/pages.yml

Publish index.html together with assets/; keep their relative paths intact. No server, package installation, or API key is required to host the prepared files.

Publish from the repository root

  1. Commit the root index.html, README.md, assets/, .nojekyll, robots.txt, and sitemap.xml to main.
  2. Open Settings → Pages → Build and deployment.
  3. Choose Deploy from a branch, select main and /(root), then save.

The site will be available at openenvision.github.io/Awesome-Multimodal-Modeling/. The custom workflow detects branch publishing and skips its own deployment.

Keep the website synchronized

After editing the model list, run:

npm test
npm run build

Node.js 22 or later is sufficient. The build refreshes the generated catalog blocks inside the root index.html, writes assets/site/catalog.json, and exports a clean copy to dist/. Commit the refreshed root files when publishing from a branch. Page content outside the marked catalog blocks can be edited directly in the root index.html.

For automatic catalog synchronization on every push, choose GitHub Actions as the Pages source and keep the included workflow. It checks pull requests, rebuilds the catalog from README changes, and deploys successful main builds. A first deployment can also be started with Run workflow. The generated dist/ directory is only used as the Actions deployment artifact and is excluded from version control.

See GitHub's publishing-source documentation.

Local preview

npm run preview

Open http://127.0.0.1:4173/Awesome-Multimodal-Modeling/. This serves the prepared files directly from the repository root. Use npm run dev for an in-memory preview that watches README.md, index.html, and assets/; reload the browser after edits.

The project uses relative asset URLs. It needs no custom domain, CNAME file, or change to the OpenEnvision organization's main website.

The brand mark comes from the OpenEnvision site. The GitHub icon comes from GitHub Octicons; its MIT license is included in assets/site/OCTICONS-LICENSE.txt. Model membership, release annotations, and availability qualifications remain governed by the README.

awesome
awesome-list
mllm
multimodal
nmm
umm
vlm

Contributors

Ferry1231

98 commits

tianshijing

52 commits

hatttoomma

2 commits

linxin0

2 commits

Languages

JavaScript

56.1%

HTML

43.9%