14
stars
2
commits
3
repos using this model
5
linked in READMEs
Apr 30, 2026
updated
NVIDIA Cosmos Reason 2 is an open, customizable, 32B-parameter reasoning vision language model (VLM) for physical AI and robotics that enables robots and vision AI agents to reason like humans, using prior knowledge, physics understanding and common sense to understand and act in the real world. This model understands space, time, and fundamental physics, and can serve as a planning model to reason what steps an embodied agent might take next.
New features with Cosmos Reason 2:
Use cases:
Explore the Cosmos Cookbook, a technical guide that delivers end-to-end workflows, implementation recipes, and detailed examples for building, fine-tuning, and deploying Cosmos Reason in production-ready environments.
The model is ready for commercial use.
Model Developer: NVIDIA
The Cosmos-Reason2 includes the following model:
[04/28/2026] For comparative evaluation, we present benchmark scores using the Physical AI Bench Leaderboard.

We also evaluated Cosmos-Reason2 against Qwen3-VL across the following domains and categories: General, Robotics, Self-Driving, and Smart Spaces.
| Category | Benchmark | Cosmos-Reason2-32B | Qwen3-VL-32B-Instruct | Cosmos-Reason2-8B | Qwen3-VL-8B-Instruct | Cosmos-Reason2-2B | Qwen3-VL-2B-Instruct |
|---|---|---|---|---|---|---|---|
| General | Overall | 75.85 | 73.07 | 73.73 | 71.98 | 62.21 | 59.60 |
| BlinkDepth | 84.68 | 82.26 | 87.90 | 87.10 | 82.26 | 74.19 | |
| BlinkSpatial | 86.71 | 86.71 | 84.62 | 87.41 | 75.52 | 77.62 | |
| CVBench | 88.01 | 86.74 | 85.60 | 85.17 | 78.74 | 78.67 | |
| VideoPhy2 | 43.98 | 36.57 | 36.80 | 28.24 | 12.33 | 7.92 | |
| Robotics | Overall | 60.60 | 55.06 | 56.90 | 53.08 | 45.52 | 42.07 |
| ERQA | 45.25 | 46.50 | 44.00 | 44.00 | 37.75 | 37.75 | |
| CR Common | 65.89 | 63.41 | 64.24 | 58.44 | 54.30 | 49.67 | |
| CR Embodied | 75.25 | 59.34 | 69.34 | 56.89 | 58.03 | 48.85 | |
| Where2Place | 56.00 | 51.00 | 50.00 | 53.00 | 32.00 | 32.00 | |
| Self-Driving | Overall | 70.15 | 48.08 | 67.85 | 46.38 | 57.37 | 42.73 |
| AV Collision | 72.06 | 37.67 | 74.00 | 34.00 | 74.33 | 36.33 | |
| AV Stop | 69.39 | 38.78 | 57.14 | 36.73 | 38.78 | 32.65 | |
| LingoQA | 69.00 | 67.80 | 72.40 | 68.40 | 59.00 | 59.20 | |
| Smart Spaces | Overall | 77.79 | 47.55 | 69.96 | 42.66 | 64.14 | 36.63 |
| Warehouse AI | 77.79 | 47.55 | 69.96 | 42.66 | 64.14 | 36.63 |

