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

Mistral AI Releases Shieldstral-1.0-3B, a 3B-Parameter Policy-Adaptive Safety Classifier

Mistral AI has released Shieldstral-1.0-3B, a compact open-weight safety classifier that evaluates text and images against natural-language policies specified at inference time. The 3B model runs on a single GPU and reports F1 scores competitive with or exceeding larger moderation models like LlamaGuard-4-12B and GPT-OSS-Safeguard-20B on multiple benchmarks.

model release

NVIDIA Releases Nemotron VoiceChat 11B, an Open Full-Duplex Speech Model with Live Tool Calling

NVIDIA has released NemotronLabs VoiceChat 11B, an 11-billion-parameter end-to-end full-duplex speech model that unifies streaming speech understanding and generation in one architecture. The model claims to be the first open full-duplex system to support live tool calling during natural conversation, with ~450ms turn-taking latency.

model release

Mistral Releases Shieldstral, a 3B Open-Weights Safety Classifier That Matches Models 7x Its Size

Mistral has released Shieldstral, a 3B open-weights safety classifier that reframes content moderation as a policy-adaptive question-answering task. The model claims to match or outperform guard models up to 7x its size on text safety and multimodal benchmarks, and runs on a single 16GB GPU.

model release

Google DeepMind Launches Gemini Robotics 2, a Single VLA Model for Arms to Humanoids

Google DeepMind has introduced Gemini Robotics 2, a vision-language-action model it calls its most advanced yet, designed to control everything from tabletop robot arms to full-body humanoids. The company also released Gemini Robotics ER 2, an embodied reasoning model that replaces ER 1.6.

Comments

Loading...