Developer Asset Hub for NVIDIA Nemotron — A one-stop resource for training recipes, usage cookbooks, datasets, and full end-to-end reference examples to build with Nemotron models
2,037
stars
158
commits
Jupyter Notebook
primary language
Sep 6, 2026
updated
Open and efficient models for agentic AI. Training recipes, deployment guides, and use-case examples for the Nemotron family.
🎉Nemotron 3.5 Lightning is now released — a 30B-A3B hybrid Mamba-Transformer MoE with Multi-Token Prediction, built for the high-volume execution layer of long-running agents. See the release blog, the training recipe, and the model weights.
🎉Nemotron 3 Ultra was announced at GTC San Jose 2026. The model is open-source on Hugging Face, and the training recipe is now available in this repo. To learn more, see the usage guide!
🎉Nemotron 3 Nano Omni is now released — a 30B-A3B hybrid Mamba-Transformer MoE with native text, image, video, and audio support, designed as a multimodal perception sub-agent for agentic AI. See the release blog, the training recipe, and the model weights.
| Open Models | Fully transparent training data, techniques, and weights for community innovation |
| Compute Efficiency | Model pruning and optimization enabling higher throughput via TensorRT-LLM |
| High Accuracy | Built on frontier open models with human-aligned reasoning for agentic workflows |
| Flexible Deployment | Deploy anywhere: edge, single GPU, or data center with NIM microservices |
This repo ships a Claude Code plugin called nemotron-customize that turns the step catalog under src/nemotron/steps/ into a guided, repo-native pipeline builder.
Install once:
/plugin marketplace add NVIDIA/Nemotron
/plugin install nemotron-customize@nvidia-nemotron
Then, start Claude Code from the repo root and invoke the skill:
cd /path/to/Nemotron # repo root: must contain pyproject.toml and src/nemotron/steps/
claude
/nemotron-customize
The skill resolves all file paths against your current working directory, so it must be invoked from the Nemotron checkout root. Running it from a subdirectory will cause file reads to fail.
The skill plans the step DAG, validates artifact wiring, and emits the YAML configs needed to run the requested pipeline. See skills/nemotron-customize/SKILL.md for the full contract.
The marketplace installs only
nemotron-customize. The other folders underskills/(model knowledge bases, contributor add-*skills) stay on disk for repo browsing but are not loaded as plugins.
nemotron/
│
├── src/nemotron/steps/ Modular building blocks for training, eval, SDG, and more
│
├── src/nemotron/recipes/ Training recipes (complete, reproducible pipelines)
│
├── usage-cookbook/ Usage cookbooks (deployment and model usage guides)
│
└── use-case-examples/ Examples of leveraging Nemotron in agentic workflows
| Nemotron Steps | Training Recipes | Usage Cookbooks | Use Case Examples | |
|---|---|---|---|---|
| Purpose | Full lifecycle building blocks, chain data prep, training, eval and other steps | Reproduce full training pipelines from raw data to model | Deploy and use trained models | Build end-to-end applications |
| Format | The nemotron steps CLI and YAML configs | Python packages with configs, scripts, and evaluation | Jupyter notebooks with step-by-step guides | Jupyter notebooks and scripts |
| When to use | You want to run one stage in isolation or compose a custom pipeline | You want to train, fine-tune, or understand how a model was built | You have a model and want to deploy or run inference | You want to build an application (RAG, agents, tool use) |
| Location | src/nemotron/steps/ | src/nemotron/recipes/ | usage-cookbook/ | use-case-examples/ |
NVIDIA Nemotron is a family of open, high-efficiency multimodal models purpose-built for agentic AI.
Model Tiers:
Nemotron models excel at coding, math, scientific reasoning, tool calling, instruction following, and visual reasoning. Deploy across edge, single GPU, or data center environments with support for NeMo, TensorRT-LLM, vLLM, SGLang, and NIM microservices.
A Nemotron step is a named, reusable unit of work that you invoke with the nemotron steps CLI.
Each step packages a description of the work it performs, the artifacts it consumes and produces, and one or more named configurations that supply parameter values.
Steps live under src/nemotron/steps/, and the CLI discovers them at startup.
The training recipes in the next section are composed from these steps. Run a step on its own when you want one stage, or chain steps together when you need a different pipeline shape than the published recipes.
The catalog covers the full training lifecycle.
curate/* and data_prep/*.sdg/*.translate/*.byob/*.pretrain/*, sft/*, peft/*, and rl/*.convert/* and optimize/*.eval/*.env/*.The Nemotron repository provides reproducible training pipelines from raw data to deployment-ready models. These implementations reflect how large language models are actually trained: careful experimentation, validation gates, and systematic optimization.
Training a production model involves interconnected components. Isolated examples miss how stages interact. Complete pipelines show:
Because these are complete systems, you can extract specific techniques with confidence. Each component has been proven to work in context.
| Model | Description | Stages | Guide |
|---|---|---|---|
| Nemotron 3 Ultra | 550B total / 55B active hybrid Mamba-Attention LatentMoE Transformer with MTP and 1M context — NVIDIA's largest Nemotron 3 model for datacenter-scale agentic reasoning | Pretrain → SFT → RLVR → MOPD | Training Guide |
| Nemotron 3 Super | 120.6B total / 12.7B active Hybrid Mamba Latent MoE Transformer for frontier reasoning, coding, and agentic tasks | Pretrain → SFT → RL | Training Guide |
| Nemotron 3 Nano | 31.6B total / 3.6B active MoE Hybrid Mamba-Transformer for agentic reasoning | Pretrain → SFT → RL | Training Guide |
| Nemotron 3.5 Lightning | 30B total / 3B active hybrid Mamba-Transformer MoE with Multi-Token Prediction | Pretrain → SFT → RL → Quantization | Training Guide |
| Nemotron 3 Nano Omni | 30B total / 3B active hybrid Mamba-Transformer MoE — native text, image, video, and audio for agentic multimodal perception | SFT → RL (MPO / text / vision) → Eval | Training Guide |
A training recipe for NVIDIA's largest Nemotron 3 model — a 550B-A55B hybrid Mamba-Attention Mixture-of-Experts Transformer with LatentMoE and multi-token prediction (MTP), pretrained in NVFP4 and extended to 1M-token context for datacenter-scale agentic reasoning.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the tech report benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A complete training recipe for the frontier Hybrid Mamba Latent Mixture-of-Experts Transformer model with state-of-the-art reasoning, coding, and agentic capabilities.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the tech report benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A complete training recipe for the 30B-A3B hybrid Mamba-Transformer MoE with Multi-Token Prediction, built for fast, accurate specialized task execution in long-running agents. Weights, data, and recipes are released under OpenMDW-1.1.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the published benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A complete training recipe for the open, efficient Mixture-of-Experts hybrid Mamba-Transformer model optimized for agentic reasoning.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the tech report benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A multimodal training recipe for the 30B-A3B hybrid Mamba-Transformer Mixture-of-Experts model. Native support for text, image, video, and audio in a single decoder, designed as a perception sub-agent for agentic AI.

Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data (e.g., CORD-v2 for SFT, public MMPR / MMPR-Tiny for RL). Results will differ from the release benchmarks, which used additional internal datasets. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
nano-v3-omni branch with the omni vllm fork as a submodule) for RLResources:
NVIDIA-NeMo/Megatron-Bridge nemotron_3_omniNVIDIA-NeMo/RL nano-v3-omniPractical deployment and model usage guides for Nemotron models.
| Model | Best For | Key Features | Resources |
|---|---|---|---|
| Nemotron 3 Ultra 550B A55B | Long-running coding, research, and enterprise agentic workflows | 1M context, 550B/55B MoE, MTP, multi-GPU deployment, agent harness configs | Cookbooks |
| Nemotron 3 Super 120B A12B | Production deployments needing strong reasoning | 1M context, in NVFP4 single B200, RAG & tool calling | Cookbooks |
| Nemotron 3 Nano 30B A3B | Resource-constrained environments | 1M context, sparse MoE hybrid Mamba-2, controllable reasoning | Cookbooks |
| Llama-3.1-Nemotron-Nano-8B-v1 | Small-footprint OCI deployments | Validated on private OKE in Phoenix with vLLM, OCI Bastion service, tool calling, and OpenAI-compatible /v1 inference; provides a reproducible OCI path comparable to common AWS GPU/Kubernetes deployment patterns | Cookbooks |
| NVIDIA-Nemotron-Nano-12B-v2-VL | Document intelligence and video understanding | 12B VLM, video reasoning, Efficient Video Sampling | Cookbooks |
| Llama-3.1-Nemotron-Safety-Guard-8B-v3 | Multilingual content moderation | 9 languages, 23 safety categories | Cookbooks |
| Nemotron-Parse | Document parsing for RAG and AI agents | Table extraction, semantic segmentation | Cookbooks |
End-to-end examples demonstrating practical applications in the use-case-examples/ directory:
More than just weights, recipes, and libraries: Nemotron is committed to opening data across many domains, training phases, and use cases.
A comprehensive collection of NVIDIA Nemotron datasets spanning pre-training, post-training, reinforcement learning, multimodal, safety, and domain-specific applications. These openly available datasets power the Nemotron family of models for agentic AI development.
Datasets for training code generation, competitive programming, and software engineering capabilities across multiple programming languages.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-CC-Code-v1 | Pre-training | NVIDIA Data Agreement | Nemotron 3 Nano | 427.9B tokens from Common Crawl code pages using Lynx + LLM pipeline |
| Nemotron-Pretraining-Code-v1 | Pre-training | NVIDIA Data Agreement | Nemotron Nano 2 | GitHub-sourced code corpus for Nemotron Nano 2 |
| Nemotron-Pretraining-Code-v2 | Pre-training | NVIDIA Data Agreement | Nemotron 3 Nano | Updated GitHub code + synthetic QA with STEM reasoning |
| Nemotron-Cascade-RL-SWE | RL Training | CC-BY-4.0 | Nemotron 3 | SWE code repair from SWE-Bench, SWE-Smith, R2E-Gym |
| Nemotron-Competitive-Programming-v1 | SFT | CC-BY-4.0 | Nemotron 3 | 2M+ Python and 1M+ C++ samples across 34K competitive programming questions |
| OpenCodeReasoning | SFT | CC-BY-4.0 | OpenCode-Nemotron | 735K Python samples across 28K competitive programming questions |
| OpenCodeReasoning-2 | SFT | CC-BY-4.0 | OpenCode-Nemotron | 2.5M samples (1.4M Python, 1.1M C++) with code completion and critique |
| Scoring-Verifiers | Evaluation | CC-BY-4.0 | — | Benchmark for test case generation and code reward models |
Mathematical reasoning datasets ranging from pre-training corpora to advanced problem-solving with chain-of-thought and tool-integrated reasoning. Includes the AIMO-2 competition winning dataset.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-CC-Math-v1 | Pre-training | NVIDIA Data Agreement | Nemotron Nano 2, Nemotron 3 Nano | 133B-token math dataset from Common Crawl using Lynx + LLM pipeline |
| Nemotron-Math-Proofs-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Mathematical proofs dataset for Nemotron 3 post-training |
| Nemotron-Math-v2 | SFT | CC-BY-4.0 | Nemotron 3 | 347K samples and 7M reasoning trajectories for Deeper Math Reasoning |
| Nemotron-CrossThink | RL Training | CC-BY-4.0 | Nemotron 3 | Multi-domain QA with MCQ and open-ended formats for verifiable rewards |
| OpenMathReasoning | SFT | CC-BY-4.0 | OpenMath-Nemotron | 5.68M samples, 306K problems from AoPS with CoT/TIR (AIMO-2 winner) |
Scientific reasoning datasets covering chemistry, physics, and general STEM domains for training models on scientific question answering and reasoning.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Science-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Synthetic science reasoning (MCQA + chemistry RQA) |
Large-scale web-crawled and curated datasets for pre-training and post-training, including multilingual data and general instruction-following capabilities.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-CC-v2.1 | Pre-training | NVIDIA Data Agreement | Nemotron 3 Nano | 2.5T tokens English web data with synthetic rephrases and translations |
| Nemotron-CC-v2 | Pre-training | NVIDIA Data Agreement | Nemotron Nano 2 | 6.6T tokens quality-filtered Common Crawl with multilingual Q&A |
| Nemotron-Pretraining-Dataset-sample | Pre-training (Sample) | NVIDIA Data Agreement | — | Sample subset of Nemotron pre-training corpus for experimentation |
| Llama-Nemotron-Post-Training-Dataset | SFT + RL | CC-BY-4.0 | Llama-Nemotron Ultra/Super/Nano | Math, code, reasoning data (2.2M math, 500K code) |
| Nemotron-Post-Training-Dataset-v1 | SFT | CC-BY-4.0 | Llama-3.3-Nemotron-Super-49B-v1.5 | Math, code, STEM, tool calling |
| Nemotron-Post-Training-Dataset-v2 | SFT + RL | CC-BY-4.0 | Llama-Nemotron | Multilingual extension (Spanish, French, German, Italian, Japanese) |
| Nemotron-3-Nano-RL-Training-Blend | RL Training | CC-BY-4.0 | Nemotron-3-Nano-30B-A3B | Curated multi-domain blend for Nemotron 3 Nano |
| Nemotron-RL-knowledge-web_search-mcqa | RL Training | ODC-BY-1.0 | Nemotron 3 | Web search and multiple-choice QA tasks for NeMo Gym |
Datasets for training conversational AI with strong instruction-following capabilities, structured output generation, and multi-turn dialogue.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Instruction-Following-Chat-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Multi-turn chat and structured output generation |
| Nemotron-RL-instruction_following | RL Training | ODC-BY-1.0 | Nemotron 3 | Verifiable instruction adherence from WildChat-1M + Open-Instruct |
| Nemotron-RL-instruction_following-structured_outputs | RL Training | ODC-BY-1.0 | Nemotron 3 | JSON schema-constrained output formatting tests |
| Nemotron-Cascade-RL-Instruction-Following | RL Training | ODC-BY-1.0 | Nemotron 3 | 108K samples for instruction-following RL |
Datasets for training AI agents with tool calling, multi-step workflows, and agentic reasoning capabilities.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Agentic-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Multi-turn trajectories for conversational tool use and agentic workflows |
| Nemotron-RL-agent-workplace_assistant | RL Training | ODC-BY-1.0 | Nemotron 3 | Workplace assistant agent tasks for NeMo Gym |
Human preference and reward modeling datasets for RLHF, SteerLM training, and model alignment. Powers top-performing reward models on RM-Bench and JudgeBench.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| HelpSteer3 | Reward Modeling | CC-BY-4.0 | Nemotron 3 Nano, Llama-Nemotron Super 49B | 40K+ samples; top on RM-Bench/JudgeBench with preference, feedback, edit-quality |
| HelpSteer2 | Reward Modeling | CC-BY-4.0 | Nemotron-4-340B-Reward, Llama-3.1-Nemotron-70B-Reward | 21K samples with 5 attributes |
| HelpSteer | SteerLM Training | CC-BY-4.0 | Nemotron-4 SteerLM | 37K samples (helpfulness, correctness, coherence, complexity, verbosity) |
| Daring-Anteater | SFT/RLHF | CC-BY-4.0 | Nemotron-4-340B-Instruct | Instruction tuning dataset; synthetic subsets + FinQA, wikitablequestions |
| sft_datablend_v1 | SFT | CC-BY-4.0 | — | SFT data blend for RLHF pipeline |
High-quality VLM training data for document intelligence, OCR, image reasoning, video QA, and chain-of-thought visual understanding.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-VLM-Dataset-v2 | VLM Training | CC-BY-4.0 (some CC-BY-SA-4.0) | Nemotron VLM | 8M samples for OCR, image reasoning, video QA with chain-of-thought |
| Llama-Nemotron-VLM-Dataset-v1 | VLM Training | CC-BY-4.0 (some CC-BY-SA-4.0) | Llama-3.1-Nemotron-Nano-VL-8B | 3M samples for visual question answering and captioning |
Datasets for embodied reasoning, physical common sense, and robotic manipulation. Powers Cosmos-Reason1 for physical AI applications.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Cosmos-Reason1-SFT-Dataset | SFT | CC-BY-4.0 | Cosmos-Reason1-7B | Video-text pairs for robotics, ego-centric demos, AV reasoning |
| Cosmos-Reason1-RL-Dataset | RL Training | CC-BY-4.0 | Cosmos-Reason1-7B | RL data for physical common sense and embodied reasoning |
| Cosmos-Reason1-Benchmark | Evaluation | CC-BY-4.0 | — | Benchmark for embodied reasoning (robotics, HoloAssist, AV) |
| PhysicalAI-Robotics-Manipulation-Augmented | Training | CC-BY-4.0 | — | 1K Franka Panda demos with Cosmos Transfer1 domain augmentation |
Multi-sensor driving data and synthetic scenarios for training and validating autonomous vehicle systems.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| PhysicalAI-Autonomous-Vehicles | Training | NVIDIA AV Dataset License | — | 1,700 hours multi-sensor data from 25 countries, 306K clips |
| PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams | SDG | CC-BY-4.0 | Cosmos | 81K synthetic videos with LiDAR and HD-map annotations |
| PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic | SDG | CC-BY-4.0 | Cosmos | Cosmos-generated synthetic driving scenarios |
| PhysicalAI-Autonomous-Vehicles-NuRec | Reconstruction | NVIDIA AV Dataset License | — | NuScenes-based reconstruction data |
Privacy-safe synthetic personas grounded in real-world demographics for sovereign AI development and synthetic data generation pipelines.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Personas-USA | SDG | CC-BY-4.0 | NeMo Data Designer | 1M US personas grounded in Census demographics |
| Nemotron-Personas-Japan | SDG | CC-BY-4.0 | NeMo Data Designer | 1M Japanese personas aligned with regional statistics |
| Nemotron-Personas-India | SDG | CC-BY-4.0 | NeMo Data Designer | 3M Indian personas for sovereign AI development |
| Nemotron-Personas | SDG | CC-BY-4.0 | NeMo Data Designer | 100K US personas with 22 fields aligned to Census data |
Synthetic datasets for training named entity recognition models to detect and redact personally identifiable information.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-PII | NER Training | CC-BY-4.0 | GLiNER-PII | 100K synthetic records with 55+ PII/PHI entity types |
Content safety datasets for training guardrail models covering comprehensive risk taxonomies. Powers NemoGuard content safety models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Aegis-AI-Content-Safety-Dataset-1.0 | Content Moderation | CC-BY-4.0 | NemoGuard Permissive/Defensive | 11K annotated interactions covering 13 risk categories |
| Aegis-AI-Content-Safety-Dataset-2.0 | Content Moderation | CC-BY-4.0 | Llama-3.1-NemoGuard-8B-ContentSafety | Extended safety dataset with 23 violation categories |
| Nemotron-Content-Safety-Audio-Dataset | Audio Safety | CC-BY-4.0 | — | 1.9K audio files from Aegis 2.0 with accent diversity |
Training and evaluation data for retrieval-augmented generation and conversational question answering. Powers ChatQA models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| ChatRAG-Bench | Evaluation | Other (derived) | — | Benchmark across 10 datasets for document QA and unanswerable detection |
| ChatQA-Training-Data | SFT | Other (derived) | ChatQA-1.5 | Training data for ChatQA models from multiple sources |
| ChatQA2-Long-SFT-data | SFT | Other (derived) | ChatQA-2 | 128K long-context training data for ChatQA-2 |
Protein sequence data for training biological foundation models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| esm2_uniref_pretraining_data | Pre-training | CC-BY-4.0 | ESM2-nv | 188M protein sequences for ESM2 |
Testing and synthetic data for 3D reconstruction, video generation, and spatial understanding models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Lyra-Testing-Example | Evaluation | CC-BY-4.0 | Lyra | Testing examples for Lyra generative 3D reconstruction |
| PhysicalAI-SpatialIntelligence-Lyra-SDG | SDG | CC-BY-4.0 | Lyra | Synthetic data for spatial intelligence models |
| GEN3C-Testing-Example | Evaluation | CC-BY-4.0 | GEN3C | Testing examples for GEN3C video generation |
| ChronoEdit-Example-Dataset | Evaluation | CC-BY-4.0 | ChronoEdit | Temporal reasoning examples for image editing |
Have an idea for improving Nemotron models? Create a Discussion topic for it!
If you have a feature request, feel free to open an Issue and tag it as enhancement.
Your feedback helps shape the future of Nemotron models!
We welcome contributions: examples, recipes, or other tools. Please read the Contributing Guidelines before submitting pull requests.
To report any vulnerabilities, please reach out to security@nvidia.com
Apache 2.0 License — see LICENSE for details.
NVIDIA Nemotron — Open and efficient models for agentic AI.
(top 30 of 38)
Jupyter Notebook
70.9%
Python
28.0%
Developer Asset Hub for NVIDIA Nemotron — A one-stop resource for training recipes, usage cookbooks, datasets, and full end-to-end reference examples to build with Nemotron models
2,037
stars
158
commits
Jupyter Notebook
primary language
Sep 6, 2026
updated
Open and efficient models for agentic AI. Training recipes, deployment guides, and use-case examples for the Nemotron family.
🎉Nemotron 3.5 Lightning is now released — a 30B-A3B hybrid Mamba-Transformer MoE with Multi-Token Prediction, built for the high-volume execution layer of long-running agents. See the release blog, the training recipe, and the model weights.
🎉Nemotron 3 Ultra was announced at GTC San Jose 2026. The model is open-source on Hugging Face, and the training recipe is now available in this repo. To learn more, see the usage guide!
🎉Nemotron 3 Nano Omni is now released — a 30B-A3B hybrid Mamba-Transformer MoE with native text, image, video, and audio support, designed as a multimodal perception sub-agent for agentic AI. See the release blog, the training recipe, and the model weights.
| Open Models | Fully transparent training data, techniques, and weights for community innovation |
| Compute Efficiency | Model pruning and optimization enabling higher throughput via TensorRT-LLM |
| High Accuracy | Built on frontier open models with human-aligned reasoning for agentic workflows |
| Flexible Deployment | Deploy anywhere: edge, single GPU, or data center with NIM microservices |
This repo ships a Claude Code plugin called nemotron-customize that turns the step catalog under src/nemotron/steps/ into a guided, repo-native pipeline builder.
Install once:
/plugin marketplace add NVIDIA/Nemotron
/plugin install nemotron-customize@nvidia-nemotron
Then, start Claude Code from the repo root and invoke the skill:
cd /path/to/Nemotron # repo root: must contain pyproject.toml and src/nemotron/steps/
claude
/nemotron-customize
The skill resolves all file paths against your current working directory, so it must be invoked from the Nemotron checkout root. Running it from a subdirectory will cause file reads to fail.
The skill plans the step DAG, validates artifact wiring, and emits the YAML configs needed to run the requested pipeline. See skills/nemotron-customize/SKILL.md for the full contract.
The marketplace installs only
nemotron-customize. The other folders underskills/(model knowledge bases, contributor add-*skills) stay on disk for repo browsing but are not loaded as plugins.
nemotron/
│
├── src/nemotron/steps/ Modular building blocks for training, eval, SDG, and more
│
├── src/nemotron/recipes/ Training recipes (complete, reproducible pipelines)
│
├── usage-cookbook/ Usage cookbooks (deployment and model usage guides)
│
└── use-case-examples/ Examples of leveraging Nemotron in agentic workflows
| Nemotron Steps | Training Recipes | Usage Cookbooks | Use Case Examples | |
|---|---|---|---|---|
| Purpose | Full lifecycle building blocks, chain data prep, training, eval and other steps | Reproduce full training pipelines from raw data to model | Deploy and use trained models | Build end-to-end applications |
| Format | The nemotron steps CLI and YAML configs | Python packages with configs, scripts, and evaluation | Jupyter notebooks with step-by-step guides | Jupyter notebooks and scripts |
| When to use | You want to run one stage in isolation or compose a custom pipeline | You want to train, fine-tune, or understand how a model was built | You have a model and want to deploy or run inference | You want to build an application (RAG, agents, tool use) |
| Location | src/nemotron/steps/ | src/nemotron/recipes/ | usage-cookbook/ | use-case-examples/ |
NVIDIA Nemotron is a family of open, high-efficiency multimodal models purpose-built for agentic AI.
Model Tiers:
Nemotron models excel at coding, math, scientific reasoning, tool calling, instruction following, and visual reasoning. Deploy across edge, single GPU, or data center environments with support for NeMo, TensorRT-LLM, vLLM, SGLang, and NIM microservices.
A Nemotron step is a named, reusable unit of work that you invoke with the nemotron steps CLI.
Each step packages a description of the work it performs, the artifacts it consumes and produces, and one or more named configurations that supply parameter values.
Steps live under src/nemotron/steps/, and the CLI discovers them at startup.
The training recipes in the next section are composed from these steps. Run a step on its own when you want one stage, or chain steps together when you need a different pipeline shape than the published recipes.
The catalog covers the full training lifecycle.
curate/* and data_prep/*.sdg/*.translate/*.byob/*.pretrain/*, sft/*, peft/*, and rl/*.convert/* and optimize/*.eval/*.env/*.The Nemotron repository provides reproducible training pipelines from raw data to deployment-ready models. These implementations reflect how large language models are actually trained: careful experimentation, validation gates, and systematic optimization.
Training a production model involves interconnected components. Isolated examples miss how stages interact. Complete pipelines show:
Because these are complete systems, you can extract specific techniques with confidence. Each component has been proven to work in context.
| Model | Description | Stages | Guide |
|---|---|---|---|
| Nemotron 3 Ultra | 550B total / 55B active hybrid Mamba-Attention LatentMoE Transformer with MTP and 1M context — NVIDIA's largest Nemotron 3 model for datacenter-scale agentic reasoning | Pretrain → SFT → RLVR → MOPD | Training Guide |
| Nemotron 3 Super | 120.6B total / 12.7B active Hybrid Mamba Latent MoE Transformer for frontier reasoning, coding, and agentic tasks | Pretrain → SFT → RL | Training Guide |
| Nemotron 3 Nano | 31.6B total / 3.6B active MoE Hybrid Mamba-Transformer for agentic reasoning | Pretrain → SFT → RL | Training Guide |
| Nemotron 3.5 Lightning | 30B total / 3B active hybrid Mamba-Transformer MoE with Multi-Token Prediction | Pretrain → SFT → RL → Quantization | Training Guide |
| Nemotron 3 Nano Omni | 30B total / 3B active hybrid Mamba-Transformer MoE — native text, image, video, and audio for agentic multimodal perception | SFT → RL (MPO / text / vision) → Eval | Training Guide |
A training recipe for NVIDIA's largest Nemotron 3 model — a 550B-A55B hybrid Mamba-Attention Mixture-of-Experts Transformer with LatentMoE and multi-token prediction (MTP), pretrained in NVFP4 and extended to 1M-token context for datacenter-scale agentic reasoning.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the tech report benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A complete training recipe for the frontier Hybrid Mamba Latent Mixture-of-Experts Transformer model with state-of-the-art reasoning, coding, and agentic capabilities.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the tech report benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A complete training recipe for the 30B-A3B hybrid Mamba-Transformer MoE with Multi-Token Prediction, built for fast, accurate specialized task execution in long-running agents. Weights, data, and recipes are released under OpenMDW-1.1.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the published benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A complete training recipe for the open, efficient Mixture-of-Experts hybrid Mamba-Transformer model optimized for agentic reasoning.
Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data. Results will differ from the tech report benchmarks, which used additional proprietary data. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
Resources:
A multimodal training recipe for the 30B-A3B hybrid Mamba-Transformer Mixture-of-Experts model. Native support for text, image, video, and audio in a single decoder, designed as a perception sub-agent for agentic AI.

Open-Source Data Only: These recipes train exclusively on the open-sourced subset of training data (e.g., CORD-v2 for SFT, public MMPR / MMPR-Tiny for RL). Results will differ from the release benchmarks, which used additional internal datasets. Use these recipes as reference implementations to apply the methodology with your own data.
Model Specifications:
What You Can Extract:
nano-v3-omni branch with the omni vllm fork as a submodule) for RLResources:
NVIDIA-NeMo/Megatron-Bridge nemotron_3_omniNVIDIA-NeMo/RL nano-v3-omniPractical deployment and model usage guides for Nemotron models.
| Model | Best For | Key Features | Resources |
|---|---|---|---|
| Nemotron 3 Ultra 550B A55B | Long-running coding, research, and enterprise agentic workflows | 1M context, 550B/55B MoE, MTP, multi-GPU deployment, agent harness configs | Cookbooks |
| Nemotron 3 Super 120B A12B | Production deployments needing strong reasoning | 1M context, in NVFP4 single B200, RAG & tool calling | Cookbooks |
| Nemotron 3 Nano 30B A3B | Resource-constrained environments | 1M context, sparse MoE hybrid Mamba-2, controllable reasoning | Cookbooks |
| Llama-3.1-Nemotron-Nano-8B-v1 | Small-footprint OCI deployments | Validated on private OKE in Phoenix with vLLM, OCI Bastion service, tool calling, and OpenAI-compatible /v1 inference; provides a reproducible OCI path comparable to common AWS GPU/Kubernetes deployment patterns | Cookbooks |
| NVIDIA-Nemotron-Nano-12B-v2-VL | Document intelligence and video understanding | 12B VLM, video reasoning, Efficient Video Sampling | Cookbooks |
| Llama-3.1-Nemotron-Safety-Guard-8B-v3 | Multilingual content moderation | 9 languages, 23 safety categories | Cookbooks |
| Nemotron-Parse | Document parsing for RAG and AI agents | Table extraction, semantic segmentation | Cookbooks |
End-to-end examples demonstrating practical applications in the use-case-examples/ directory:
More than just weights, recipes, and libraries: Nemotron is committed to opening data across many domains, training phases, and use cases.
A comprehensive collection of NVIDIA Nemotron datasets spanning pre-training, post-training, reinforcement learning, multimodal, safety, and domain-specific applications. These openly available datasets power the Nemotron family of models for agentic AI development.
Datasets for training code generation, competitive programming, and software engineering capabilities across multiple programming languages.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-CC-Code-v1 | Pre-training | NVIDIA Data Agreement | Nemotron 3 Nano | 427.9B tokens from Common Crawl code pages using Lynx + LLM pipeline |
| Nemotron-Pretraining-Code-v1 | Pre-training | NVIDIA Data Agreement | Nemotron Nano 2 | GitHub-sourced code corpus for Nemotron Nano 2 |
| Nemotron-Pretraining-Code-v2 | Pre-training | NVIDIA Data Agreement | Nemotron 3 Nano | Updated GitHub code + synthetic QA with STEM reasoning |
| Nemotron-Cascade-RL-SWE | RL Training | CC-BY-4.0 | Nemotron 3 | SWE code repair from SWE-Bench, SWE-Smith, R2E-Gym |
| Nemotron-Competitive-Programming-v1 | SFT | CC-BY-4.0 | Nemotron 3 | 2M+ Python and 1M+ C++ samples across 34K competitive programming questions |
| OpenCodeReasoning | SFT | CC-BY-4.0 | OpenCode-Nemotron | 735K Python samples across 28K competitive programming questions |
| OpenCodeReasoning-2 | SFT | CC-BY-4.0 | OpenCode-Nemotron | 2.5M samples (1.4M Python, 1.1M C++) with code completion and critique |
| Scoring-Verifiers | Evaluation | CC-BY-4.0 | — | Benchmark for test case generation and code reward models |
Mathematical reasoning datasets ranging from pre-training corpora to advanced problem-solving with chain-of-thought and tool-integrated reasoning. Includes the AIMO-2 competition winning dataset.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-CC-Math-v1 | Pre-training | NVIDIA Data Agreement | Nemotron Nano 2, Nemotron 3 Nano | 133B-token math dataset from Common Crawl using Lynx + LLM pipeline |
| Nemotron-Math-Proofs-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Mathematical proofs dataset for Nemotron 3 post-training |
| Nemotron-Math-v2 | SFT | CC-BY-4.0 | Nemotron 3 | 347K samples and 7M reasoning trajectories for Deeper Math Reasoning |
| Nemotron-CrossThink | RL Training | CC-BY-4.0 | Nemotron 3 | Multi-domain QA with MCQ and open-ended formats for verifiable rewards |
| OpenMathReasoning | SFT | CC-BY-4.0 | OpenMath-Nemotron | 5.68M samples, 306K problems from AoPS with CoT/TIR (AIMO-2 winner) |
Scientific reasoning datasets covering chemistry, physics, and general STEM domains for training models on scientific question answering and reasoning.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Science-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Synthetic science reasoning (MCQA + chemistry RQA) |
Large-scale web-crawled and curated datasets for pre-training and post-training, including multilingual data and general instruction-following capabilities.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-CC-v2.1 | Pre-training | NVIDIA Data Agreement | Nemotron 3 Nano | 2.5T tokens English web data with synthetic rephrases and translations |
| Nemotron-CC-v2 | Pre-training | NVIDIA Data Agreement | Nemotron Nano 2 | 6.6T tokens quality-filtered Common Crawl with multilingual Q&A |
| Nemotron-Pretraining-Dataset-sample | Pre-training (Sample) | NVIDIA Data Agreement | — | Sample subset of Nemotron pre-training corpus for experimentation |
| Llama-Nemotron-Post-Training-Dataset | SFT + RL | CC-BY-4.0 | Llama-Nemotron Ultra/Super/Nano | Math, code, reasoning data (2.2M math, 500K code) |
| Nemotron-Post-Training-Dataset-v1 | SFT | CC-BY-4.0 | Llama-3.3-Nemotron-Super-49B-v1.5 | Math, code, STEM, tool calling |
| Nemotron-Post-Training-Dataset-v2 | SFT + RL | CC-BY-4.0 | Llama-Nemotron | Multilingual extension (Spanish, French, German, Italian, Japanese) |
| Nemotron-3-Nano-RL-Training-Blend | RL Training | CC-BY-4.0 | Nemotron-3-Nano-30B-A3B | Curated multi-domain blend for Nemotron 3 Nano |
| Nemotron-RL-knowledge-web_search-mcqa | RL Training | ODC-BY-1.0 | Nemotron 3 | Web search and multiple-choice QA tasks for NeMo Gym |
Datasets for training conversational AI with strong instruction-following capabilities, structured output generation, and multi-turn dialogue.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Instruction-Following-Chat-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Multi-turn chat and structured output generation |
| Nemotron-RL-instruction_following | RL Training | ODC-BY-1.0 | Nemotron 3 | Verifiable instruction adherence from WildChat-1M + Open-Instruct |
| Nemotron-RL-instruction_following-structured_outputs | RL Training | ODC-BY-1.0 | Nemotron 3 | JSON schema-constrained output formatting tests |
| Nemotron-Cascade-RL-Instruction-Following | RL Training | ODC-BY-1.0 | Nemotron 3 | 108K samples for instruction-following RL |
Datasets for training AI agents with tool calling, multi-step workflows, and agentic reasoning capabilities.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Agentic-v1 | SFT | CC-BY-4.0 | Nemotron 3 Nano | Multi-turn trajectories for conversational tool use and agentic workflows |
| Nemotron-RL-agent-workplace_assistant | RL Training | ODC-BY-1.0 | Nemotron 3 | Workplace assistant agent tasks for NeMo Gym |
Human preference and reward modeling datasets for RLHF, SteerLM training, and model alignment. Powers top-performing reward models on RM-Bench and JudgeBench.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| HelpSteer3 | Reward Modeling | CC-BY-4.0 | Nemotron 3 Nano, Llama-Nemotron Super 49B | 40K+ samples; top on RM-Bench/JudgeBench with preference, feedback, edit-quality |
| HelpSteer2 | Reward Modeling | CC-BY-4.0 | Nemotron-4-340B-Reward, Llama-3.1-Nemotron-70B-Reward | 21K samples with 5 attributes |
| HelpSteer | SteerLM Training | CC-BY-4.0 | Nemotron-4 SteerLM | 37K samples (helpfulness, correctness, coherence, complexity, verbosity) |
| Daring-Anteater | SFT/RLHF | CC-BY-4.0 | Nemotron-4-340B-Instruct | Instruction tuning dataset; synthetic subsets + FinQA, wikitablequestions |
| sft_datablend_v1 | SFT | CC-BY-4.0 | — | SFT data blend for RLHF pipeline |
High-quality VLM training data for document intelligence, OCR, image reasoning, video QA, and chain-of-thought visual understanding.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-VLM-Dataset-v2 | VLM Training | CC-BY-4.0 (some CC-BY-SA-4.0) | Nemotron VLM | 8M samples for OCR, image reasoning, video QA with chain-of-thought |
| Llama-Nemotron-VLM-Dataset-v1 | VLM Training | CC-BY-4.0 (some CC-BY-SA-4.0) | Llama-3.1-Nemotron-Nano-VL-8B | 3M samples for visual question answering and captioning |
Datasets for embodied reasoning, physical common sense, and robotic manipulation. Powers Cosmos-Reason1 for physical AI applications.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Cosmos-Reason1-SFT-Dataset | SFT | CC-BY-4.0 | Cosmos-Reason1-7B | Video-text pairs for robotics, ego-centric demos, AV reasoning |
| Cosmos-Reason1-RL-Dataset | RL Training | CC-BY-4.0 | Cosmos-Reason1-7B | RL data for physical common sense and embodied reasoning |
| Cosmos-Reason1-Benchmark | Evaluation | CC-BY-4.0 | — | Benchmark for embodied reasoning (robotics, HoloAssist, AV) |
| PhysicalAI-Robotics-Manipulation-Augmented | Training | CC-BY-4.0 | — | 1K Franka Panda demos with Cosmos Transfer1 domain augmentation |
Multi-sensor driving data and synthetic scenarios for training and validating autonomous vehicle systems.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| PhysicalAI-Autonomous-Vehicles | Training | NVIDIA AV Dataset License | — | 1,700 hours multi-sensor data from 25 countries, 306K clips |
| PhysicalAI-Autonomous-Vehicle-Cosmos-Drive-Dreams | SDG | CC-BY-4.0 | Cosmos | 81K synthetic videos with LiDAR and HD-map annotations |
| PhysicalAI-Autonomous-Vehicle-Cosmos-Synthetic | SDG | CC-BY-4.0 | Cosmos | Cosmos-generated synthetic driving scenarios |
| PhysicalAI-Autonomous-Vehicles-NuRec | Reconstruction | NVIDIA AV Dataset License | — | NuScenes-based reconstruction data |
Privacy-safe synthetic personas grounded in real-world demographics for sovereign AI development and synthetic data generation pipelines.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-Personas-USA | SDG | CC-BY-4.0 | NeMo Data Designer | 1M US personas grounded in Census demographics |
| Nemotron-Personas-Japan | SDG | CC-BY-4.0 | NeMo Data Designer | 1M Japanese personas aligned with regional statistics |
| Nemotron-Personas-India | SDG | CC-BY-4.0 | NeMo Data Designer | 3M Indian personas for sovereign AI development |
| Nemotron-Personas | SDG | CC-BY-4.0 | NeMo Data Designer | 100K US personas with 22 fields aligned to Census data |
Synthetic datasets for training named entity recognition models to detect and redact personally identifiable information.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Nemotron-PII | NER Training | CC-BY-4.0 | GLiNER-PII | 100K synthetic records with 55+ PII/PHI entity types |
Content safety datasets for training guardrail models covering comprehensive risk taxonomies. Powers NemoGuard content safety models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Aegis-AI-Content-Safety-Dataset-1.0 | Content Moderation | CC-BY-4.0 | NemoGuard Permissive/Defensive | 11K annotated interactions covering 13 risk categories |
| Aegis-AI-Content-Safety-Dataset-2.0 | Content Moderation | CC-BY-4.0 | Llama-3.1-NemoGuard-8B-ContentSafety | Extended safety dataset with 23 violation categories |
| Nemotron-Content-Safety-Audio-Dataset | Audio Safety | CC-BY-4.0 | — | 1.9K audio files from Aegis 2.0 with accent diversity |
Training and evaluation data for retrieval-augmented generation and conversational question answering. Powers ChatQA models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| ChatRAG-Bench | Evaluation | Other (derived) | — | Benchmark across 10 datasets for document QA and unanswerable detection |
| ChatQA-Training-Data | SFT | Other (derived) | ChatQA-1.5 | Training data for ChatQA models from multiple sources |
| ChatQA2-Long-SFT-data | SFT | Other (derived) | ChatQA-2 | 128K long-context training data for ChatQA-2 |
Protein sequence data for training biological foundation models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| esm2_uniref_pretraining_data | Pre-training | CC-BY-4.0 | ESM2-nv | 188M protein sequences for ESM2 |
Testing and synthetic data for 3D reconstruction, video generation, and spatial understanding models.
| Dataset | Usage | License | Model(s) | Description |
|---|---|---|---|---|
| Lyra-Testing-Example | Evaluation | CC-BY-4.0 | Lyra | Testing examples for Lyra generative 3D reconstruction |
| PhysicalAI-SpatialIntelligence-Lyra-SDG | SDG | CC-BY-4.0 | Lyra | Synthetic data for spatial intelligence models |
| GEN3C-Testing-Example | Evaluation | CC-BY-4.0 | GEN3C | Testing examples for GEN3C video generation |
| ChronoEdit-Example-Dataset | Evaluation | CC-BY-4.0 | ChronoEdit | Temporal reasoning examples for image editing |
Have an idea for improving Nemotron models? Create a Discussion topic for it!
If you have a feature request, feel free to open an Issue and tag it as enhancement.
Your feedback helps shape the future of Nemotron models!
We welcome contributions: examples, recipes, or other tools. Please read the Contributing Guidelines before submitting pull requests.
To report any vulnerabilities, please reach out to security@nvidia.com
Apache 2.0 License — see LICENSE for details.
NVIDIA Nemotron — Open and efficient models for agentic AI.
(top 30 of 38)
Jupyter Notebook
70.9%
Python
28.0%