NVIDIA Cosmos

NVIDIA 2025 · Paper

One-line summary — Cosmos is NVIDIA’s World Foundation Model platform for Physical AI: a suite of pre-trained generative world models, tokenizers, and pipelines that produce physically plausible synthetic video/sensor data for training autonomous vehicles and robots.

Problem

Physical AI needs to be trained digitally first — it needs a digital twin of itself (the policy model) and a digital twin of the world (the world model). Collecting diverse real sensor data, especially rare and dangerous scenarios, is slow and unsafe, while hand-built simulators suffer a sim-to-real gap. The Cosmos technical report (arXiv:2501.03575) positions a world foundation model (WFM) — a general-purpose, pre-trained generative model of how visual worlds evolve — as shared infrastructure that developers fine-tune into customized world models for their own Physical AI setups.

Method & architecture

The platform has five major components: a video curator, video tokenizers, pre-trained WFMs, post-training examples, and guardrails.

L(Dθ,σ)=Ex0,n[Dθ(x0+n;σ)x022]\mathcal{L}(D_\theta,\sigma) = \mathbb{E}_{\mathbf{x}_0,\mathbf{n}}\Big[\big\lVert D_\theta(\mathbf{x}_0+\mathbf{n};\sigma) - \mathbf{x}_0 \big\rVert_2^2\Big]

with x0pdata\mathbf{x}_0 \sim p_{\rm data} and nN(0,σ2I)\mathbf{n} \sim \mathcal{N}(\mathbf{0},\sigma^2\mathbf{I}), plus a learned uncertainty weighting u(σ)u(\sigma) over noise levels. Text conditioning uses T5-XXL; AdaLN-LoRA compresses DiT-style adaptive layer norm, cutting the 7B model from 11B parameters at equal quality.

LNLL=ilogP(viv1,v2,,vi1;Θ)\mathcal{L}_{NLL} = \sum_i -\log P(v_i \mid v_1, v_2, \dots, v_{i-1}; \Theta)

with optional T5 cross-attention for text. A 7B diffusion decoder maps discrete tokens back into the continuous token space to remove quantization artifacts; Medusa speculative decoding gives up to 3.2× token throughput, and a low-resolution adaptation reaches real-time 10-FPS generation.

Results

Cosmos Tokenizer outperforms prior tokenizers by a large margin — about +4 dB PSNR reconstruction on DAVIS videos, running up to 12× faster, encoding up to 8 s of 1080p video in one shot on a single A100 80GB. WFM evaluation focuses on 3D consistency and physics alignment: on 500 static-scene videos from RealEstate10K, Cosmos-Predict1-7B-Text2World reaches a Sampson epipolar error of 0.355 vs 0.841 for the VideoLDM baseline, with camera pose estimation success of 62.6% (68.4% for Video2World) vs 4.4% — real videos score 0.431 and 56.4% — and 3DGS-based novel-view synthesis PSNR of 33.02 vs 26.23 (real: 35.38), i.e., generated worlds are geometrically consistent at near-real-video level. The camera-control fine-tune beats CamCo in FID/FVD and in rotation/translation error of SfM-re-estimated trajectories against the commanded ones. Models and code are open-weight/open-source under the NVIDIA Open Model License.

Why it matters for SLAM

Cosmos represents the industrialization of the world-model idea pioneered by systems like GAIA-1: vertically integrated hardware, simulation (Omniverse), and foundation models for Physical AI. Strikingly, its headline evaluation is pure multi-view geometry — Sampson error, SfM pose-estimation success, 3DGS view synthesis — the exact toolset of SLAM, used here to grade a generative model as a “world simulator”. For SLAM, the direct relevance is training-data generation (synthetic multi-sensor sequences for learned SLAM components) and the pose-conditioned Video2World models that behave like learned renderers of imagined but geometrically consistent scenes.