model releaseNVIDIA

NVIDIA Releases Cosmos 3: 8B and 32B Omni-Models Combining Video Generation, Reasoning, and Action in Single Architectur

TL;DR

NVIDIA has released Cosmos 3, a unified omni-model that combines world generation, physical reasoning, and action generation in a single architecture. Available in 8B (Nano) and 32B (Super) parameter versions on Hugging Face, Cosmos 3 uses a Mixture-of-Transformers architecture to process text, image, video, audio, and action modalities without switching between separate models.

2 min read
1

NVIDIA Releases Cosmos 3: 8B and 32B Omni-Models Combining Video Generation, Reasoning, and Action in Single Architecture

NVIDIA has released Cosmos 3, a unified omni-model that eliminates the need for multiple specialized models in physical AI applications. The model combines video generation, physical reasoning, and action prediction capabilities in a single architecture, available immediately on Hugging Face.

Two Model Sizes

Cosmos 3 ships in two versions:

  • Cosmos 3 Nano: 8B parameters (8B reasoner + 8B generator), optimized for workstation-grade hardware like RTX PRO 6000 GPUs
  • Cosmos 3 Super: 32B parameters (32B reasoner + 32B generator), designed for large-scale synthetic data generation on NVIDIA Hopper and Blackwell GPUs

Both models are available on Hugging Face at nvidia/Cosmos3-Nano and nvidia/Cosmos3-Super.

Unified Architecture

Previous Cosmos releases required developers to use separate models for different tasks: Cosmos Predict for world generation, Cosmos Transfer for controlled generation, Cosmos Reason for scene understanding, and Cosmos Policy for action generation. Cosmos 3 replaces this fragmented approach with a single Mixture-of-Transformers (MoT) architecture.

The model processes all modalities - text, image, video, audio, and action - within a unified architecture. Each modality is encoded by a dedicated encoder, then projected into a shared representation space. The input sequence splits into two subsequences: an autoregressive (AR) subsequence for reasoning via next-token prediction, and a diffusion (DM) subsequence for generation via iterative denoising. Separate parameter sets handle AR and DM tokens within each transformer layer, but interact through joint attention.

Capabilities

Cosmos 3 supports multiple input-output combinations in one model:

  • Text/image/video to video generation
  • Text/video to text (Vision Language Model)
  • Action/image/text to video (forward dynamics)
  • Text/video to action (inverse dynamics)
  • Image/text to video and action (policy model)

NVIDIA claims the model can generate "realistic and physically plausible video worlds" and reason about motion, causality, and spatial relationships.

Diffusers Integration

Cosmos 3 integrates with Hugging Face's Diffusers library through the Cosmos3OmniPipeline class. A text-to-image example requires minimal code:

import torch
from diffusers import Cosmos3OmniPipeline

pipe = Cosmos3OmniPipeline.from_pretrained(
    "nvidia/Cosmos3-Nano",
    torch_dtype=torch.bfloat16,
    device_map="cuda"
)

result = pipe(prompt=prompt, num_frames=1, height=720, width=1280)

Training and Data

NVIDIA released post-training scripts on GitHub for fine-tuning Cosmos 3 on custom data. The company also published synthetic data generation (SDG) datasets on Hugging Face, including:

  • Embodied-Robot-Scenes for robotics
  • Physical-Interaction-Scenes from Isaac Sim
  • Spatial-Reasoning data
  • Digital-Human-Scenes for human motion

Pricing, training data cutoff date, and specific benchmark scores were not disclosed.

What This Means

Cosmos 3's unified architecture addresses a real friction point in physical AI development: managing multiple specialized models. By combining video generation, reasoning, and action prediction in one model, NVIDIA simplifies the pipeline for robotics, autonomous vehicles, and synthetic data generation use cases. The 8B Nano version's ability to run on workstation hardware makes these capabilities accessible beyond data center deployments. However, the lack of benchmark scores or comparisons to competing models makes it difficult to assess performance claims independently.

Related Articles

model release

Tencent Open-Sources Hy4 Preview: 770B-Parameter MoE Model with 1M-Token Context

Tencent's Hy Team has open-sourced Hy4 preview, a 770-billion-parameter Mixture-of-Experts model with 49 billion activated parameters and a 1-million-token context window. The model is available under Apache 2.0 alongside an FP8-quantized variant, with Tencent claiming it beats GLM 5.3 and Kimi K3 on internal engineering evaluations.

model release

GLM-5.3-Flash Debuts as Zhipu AI's First Natively Multimodal Model, 320B Parameters with 18B Active

Zhipu AI has released GLM-5.3-Flash, the first natively multimodal model in its GLM-5 series, built on a 320B-parameter mixture-of-experts architecture with only 18B active parameters. The company claims it outperforms GLM-5.2 while approaching Claude Opus 4.8 on coding and agentic benchmarks at a fraction of the cost. Unsloth has published quantized GGUF versions for local inference.

model release

Z.ai Launches GLM-5.3-Flash: 1M-Token Context, Image Support, Claimed 10x Cost Cut Over GLM-5.2

Z.ai has released GLM-5.3-Flash, a 320-billion-parameter Mixture-of-Experts model with 18 billion active parameters, a 1-million-token context window, and image input support. The model launched on LM Studio's Bionic platform hours after its official unveiling, with LM Studio claiming it is 9-10x cheaper to run than GLM-5.2.

model release

Alibaba Releases Qwen3.8 Flash, a Multimodal Reasoning Model with 1M-Token Context

Alibaba has released Qwen3.8 Flash, a multimodal reasoning model with a 1 million token context window, aimed at coding, agentic workflows, and visual/document analysis. It's priced at $0.16 per 1M input tokens and $0.47 per 1M output tokens through Alibaba Cloud International.

Comments

Loading...