This model is released under the NVIDIA Open Model License. Additional Information: Apache License 2.0.
For a custom license, please contact cosmos-license@nvidia.com.
Under the NVIDIA Open Model License, NVIDIA confirms:
Important Note: If You bypass, disable, reduce the efficacy of, or circumvent any technical limitation, safety guardrail or associated safety guardrail hyperparameter, encryption, security, digital rights management, or authentication mechanism (collectively “Guardrail”) contained in the Model without a substantially similar Guardrail appropriate for your use case, your rights under this Agreement NVIDIA Open Model License Agreement will automatically terminate.
Global
Physical AI: Space, time, fundamental physics understanding and embodied reasoning, encompassing robotics, and autonomous vehicles (AV).
Architecture Type: A Multi-modal LLM consists of a Vision Transformer (ViT) for vision encoder and a Dense Transformer model for LLM. Network Architecture: Qwen3-VL-32B-Instruct.
Cosmos-Reason2-32B is post-trained based on Qwen3-VL-32B-Instruct and follows the same model architecture.
Number of model parameters:
Cosmos-Reason2-32B: 32,000,000,000
Input Type(s): Text+Video/Image
Input Format(s):
Text: String
Video: mp4
Image: jpg
Input Parameters:
Text: One-dimensional (1D)
Video: Three-dimensional (3D)
Image: Two-dimensional (2D)
Other Properties Related to Input:
Use FPS=4 for input video to match the training setup.
Append Answer the question in the following format: <think>\nyour reasoning\n</think>\n\n<answer>\nyour answer\n</answer>. in the system prompt to encourage long chain-of-thought reasoning response.
Output Type(s): Text
Output Format: String
Output Parameters: Text: One-dimensional (1D)
Other Properties Related to Output:
<br>Runtime Engine(s):
Supported Hardware Microarchitecture Compatibility:
Note: We have only tested doing inference with BF16 precision.
Operating System(s):
The integration of foundation and fine-tuned models into AI systems requires additional testing using use-case-specific data to ensure safe and effective deployment. Following the V-model methodology, iterative testing and validation at both unit and system levels are essential to mitigate risks, meet technical and functional requirements, and ensure compliance with safety and ethical standards before deployment.
See Cosmos-Reason2 for details.
Cosmos-Reason2-32B model was trained and evaluated on the same datasets used for Cosmos-Reason1-7B, in addition to the following newly added datasets.
Data Collection Method:
[12/19/2025]
[03/10/2026]
Labeling Method:
[12/19/2025]
[03/10/2026]
The combined datasets span multimodal video, sensor signals, and structured physical-reasoning tasks, providing broad coverage for training world-model reasoning capabilities.
Data Collection Method:
[12/19/2025]
[03/10/2026]
Labeling Method:
[12/19/2025]
[03/10/2026]
The combined datasets span multimodal video, sensor signals, and structured physical-reasoning tasks, providing broad coverage for training world-model reasoning capabilities.
Modality: Video (mp4) and Text
Test Hardware: H100, A100
[!NOTE] We suggest using
fps=4for the input video andmax_tokens=4096to avoid truncated response.
import transformers
import torch
model_name = "nvidia/Cosmos-Reason2-32B"
model = transformers.Qwen3VLForConditionalGeneration.from_pretrained(
model_name, dtype=torch.float16, device_map="auto", attn_implementation="sdpa"
)
processor: transformers.Qwen3VLProcessor = (
transformers.AutoProcessor.from_pretrained(model_name)
)
video_messages = [
{
"role": "system",
"content": [{"type": "text", "text": "You are a helpful assistant."}],
},
{"role": "user", "content": [
{
"type": "video",
"video": "file:///path/to/your/video.mp4",
"fps": 4,
},
{"type": "text", "text": (
"Is it safe to turn right? Answer the question using the following format:\n\n<think>\nYour reasoning.\n</think>\n\nWrite your final answer immediately after the </think> tag."
)
},
]
},
]
# Process inputs
inputs = processor.apply_chat_template(
video_messages,
tokenize=True,
add_generation_prompt=True,
return_dict=True,
return_tensors="pt",
fps=4,
)
inputs = inputs.to(model.device)
# Run inference
generated_ids = model.generate(**inputs, max_new_tokens=4096)
generated_ids_trimmed = [
out_ids[len(in_ids) :]
for in_ids, out_ids in zip(inputs.input_ids, generated_ids, strict=False)
]
output_text = processor.batch_decode(
generated_ids_trimmed,
skip_special_tokens=True,
clean_up_tokenization_spaces=False,
)
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
Users are responsible for model inputs and outputs. Users are responsible for ensuring safe integration of this model, including implementing guardrails as well as other safety mechanisms, prior to deployment.
For more detailed information on ethical considerations for this model, please see the subcards of Explainability, Bias, Safety & Security, and Privacy below.
Please report security vulnerabilities or NVIDIA AI Concerns here.
We value you, the datasets, the diversity they represent, and what we have been entrusted with. This model and its associated data have been:
| Field | Response |
|---|---|
| Participation considerations from adversely impacted groups protected classes in model design and testing: | None |
| Measures taken to mitigate against unwanted bias: | The training video sources contain multiple physical embodiments and environments including human, car, single arm robot, bimanual robot in indoor and outdoor environments. By training on numerous and various physical interactions and curated datasets, we strive to provide a model that mitigates biases towards certain embodiments or environments. |
| Field | Response |
|---|---|
| Intended Application & Domain: | Physical AI Reasoning |
| Model Type: | Transformer |
| Intended Users: | Physical AI developers |
| Output: | Text |
| Describe how the model works: | Given a video/image and a text prompt, the model first converts the video/image into tokens using a vision encoder and a special translator called a projector. These video tokens are combined with the text prompt and fed into the core model, which uses a mix of LLM modules and techniques. This enables the model to think step-by-step and provide detailed, logical responses. |
| Technical Limitations: | The model may not follow the video or text input accurately in challenging cases, where the input video shows complex scene composition and temporal dynamics. Examples of challenging scenes include: fast camera movements, overlapping human-object interactions, low lighting with high motion blur, and multiple people performing different actions simultaneously. |
| Verified to have met prescribed NVIDIA quality standards: | Yes |
| Performance Metrics: | Quantitative and Qualitative Evaluation. Cosmos-Reason2 proposes the embodied reasoning benchmark and physical common sense benchmark to evaluate accuracy with visual question answering. |
| Potential Known Risks: | The model's output can generate all forms of texts, including what may be considered toxic, offensive, or indecent. |
| Licensing: | NVIDIA Open Model License. Additional Information: Apache License 2.0. |
| Field | Response |
|---|---|
| Generatable or reverse engineerable personal data? | No |
| Personal data used to create this model? | None Known |
| Was consent obtained for any personal data used? | None Known |
| How often is dataset reviewed? | Before Release |
| Is there provenance for all datasets used in training? | Yes |
| Does data labeling (annotation, metadata) comply with privacy laws? | Yes |
| Applicable Privacy Policy | NVIDIA Privacy Policy |
| Field | Response |
|---|---|
| Model Application(s): | Physical AI common sense understanding and embodied reasoning |
| Describe the life critical impact (if present). | Because this model is designed for robot planning and serves as a Vision-Language-Action (VLA) model, its outputs directly influence physical actuation. Planning errors or misinterpretations of the environment carry inherent life-safety risks, including physical collisions, unsafe object manipulation, or unintended interactions with humans and property. |
| Use Case Restrictions: | NVIDIA Open Model License. Additional Information: Apache License 2.0. |
| Model and dataset restrictions: | The Principle of least privilege (PoLP) is applied limiting access for dataset generation and model development. Restrictions enforce dataset access during training, and dataset license constraints adhered to. Model checkpoints are made available on Hugging Face, and may become available on cloud providers' model catalog. |
2 commits
14
stars
2
commits
3
repos using this model
5
linked in READMEs
Apr 30, 2026
updated
NVIDIA Cosmos Reason 2 is an open, customizable, 32B-parameter reasoning vision language model (VLM) for physical AI and robotics that enables robots and vision AI agents to reason like humans, using prior knowledge, physics understanding and common sense to understand and act in the real world. This model understands space, time, and fundamental physics, and can serve as a planning model to reason what steps an embodied agent might take next.
New features with Cosmos Reason 2:
Use cases:
Explore the Cosmos Cookbook, a technical guide that delivers end-to-end workflows, implementation recipes, and detailed examples for building, fine-tuning, and deploying Cosmos Reason in production-ready environments.
The model is ready for commercial use.
Model Developer: NVIDIA
The Cosmos-Reason2 includes the following model:
[04/28/2026] For comparative evaluation, we present benchmark scores using the Physical AI Bench Leaderboard.

