NVIDIA Cosmos 3 Super - architecture map

Reason first, then generate the world.

Cosmos 3 Super is best understood as a two-path Mixture-of-Transformers model: an autoregressive reasoner builds a discrete understanding of the scene, and a diffusion generator denoises continuous world tokens for image, video, audio, and action outputs.

64B trainable parameters 32B reasoner + 32B generator AR + diffusion sequence Text / image / video / audio / action Physical AI: robotics, AV, smart spaces
AR

Reasoner

Vision-language pathway. Causal attention, next-token text output.

DM

Generator

Diffusion pathway. Full attention, iterative denoising of continuous tokens.

MoT

Mixture-of-Transformers

Two parameter paths inside one unified token layout.

3D

mRoPE

Position encoding for spatial and temporal structure across modalities.

1 -> 2

One-way guidance

Generator sees reasoner context; reasoner remains self-contained.

1. Big picture architecture

Own re-drawn mental model of the Cosmos 3 Super dataflow, not a copy of NVIDIA's figure.

Cosmos 3 Super: unified sequence + two transformer pathways Input modalities are encoded into either AR understanding tokens or DM generation tokens. Raw inputs Text Image Video Audio Action task prompt decides:understand or generate Modality encoders Tokenizer ViT encoder understanding vision tokens VAE encoder generation vision tokens Audio/action proj. Unified token sequence AR subsequence first, DM subsequence second AR subsequence text + optional ViT image/video tokens special tokens: EOS / BOG DM subsequence VAE image/video + audio + action tokens clean conditioning before noisy targets MoT decoder layer × L Reasoner path causal self-attn over AR Generator path full attention over AR + DM iterative denoising step t -> t-1 Shared structure multimodal attention + 3D mRoPE Reasoner-only: text answer / plan / grounding Decoded world outputs image / video / audio / action trajectories
Language/text Vision understanding tokens Diffusion visual tokens Audio Action Noisy target tokens

2. Reasoner vs Generator

The two towers are complementary rather than redundant.

PartWhat it consumesHow attention worksWhat it producesTypical use
Reasoner towerText plus vision tokens from images/videos.Causal self-attention on the AR subsequence. It behaves like a VLM/LLM and predicts the next text token.Text: captions, structured reasoning, localization, action plans, physical plausibility judgment.Understanding-only tasks, VLM API, prompt upsampling, planning, scene diagnosis.
Generator towerText/vision/action context plus noisy image/video/audio/action tokens.Full attention over its diffusion tokens and the AR context. It repeatedly denoises target tokens.Image, video, synchronized sound, future rollouts, robot/agent action chunks.Text-to-image/video, image-to-video, forward dynamics, inverse dynamics, policy generation.
MoT connectionOne packed sequence: AR first, DM second.AR cannot look into DM. DM can look back into AR. This makes guidance one-way: reasoner -> generator.A single model surface that can act like VLM, video generator, simulator, or action model.Avoids stitching several separate models and pipelines for physical AI workflows.

3. The key trick: asymmetric attention mask

Why the generator can use the reasoner's understanding without corrupting autoregressive text reasoning.

Blue lower triangle: AR causal self-attention.Orange full block: DM full attention over AR + DM.
Mental model

Reasoner is the planner; generator is the simulator.

The reasoner builds a compact textual/visual understanding: objects, motion, intent, constraints, and physical context. The generator then uses that AR context as conditioning while denoising the target world tokens. Because DM attends to AR but AR does not attend to DM, generation is guided by reasoning while text reasoning stays a clean next-token process.

4. How they work together at inference

Same checkpoint, different runtime surfaces.

Encode task and context

Text goes through the tokenizer. Image/video for understanding goes through a ViT into the AR subsequence. Generation targets or conditions are represented as DM tokens by VAE/audio/action encoders.

Reasoner forms the AR context

For understanding-only tasks, this path is enough: it decodes text using standard next-token autoregressive generation.

Generator reads the AR context

For generation tasks, noisy DM target tokens are appended. The generator tower attends to AR context and all DM tokens, then predicts denoised tokens.

Decode continuous outputs

After diffusion steps, decoders map clean tokens back to pixels, video frames, audio streams, or action vectors.

Important runtime distinction. Reasoner can be loaded alone for text-output VLM tasks. Generator-serving paths load the full checkpoint because they need both the Qwen3-VL-based reasoner path and the diffusion generation path.

Reasoner-only modetext/image/video -> text
captioning, 2D grounding, temporal localization, physical reasoning.
Generator modetext/image/video/action -> image/video/audio/action
text-to-video, image-to-video, forward dynamics, inverse dynamics, policy rollouts.
Prompt upsamplingA reasoner/planner can expand short prompts into dense structured prompts before diffusion generation, improving fidelity and physical detail.

5. Generation modes as token layouts

Different applications mostly change what appears in AR vs DM, not the backbone.

Language / VLM

AR only. Text and optional ViT image/video tokens are decoded autoregressively. Diffusion parameters are not activated.

Text-to-image / video

AR prompt + noisy DM target. The prompt lives in AR. The generator denoises visual tokens into an image or video.

Image-to-video

AR text + clean visual condition + noisy video target. The input image constrains identity/layout; diffusion predicts motion.

Forward dynamics

State + action -> future observation. Clean action/context condition the DM target video rollout.

Inverse dynamics

Observed video -> action. The model infers the action trajectory that explains the visual transition.

Policy mode

Instruction + observation -> action chunk + rollout. Useful for robot policy learning and embodiment-specific control.

6. Training intuition

Why the split helps instead of forcing one transformer behavior onto everything.

Reasoner training

Large-scale image-text and video-text learning gives the model visual-language grounding. Later supervised tuning specializes it for Physical AI: temporal events, 2D grounding, robot task planning, physical plausibility, and action reasoning.

Generator training

The diffusion pathway learns to synthesize and simulate continuous modalities. It is trained on image/video/audio/action data and learns to denoise target tokens while conditioned on AR context.

Parameter and knowledge transfer

Public descriptions indicate both AR and DM paths share the same layer template and multimodal positional scheme, while using separate parameter sets inside transformer layers. This lets the generator inherit semantic/world knowledge but optimize for denoising.

Why it matters for kernels

The reasoner path resembles LLM/VLM inference with causal attention and KV cache. The generator path resembles diffusion inference: repeated denoising steps, full attention over dense multimodal tokens, and heavier video-token memory pressure.

Caveat. Public docs are still evolving. For exact runtime limits, supported modalities, quantization, and serving flags, check the current Hugging Face model card and NVIDIA/cosmos repository. Some limits vary between the model card, README, and serving integrations.

Sources used

Main public references behind this visualization.

  • NVIDIA Cosmos 3 Hugging Face model card for Cosmos3-Super: model family, parameter count, architecture type, input/output specifications, and software integrations.
  • NVIDIA/cosmos GitHub README: runtime surfaces, MoT description, causal/full attention behavior, unified 3D mRoPE, generation modes, vLLM/vLLM-Omni notes.
  • NVIDIA Developer Blog: two-tower explanation, reasoner as VLM, generator as diffusion process, one-way reasoner-to-generator guidance, model size selection.
  • Cosmos 3 technical report: detailed MoT token arrangement, AR/DM subsequences, attention mask, and ablation discussion of how the reasoner benefits the generator.