Model reference · open weights
cmd is an open-weight video model from nvidia. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | nvidia |
|---|---|
| Type | Video models |
| Task | Image→video |
| Released | 2026-08-13 |
| Popularity | 107 downloads / month |
| Licence | Commercial licence needed |
About
Hmrishav Bandyopadhyay1,2, Xuanchi Ren1, Zijian Huang1, Jay Zhangjie Wu1, Tianshi Cao1, Ruilong Li1, Bryan Chu1, Sanja Fidler1, Yi-Zhe Song2, Zian Wang1
Context-Matched Distillation (CMD) is a method for autoregressive video distillation using causal teachers. This repository provides CMD checkpoints based on Cosmos-Predict2.5 2B for causal image-to-video generation.
The release includes chunk-1 and chunk-4 models for short- and long-duration generation, together with camera-control variants. The models use local temporal attention and generate video autoregressively in causal chunks.
This model is for research and development only.
This model is released under the NVIDIA OneWay Noncommercial License. It may only be used for non-commercial research or educational purposes.
Global
Primary users include researchers and developers studying:
The checkpoints are not intended for safety-critical applications or uses prohibited by the model license.
| Checkpoint | Configuration | Intended use |
|---|---|---|
chunk1_short_t24_l21.safetensors | t24_l21 | Chunk-1 short-duration generation |
chunk4_short_t21_l16.safetensors | t21_l16 | Chunk-4 short-duration generation |
chunk1_long_t126_l21.safetensors | t126_l21 | Chunk-1 long-duration generation |
chunk4_long_t121_l16.safetensors | t121_l16 | Chunk-4 long-duration generation |
chunk1_camera_control_t32_l21.safetensors | t32_l21 | Chunk-1 generation with camera control |
chunk4_camera_control_t29_l24.safetensors | t29_l24 | Chunk-4 generation with camera control |
In the configuration names, t denotes frame duration and l denotes local attention. Checkpoint names do not include dataset names or training iteration information.
Install the reference implementation:
git clone https://github.com/nv-tlabs/cmd.git
cd cmd
conda create -n causal-cosmos python=3.10 -y
conda activate causal-cosmos
python -m pip install -r requirements.txt
python -m pip install flash-attn --no-build-isolation
python setup.py develop
Download the checkpoints:
hf download nvidia/cmd --local-dir checkpoints
To download one model only:
hf download nvidia/cmd \
chunk1_short_t24_l21.safetensors \
--local-dir checkpoints
Follow the inference instructions in the CMD repository to select the matching model configuration and run generation.
Architecture type: Causal video diffusion transformer
Base model: Cosmos-Predict2.5 2B
Generation strategy: Block-autoregressive video generation
CMD uses causal temporal attention to generate video sequentially. Chunk-1 and chunk-4 variants provide different autoregressive generation granularities, while the camera-control variants add camera-motion conditioning.
Standard checkpoints accept:
Camera-control checkpoints additionally accept a camera trajectory in the format expected by the CMD inference pipeline.
The model produces an RGB video conditioned on the initial image, text prompt, and, when applicable, camera trajectory. Output duration is determined by the selected t configuration.
The checkpoints must be used with the corresponding model architecture and configuration supplied by the reference implementation.
CMD uses a two-stage procedure:
See the CMD repository and project page for the method and evaluation details.
Users should evaluate the model on data representative of their intended application before deployment.
Generated video may be mistaken for authentic footage. Users should clearly identify synthetic content where appropriate and must not use the model for deception, impersonation, harassment, misinformation, or violations of privacy, intellectual-property, or other applicable rights.
NVIDIA believes Trustworthy AI is a shared responsibility. Developers should ensure that their use of this model complies with applicable laws, policies, licenses, and safety requirements.
Please report model quality, risk, security vulnerabilities, or NVIDIA AI concerns through the NVIDIA support portal.
If you find this work useful, please cite:
@article{bandyopadhyay2026context,
title = {Context-Matched Distillation: Teacher Causality for Autoregressive Video Distillation},
author = {Bandyopadhyay, Hmrishav and Ren, Xuanchi and Huang, Zijian
and Wu, Jay Zhangjie a
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys cmd for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (cmd below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/videos/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"cmd","prompt":"a drone shot over a forest"}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.