We also evaluated Cosmos-Reason2 against Qwen3-VL across the following domains and categories: General, Robotics, Self-Driving, and Smart Spaces.
| Category | Benchmark | Cosmos-Reason2-32B | Qwen3-VL-32B-Instruct | Cosmos-Reason2-8B | Qwen3-VL-8B-Instruct | Cosmos-Reason2-2B | Qwen3-VL-2B-Instruct |
|---|---|---|---|---|---|---|---|
| General | Overall | 75.85 | 73.07 | 73.73 | 71.98 | 62.21 | 59.60 |
| BlinkDepth | 84.68 | 82.26 | 87.90 | 87.10 | 82.26 | 74.19 | |
| BlinkSpatial | 86.71 | 86.71 | 84.62 | 87.41 | 75.52 | 77.62 | |
| CVBench | 88.01 | 86.74 | 85.60 | 85.17 | 78.74 | 78.67 | |
| VideoPhy2 | 43.98 | 36.57 | 36.80 | 28.24 | 12.33 | 7.92 | |
| Robotics | Overall | 60.60 | 55.06 | 56.90 | 53.08 | 45.52 | 42.07 |
| ERQA | 45.25 | 46.50 | 44.00 | 44.00 | 37.75 | 37.75 | |
| CR Common | 65.89 | 63.41 | 64.24 | 58.44 | 54.30 | 49.67 | |
| CR Embodied | 75.25 | 59.34 | 69.34 | 56.89 | 58.03 | 48.85 | |
| Where2Place | 56.00 | 51.00 | 50.00 | 53.00 | 32.00 | 32.00 | |
| Self-Driving | Overall | 70.15 | 48.08 | 67.85 | 46.38 | 57.37 | 42.73 |
| AV Collision | 72.06 | 37.67 | 74.00 | 34.00 | 74.33 | 36.33 | |
| AV Stop | 69.39 | 38.78 | 57.14 | 36.73 | 38.78 | 32.65 | |
| LingoQA | 69.00 | 67.80 | 72.40 | 68.40 | 59.00 | 59.20 | |
| Smart Spaces | Overall | 77.79 | 47.55 | 69.96 | 42.66 | 64.14 | 36.63 |
| Warehouse AI | 77.79 | 47.55 | 69.96 | 42.66 | 64.14 | 36.63 |

This model is released under the NVIDIA Open Model License. Additional Information: Apache License 2.0.
For a custom license, please contact cosmos-license@nvidia.com.
Under the NVIDIA Open Model License, NVIDIA confirms:
Important Note: If You bypass, disable, reduce the efficacy of, or circumvent any technical limitation, safety guardrail or associated safety guardrail hyperparameter, encryption, security, digital rights management, or authentication mechanism (collectively “Guardrail”) contained in the Model without a substantially similar Guardrail appropriate for your use case, your rights under this Agreement NVIDIA Open Model License Agreement will automatically terminate.
Global
Physical AI: Space, time, fundamental physics understanding and embodied reasoning, encompassing robotics, and autonomous vehicles (AV).
Architecture Type: A Multi-modal LLM consists of a Vision Transformer (ViT) for vision encoder and a Dense Transformer model for LLM. Network Architecture: Qwen3-VL-32B-Instruct.
Cosmos-Reason2-32B is post-trained based on Qwen3-VL-32B-Instruct and follows the same model architecture.
Number of model parameters:
Cosmos-Reason2-32B: 32,000,000,000
Input Type(s): Text+Video/Image
Input Format(s):
Text: String
Video: mp4
Image: jpg
Input Parameters:
Text: One-dimensional (1D)
Video: Three-dimensional (3D)
Image: Two-dimensional (2D)
Other Properties Related to Input:
Use FPS=4 for input video to match the training setup.
Append Answer the question in the following format: <think>\nyour reasoning\n</think>\n\n<answer>\nyour answer\n</answer>. in the system prompt to encourage long chain-of-thought reasoning response.
Output Type(s): Text
Output Format: String
Output Parameters: Text: One-dimensional (1D)
Other Properties Related to Output:
<br>Runtime Engine(s):
Supported Hardware Microarchitecture Compatibility:
Note: We have only tested doing inference with BF16 precision.
Operating System(s):
The integration of foundation and fine-tuned models into AI systems requires additional testing using use-case-specific data to ensure safe and effective deployment. Following the V-model methodology, iterative testing and validation at both unit and system levels are essential to mitigate risks, meet technical and functional requirements, and ensure compliance with safety and ethical standards before deployment.
See Cosmos-Reason2 for details.
Cosmos-Reason2-32B model was trained and evaluated on the same datasets used for Cosmos-Reason1-7B, in addition to the following newly added datasets.
Data Collection Method:
[12/19/2025]
[03/10/2026]
Labeling Method:
[12/19/2025]
[03/10/2026]
The combined datasets span multimodal video, sensor signals, and structured physical-reasoning tasks, providing broad coverage for training world-model reasoning capabilities.
Data Collection Method:
[12/19/2025]
[03/10/2026]
Labeling Method:
[12/19/2025]
[03/10/2026]
The combined datasets span multimodal video, sensor signals, and structured physical-reasoning tasks, providing broad coverage for training world-model reasoning capabilities.
Modality: Video (mp4) and Text
Test Hardware: H100, A100
[!NOTE] We suggest using
fps=4for the input video andmax_tokens=4096to avoid truncated response.
import transformers
import torch
model_name = "nvidia/Cosmos-Reason2-32B"
model = transformers.Qwen3VLForConditionalGeneration.from_pretrained(
model_name, dtype=torch.float16, device_map="auto", attn_implementation="sdpa"
)
processor: transformers.Qwen3VLProcessor = (
transformers.AutoProcessor.from_pretrained(model_name)
)
video_messages = [
{
"role": "system",
"content": [{"type": "text", "text": "You are a helpful assistant."}],
},
{"role": "user", "content": [
{
"type": "video",
"video": "file:///path/to/your/video.mp4",
"fps": 4,
},
{"type": "text", "text": (
"Is it safe to turn right? Answer the question using the following format:\n\n<think>\nYour reasoning.\n</think>\n\nWrite your final answer immediately after the </think> tag."
)
},
]
},
]
# Process inputs
inputs = processor.apply_chat_template(
video_messages,
tokenize=True,
add_generation_prompt=True,
return_dict=True,
return_tensors="pt",
fps=4,
)
inputs = inputs.to(model.device)
# Run inference
generated_ids = model.generate(**inputs, max_new_tokens=4096)
generated_ids_trimmed = [
out_ids[len(in_ids) :]
for in_ids, out_ids in zip(inputs.input_ids, generated_ids, strict=False)
]
output_text = processor.batch_decode(
generated_ids_trimmed,
skip_special_tokens=True,
clean_up_tokenization_spaces=False,
)
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
Users are responsible for model inputs and outputs. Users are responsible for ensuring safe integration of this model, including implementing guardrails as well as other safety mechanisms, prior to deployment.
For more detailed information on ethical considerations for this model, please see the subcards of Explainability, Bias, Safety & Security, and Privacy below.
Please report security vulnerabilities or NVIDIA AI Concerns here.
We value you, the datasets, the diversity they represent, and what we have been entrusted with. This model and its associated data have been:
| Field | Response |
|---|---|
| Participation considerations from adversely impacted groups protected classes in model design and testing: | None |
| Measures taken to mitigate against unwanted bias: | The training video sources contain multiple physical embodiments and environments including human, car, single arm robot, bimanual robot in indoor and outdoor environments. By training on numerous and various physical interactions and curated datasets, we strive to provide a model that mitigates biases towards certain embodiments or environments. |
| Field | Response |
|---|---|
| Intended Application & Domain: | Physical AI Reasoning |
| Model Type: | Transformer |
| Intended Users: | Physical AI developers |
| Output: | Text |
| Describe how the model works: | Given a video/image and a text prompt, the model first converts the video/image into tokens using a vision encoder and a special translator called a projector. These video tokens are combined with the text prompt and fed into the core model, which uses a mix of LLM modules and techniques. This enables the model to think step-by-step and provide detailed, logical responses. |
| Technical Limitations: | The model may not follow the video or text input accurately in challenging cases, where the input video shows complex scene composition and temporal dynamics. Examples of challenging scenes include: fast camera movements, overlapping human-object interactions, low lighting with high motion blur, and multiple people performing different actions simultaneously. |
| Verified to have met prescribed NVIDIA quality standards: | Yes |
| Performance Metrics: | Quantitative and Qualitative Evaluation. Cosmos-Reason2 proposes the embodied reasoning benchmark and physical common sense benchmark to evaluate accuracy with visual question answering. |
| Potential Known Risks: | The model's output can generate all forms of texts, including what may be considered toxic, offensive, or indecent. |
| Licensing: | NVIDIA Open Model License. Additional Information: Apache License 2.0. |
| Field | Response |
|---|---|
| Generatable or reverse engineerable personal data? | No |
| Personal data used to create this model? | None Known |
| Was consent obtained for any personal data used? | None Known |
| How often is dataset reviewed? | Before Release |
| Is there provenance for all datasets used in training? | Yes |
| Does data labeling (annotation, metadata) comply with privacy laws? | Yes |
| Applicable Privacy Policy | NVIDIA Privacy Policy |
| Field | Response |
|---|---|
| Model Application(s): | Physical AI common sense understanding and embodied reasoning |
| Describe the life critical impact (if present). | Because this model is designed for robot planning and serves as a Vision-Language-Action (VLA) model, its outputs directly influence physical actuation. Planning errors or misinterpretations of the environment carry inherent life-safety risks, including physical collisions, unsafe object manipulation, or unintended interactions with humans and property. |
| Use Case Restrictions: | NVIDIA Open Model License. Additional Information: Apache License 2.0. |
| Model and dataset restrictions: | The Principle of least privilege (PoLP) is applied limiting access for dataset generation and model development. Restrictions enforce dataset access during training, and dataset license constraints adhered to. Model checkpoints are made available on Hugging Face, and may become available on cloud providers' model catalog. |
2 commits