CoolFace
Modelpublic

Arsh9210/NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8

sourceHugging Faceotherupdated 2mo agoView on Hugging Face
0likes16downloads
Model Card

NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8

<div align="center"> <img src="./starelasticlogo.png" alt="Nemotron Labs Elastic" width="500"/> </div>

<div align="center" style="line-height: 1;"> <a href="https://huggingface.co/nvidia/NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8/resolve/main/starelasticarxiv.pdf" target="blank" style="margin: 2px;"> <img alt="Paper" src="https://img.shields.io/badge/πŸ“Paper-Read Now!-536af5?color=76B900&logoColor=white" style="display: inline-block; vertical-align: middle;"/> </a> <a href="https://icml.cc/virtual/2026/poster/61782" target="blank" style="margin: 2px;"> <img alt="ICML 2026" src="https://img.shields.io/badge/ICML2026-Poster-blue?color=0072C6&logoColor=white" style="display: inline-block; vertical-align: middle;"/> </a> <a href="https://huggingface.co/collections/nvidia/nemotron-pre-training-datasets" target="blank" style="margin: 2px;"> <img alt="Pre-Training Datasets" src="https://img.shields.io/badge/πŸ—„οΈPre--TrainingDatasets-AvailableHere-76B900?logoColor=white" style="display: inline-block; vertical-align: middle;"/> </a> <a href="https://huggingface.co/collections/nvidia/nemotron-post-training-v3" target="blank" style="margin: 2px;"> <img alt="Post-Training Datasets" src="https://img.shields.io/badge/πŸ—„οΈPost--TrainingDatasets-Available_Here-76B900?logoColor=white" style="display: inline-block; vertical-align: middle;"/> </a> </div>

<div align="center" style="line-height: 1;"> <a href="https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/" style="margin: 2px;"> <img alt="License" src="https://img.shields.io/badge/License-NVIDIA Open Model License-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/> </a> </div>

Model Developer: NVIDIA

Model Dates:

September 2025 - December 2025

Data Freshness:

  • β€”The post-training data has a cutoff date of November 28, 2025.
  • β€”The pre-training data has a cutoff date of June 25, 2025.

Model Overview

NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8 is a 3-in-1 elastic large language model (LLM) developed by NVIDIA. It contains three nested model variants (30B, 23B, and 12B parameters) within a single FP8 checkpoint, all sharing the same parameter space. The 23B and 12B variants can be extracted zero-shot from this checkpoint using the provided slicing script.

This is the FP8 quantized version of the BF16 elastic model. Weights are stored as float8e4m3fn with per-tensor weightscale and input_scale scalars. The FP8 quantization preserves the nested weight-sharing structure -- scale tensors are per-tensor scalars and are not pruned during slicing, while actual weight tensors are pruned along the appropriate axes.

This model was derived from NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 using the Elastic post-training framework, which produces elastic (many-in-one) reasoning LLMs from hybrid Mamba-Transformer-MoE architectures. The method takes the parent reasoning model and embeds N nested submodels within it using the compute of a single training run. The technology was originally developed for hybrid Mamba-Transformer architectures and has been extended to hybrid MoE models for Nemotron 3 Nano.

πŸ“„ The accompanying paper, "Star Elastic: Many-in-One Reasoning LLMs with Efficient Budget Control", has been accepted for publication at ICML 2026 (see Citation).

The parent model employs a hybrid Mixture-of-Experts (MoE) architecture, consisting of 23 Mamba-2 and MoE layers, along with 6 Attention layers. Each MoE layer includes 128 experts plus 1 shared expert, with 6 experts activated per token.

All three nested variants share the same 52-layer architecture pattern and the same number of attention heads (32), Mamba heads (64), and MoE experts (128). The variants differ in embedding dimension and MoE FFN dimension:

VariantTotal ParamsActive ParamsEmbedding DimMoE FFN Dim
30B30B3.6B26881856
23B23B2.8B23041600
12B12B2.0B1920960

The supported languages include: English, German, Spanish, French, Italian, and Japanese.

This model is ready for commercial use.

[image]

Average accuracy of Elastic variants compared to the parent Nemotron 3 Nano 30B and Qwen3-30B-A3B across key reasoning benchmarks (BF16 precision). The Elastic-30B variant matches or exceeds the parent model on most benchmarks, while the 23B and 12B variants provide strong accuracy at reduced compute.

Quantized Accuracy Recovery

The following table summarizes accuracy recovery of quantized variants relative to BF16:

Model VariantFP8 Recovery (Avg)NVFP4 Recovery (Avg)
30B (3.6A)98.69%97.79%
23B (2.8A)99.03%99.15%
12B (2.0A)100.26%97.10%

Throughput Improvements

The smaller elastic variants provide substantial throughput improvements when served with vLLM (measured on H100 GPU, ISL=8192 / OSL=16384, BF16 precision):

VariantMax Batch SizeThroughput Multiplier
30B (3.6A)361.0x (baseline)
23B (2.8A)1081.8x
12B (2.0A)2242.4x

The smaller nested models also enable much higher batch sizes on the same GPU (224 vs 36), providing significant serving cost reductions.

Elastic Budget Control

Elastic Budget Control is a novel inference-time mechanism enabled by the nested architecture. Instead of using a fixed model for both the thinking (<think>) and answering phases, elastic budget control uses different-sized nested models for each phase.

[image]

Pareto frontier of accuracy vs. latency for different elastic budget control configurations. The figure shows that using different model sizes for the thinking and answering phases (e.g., 23B thinking -> 30B answering) achieves better accuracy-latency tradeoffs than using a single model size throughout. The optimal configuration uses a smaller model for high-volume reasoning (thinking phase) and a larger model for high-fidelity synthesis (answering phase), achieving up to 16% higher accuracy and 1.9x lower latency compared to standard single-model budget control.

Four configurations are possible using models ML (Large) and MS (Small):

  • β€”M_L -> M_L: Large model for both thinking and answering
  • β€”M_S -> M_S: Small model for both thinking and answering
  • β€”M_L -> M_S: Large model for thinking, small for answering
  • β€”M_S -> M_L: Small model for thinking, large for answering (identified as optimal)

The M_S -> M_L configuration is optimal because:

  1. 1.Thinking phase (high-volume reasoning): Benefits from larger token budgets to explore reasoning paths; using the smaller model generates extensive reasoning traces with minimal computational overhead.
  2. 2.Answering phase (high-fidelity synthesis): Requires superior instruction-following and consistency; the larger model provides the necessary capacity for robust synthesis.

The 23B -> 30B configuration achieves the best accuracy-latency tradeoffs over a wide range of budgets.

⚠️ Note on inference support. Elastic budget control is not yet supported in the standard vLLM inference engine β€” switching nested sub-models within a single generation (e.g., 23B β†’ 30B think β†’ answer) currently requires a custom inference path. Nested models preserve the Mamba and attention layer structure, enabling cache-state transplantation between models, and efficient native vLLM integration is actively being worked on.

Elastic Architecture Overview

A key innovation of this model is its Elastic Architecture, which enables the extraction of smaller, nested variants (23B and 12B parameters) from the same parameter space without requiring separate training runs.

The Elastic pipeline operates in three stages:

  1. 1.Importance Estimation: Components (embedding dimensions, attention heads, Mamba heads, MoE experts, FFN channels) are ranked by importance scores using calibration data.
  2. 2.Elastic Formulation: Smaller-budget sub-networks are defined as contiguous subsets of the most salient components, forming a nested hierarchy.
  3. 3.Elastic Training: A learnable router with Gumbel-Softmax selection is trained end-to-end using knowledge distillation from the frozen parent model, with a two-stage curriculum (8K context, then 49K context).

The entire elastic family was produced by post-training the Nemotron 3 Nano 30B parent with only approximately 160B tokens β€” roughly 0.6% of the parent's ~25T-token pretraining budget, and far less than what would be required to train three independent compressed variants.

Key Benefits

  • β€”3-in-1 Nested Checkpoint: All three model sizes (12B/23B/30B) are embedded in a single checkpoint via nested weight sharing. Deploying all three variants requires only 58.9 GB in BF16, a 2.14x memory reduction compared to storing three independent checkpoints (126.1 GB). The FP8 checkpoint provides further memory reduction.
  • β€”Compute-efficient elastification: The entire 30B + 23B + 12B nested family was produced by post-training the Nemotron 3 Nano 30B parent in a single training run with only ~160B tokens β€” about 0.6% of the parent's ~25T pretraining budget, and far less than retraining or independently compressing three separate models.
  • β€”Full Accuracy-Latency Frontier: The nested model covers all latency regimes via elastic budget control, delivering up to 16% higher accuracy and 1.9x faster inference compared to standard single-model budget control.
  • β€”High FP8 Accuracy Recovery: FP8 quantization preserves strong accuracy across all variants (see Quantized Accuracy Recovery below).
  • β€”Unlocks lower-tier RTX community prototyping: As a bonus, the 12B and 23B variants in FP8 / NVFP4 fit on consumer/prosumer RTX series lower tiers, including 6000 / 5090 / 5080. This should make Nano V3 architecture easier to prototype and debug.

Zero-Shot Slicing Before Deployment

This checkpoint contains the full 30B 3-in-1 FP8 model. Before deploying a smaller variant, you can perform zero-shot slicing to extract the 23B or 12B model directly from this checkpoint β€” no additional training or fine-tuning is required. The sliced model is ready for immediate deployment.

Use the provided zero_shot_slicing.py script:

bash
# Zero-shot slice the 23B FP8 variant for deployment
python zero_shot_slicing.py \
    --source-checkpoint <path-to-this-30B-fp8-checkpoint> \
    --target-checkpoint ./nemotron-elastic-23b-fp8 \
    --size 23B \
    --precision fp8

# Zero-shot slice the 12B FP8 variant for deployment
python zero_shot_slicing.py \
    --source-checkpoint <path-to-this-30B-fp8-checkpoint> \
    --target-checkpoint ./nemotron-elastic-12b-fp8 \
    --size 12B \
    --precision fp8

The zero-shot slicing process preserves the hybrid MoE architecture while reducing model size through structured pruning of embedding dimensions and MoE FFN dimensions. Because the nested variants share the most salient weights with the parent model, the sliced checkpoints retain strong accuracy without any additional knowledge distillation or fine-tuning. FP8 scale tensors (weightscale, inputscale) are per-tensor scalars and are left unchanged during slicing. The shared expert intermediate size (3712) is also left unchanged.

Available size presets: | Size | Target Hidden Size | Target Intermediate Size | |---|---|---| | 23B | 2304 | 1600 | | 12B | 1920 | 960 |

Deployment Memory

ConfigurationModelsTotal Memory (BF16)
Nemotron 3 Elastic12B + 23B + 30B58.9 GB
Separate NanoV312B + 23B + 30B126.1 GB

Quick Start Guide

Use it with Transformers

python
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM

# Load the full 30B FP8 elastic model
tokenizer = AutoTokenizer.from_pretrained("nvidia/NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    "nvidia/NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8",
    torch_dtype=torch.bfloat16,
    trust_remote_code=True,
    device_map="auto"
)
python
messages = [
    {"role": "user", "content": "Write a haiku about GPUs"},
]

tokenized_chat = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_tensors="pt"
).to(model.device)

outputs = model.generate(
    tokenized_chat,
    max_new_tokens=1024,
    temperature=1.0,
    top_p=1.0,
    eos_token_id=tokenizer.eos_token_id
)
print(tokenizer.decode(outputs[0]))

temperature=1.0 and top_p=1.0 are recommended for reasoning tasks.

If you'd like to use reasoning off, add enable_thinking=False to apply_chat_template(). By default, enable_thinking is set to be True.

Note: To use the 23B or 12B FP8 variants, first extract them using the slicing script as described in the Zero-Shot Slicing Before Deployment section, then load the extracted checkpoint.

Use it with vLLM

For more detailed information on how to use the model with vLLM, please see this cookbook. If you are on Jetson Thor or DGX Spark, please use this vllm container.

bash
pip install -U "vllm>=0.12.0"

Download the custom parser from the Hugging Face repository.

bash
wget https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16/resolve/main/nano_v3_reasoning_parser.py

Launch a vLLM server using the custom parser.

bash
vllm serve nvidia/NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8 \
  --served-model-name model \
  --max-num-seqs 8 \
  --tensor-parallel-size 1 \
  --max-model-len 131072 \
  --port 8000 \
  --trust-remote-code \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_coder \
  --reasoning-parser-plugin nano_v3_reasoning_parser.py \
  --reasoning-parser nano_v3

In the example above, we use a context length of 128k. You can increase the context size up to 1M to support longer contexts. To enable this, set the VLLM_ALLOW_LONG_MAX_MODEL_LEN=1 environment variable as shown below:

bash
VLLM_ALLOW_LONG_MAX_MODEL_LEN=1 \
vllm serve nvidia/NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8 \
  --served-model-name model \
  --max-num-seqs 8 \
  --tensor-parallel-size 1 \
  --max-model-len 1M \
  --port 8000 \
  --trust-remote-code \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_coder \
  --reasoning-parser-plugin nano_v3_reasoning_parser.py \
  --reasoning-parser nano_v3

Here is an example client code for vLLM. By default, the endpoint has reasoning enabled. We recommend setting a high value (e.g., 10,000) for max_tokens.

bash
curl http://localhost:8000/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{
        "model": "model",
        "messages":[{"role": "user", "content": "Write a haiku about GPUs"}],
        "max_tokens": 10000
    }'

If you'd like to use reasoning off with vLLM, you can do the following:

vLLM OpenAI curl request:

bash
curl http://localhost:8000/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{
        "model": "model",
        "messages":[{"role": "user", "content": "Write a haiku about GPUs"}],
        "chat_template_kwargs": {"enable_thinking": false}
    }'

vLLM OpenAI client:

python
response = client.chat.completions.create(model=model, messages=messages, extra_body={"chat_template_kwargs": {"enable_thinking": False}})

Note: To serve the 23B or 12B variants with vLLM, first extract them using the zero-shot slicing script as described in the Zero-Shot Slicing Before Deployment section, then point vLLM to the sliced checkpoint.

Prompt Format

The prompt format is the same as the NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 model. Please refer to that model card for detailed prompt formatting information and usage examples.

License/Terms of Use

Your use of this model is governed by the NVIDIA Open Model License.

Deployment Geography

Global

Use Case

This model is intended for developers designing AI Agent systems, chatbots, RAG systems, and other AI-powered applications. Supported for English and coding languages, with additional support for Spanish, French, German, Japanese, and Italian.

Release Date

Model Architecture

  • β€”Architecture Type: Mamba2-Transformer Hybrid Mixture of Experts (MoE)
  • β€”Network Architecture: Nemotron Hybrid MoE
  • β€”Number of model parameters: 30B (full), 23B and 12B (nested variants)
  • β€”Precision: FP8 (float8_e4m3fn with per-tensor scales)
  • β€”Number of layers: 52
  • β€”Layer pattern: M-E-M-E-M\-E-M-E-M-E-M\-E-... (M=Mamba, E=MoE, \*=Attention)
  • β€”Number of attention heads: 32
  • β€”Number of Mamba heads: 64
  • β€”Number of MoE experts: 128 routed + 1 shared (6 active per token)

Input

  • β€”Input Type(s): Text
  • β€”Input Format(s): String
  • β€”Input Parameters: One-Dimensional (1D): Sequences
  • β€”Maximum input size: 1M tokens
  • β€”Other Properties Related to Input: Supported languages include: English, Spanish, French, German, Japanese, Italian

Output

  • β€”Output Type(s): Text
  • β€”Output Format: String
  • β€”Output Parameters: One-Dimensional (1D): Sequences
  • β€”Maximum output size: 128K tokens
  • β€”Other Properties Related to Output: Context length up to 128K tokens for output generation. Text-only output in supported languages (English, Spanish, French, German, Japanese, Italian).

Our AI models are designed and optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA's hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions.

Software Integration

  • β€”Runtime Engine(s): Hugging Face Transformers
  • β€”Supported Hardware Microarchitecture Compatibility: NVIDIA Hopper, NVIDIA Blackwell
  • β€”Supported Operating System(s): Linux

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.

This AI model can be embedded as an Application Programming Interface (API) call into the software environment described above.

Model Version(s)

  • β€”NVIDIA-Nemotron-Labs-3-Elastic-30B-A3B-FP8 v1.0 β€” Elastic 3-in-1 FP8 quantized model containing 30B, 23B, and 12B nested variants (quantized, deployable)

Training Methodology

This elastic model was post-trained from NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 using the Elastic framework with knowledge distillation.

Elastic Training Details:

  • β€”Total training budget: ~160B tokens
  • β€”Stage 1: Uniform budget sampling, sequence length 8192, ~100B tokens
  • β€”Stage 2: Curriculum-based non-uniform sampling (skewed toward larger budgets), sequence length 49152, ~60B tokens
  • β€”Optimizer: LR 1e-4 for model, LR 1e-2 for router, 60-step linear warmup
  • β€”Data blend: 70% reasoning (post-training/SFT) + 30% pretraining data
  • β€”Loss: KL divergence between frozen parent (teacher) and elastic model (student) + router resource cost loss

The extended context in Stage 2 is critical for reasoning performance. The two-stage curriculum (8K then 49K context) outperforms training at 49K from the start.

The FP8 quantization was applied after elastic training.

For details on the parent model's pre-training, supervised fine-tuning, and reinforcement learning stages, please refer to the NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 model card.

Training and Evaluation Datasets

The elastic post-training used a blend of 70% reasoning (post-training/SFT) data and 30% pretraining data from the parent model's training corpus. The full dataset disclosure below is inherited from the parent model NVIDIA-Nemotron-3-Nano-30B-A3B-BF16.

Data Modality: Text The total size: 10,648,823,153,919 Tokens Total number of datasets: 141 Dataset partition: Training \[100%\], testing \[0%\], validation \[0%\] Time period for training data collection: 2013 to May 1, 2025 Time period for testing data collection: 2013 to May 1, 2025 Time period for validation data collection: 2013 to May 1, 2025 Data Collection Method by dataset: Hybrid: Automated, Human, Synthetic Labeling Method by dataset: Hybrid: Automated, Human, Synthetic

NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 is pre-trained on a large corpus of high-quality curated and synthetically-generated data. It is trained in the English language, as well as 19 other languages and 43 programming languages. Our sources cover a variety of document types such as: webpages, dialogue, articles, and other written materials. The corpus spans domains including legal, math, science, finance, and more. We also include a small portion of question-answering, and alignment style data to improve model accuracy. The model was trained for approximately 25 trillion tokens.

The post-training corpus for NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 of high-quality curated and synthetically-generated data. Primary languages used for post-training include English, German, Spanish, French, Italian, and Japanese.

These datasets, such as FinePDFs, EssentialWeb, HotpotQA, SQuAD, and HelpSteer3, do not collectively or exhaustively represent all demographic groups (and proportionally therein). For instance, these datasets do not contain explicit mentions of demographic classes such as age, gender, or ethnicity in 64-99% of samples, depending on the source. In the subset where such terms are present, document-based datasets (FinePDFs and EssentialWeb) contain representational skews, such as references to "male" outnumbering those to "female", and mentions of "White" as the most frequent among ethnic identifiers (comprising 43-44% of ethnicity mentions). To mitigate these imbalances, we recommend considering evaluation techniques such as bias audits, fine-tuning with demographically balanced datasets, and mitigation strategies like counterfactual data augmentation to align with the desired model behavior. This evaluation used a 3,000-sample subset per dataset, identified as the optimal threshold for maximizing embedder accuracy.

During post-training, we generate synthetic data by distilling trajectories, solutions, and translations from strong teacher models and agent systems, often grounded in real tasks or documents and aggressively filtered for quality. For math, code, and science, we start from curated problem sets and use open source permissive models such as GPT-OSS-120B to produce step-by-step reasoning traces, candidate solutions, best-of-n selection traces, and verified CUDA kernels. For long-context and science, we build synthetic QA and reasoning data by retrieving passages from long documents, generating MCQ/OpenQA questions and answers, and paraphrasing them into multiple prompt/response formats to ensure diversity. Across all pipelines we stack automated verificationβ€”compilers, numerical checks, language identificationβ€”to ensure our data is high quality.

For all domains, we apply a unified data filtering pipeline to ensure that only high-quality, license-compliant, and verifiable samples are used for post-training. We first discard malformed examples using structural checks (e.g., missing tool definitions when tool calls are present). We then aggressively filter reasoning traces exhibiting pathological repetition, such as repeated n-grams within a sliding window or across the entire trajectory, which we found to be a strong indicator of malformed or low-quality reasoning. Finally, based on internal audits of synthetically generated datasets, we observed that some teacher models occasionally produce reasoning traces and final responses that implicitly align with specific political entities or promote nationalistic narratives. To mitigate this, we apply targeted keyword- and regex-based filters and remove all trajectories matching such behavior.

Alongside the model, we release our final pre-training and post-training data, as outlined in this section. For ease of analysis, there is a sample set that is ungated. For all remaining code, math and multilingual data, gating and approval is required, and the dataset is permissively licensed for model training purposes.

More details on the datasets and synthetic data generation methods can be found in the technical report NVIDIA Nemotron 3 Nano.

DatasetCollection Period
GSM8K4/23/2025
CC-NEWS4/23/2025
Common Crawl4/23/2025
Wikimedia4/23/2025
Bespoke-Stratos-17k4/23/2025
tigerbot-kaggle-leetcodesolutions-en-2k4/23/2025
glaive-function-calling-v24/23/2025
APIGen Function-Calling4/23/2025
LMSYS-Chat-1M4/23/2025
Open Textbook Library \- CC BY-SA & GNU subset and OpenStax \- CC BY-SA subset4/23/2025
Advanced Reasoning Benchmark, tigerbot-kaggle-leetcodesolutions-en-2k, PRM800K, and SciBench4/23/2025
FineWeb-24/23/2025
Court ListenerLegacy Download
peS2oLegacy Download
OpenWebMathLegacy Download
BioRxivLegacy Download
PMC Open Access SubsetLegacy Download
OpenWebText2Legacy Download
Stack Exchange Data DumpLegacy Download
PubMed AbstractsLegacy Download
NIH ExPorterLegacy Download
arXivLegacy Download
BigScience Workshop DatasetsLegacy Download
Reddit DatasetLegacy Download
SEC's Electronic Data Gathering, Analysis, and Retrieval (EDGAR)Legacy Download
Advanced Mathematical Problem SolvingLegacy Download
MathPileLegacy Download
NuminaMath CoTLegacy Download
PMC ArticleLegacy Download
FLANLegacy Download
Advanced Reasoning BenchmarkLegacy Download
SciBenchLegacy Download
WikiTableQuestionsLegacy Download
FinQALegacy Download
RiddlesLegacy Download
Problems in Elementary Mathematics for Home StudyLegacy Download
MedMCQALegacy Download
Cosmos QALegacy Download
MCTestLegacy Download
AI2's Reasoning ChallengeLegacy Download
OpenBookQALegacy Download
MMLU Auxiliary TrainLegacy Download
social-chemestry-101Legacy Download
Moral StoriesLegacy Download
The Common Pile v0.1Legacy Download
FineMathLegacy Download
MegaMathLegacy Download
MegaMathLegacy Download
MultiverseMathHard10/2/2025
SWE-Gym10/2/2025
WorkBench10/2/2025
WildChat-1M10/2/2025
OpenCodeReasoning-210/2/2025
HelpSteer310/2/2025
opc-sft-stage210/2/2025
Big-Math-RL-Verified10/2/2025
NuminaMath CoT10/2/2025
MetaMathQA10/2/2025
simple-arithmetic-problems10/2/2025
arithmetic10/2/2025
Skywork-OR1-RL-Data10/2/2025
News Commentary10/2/2025
FastChat10/2/2025
Essential-Web10/2/2025
finepdfs10/2/2025
HotpotQA10/2/2025
SQuAD2.010/2/2025
NLTK Words Lists10/2/2025

Private Non-publicly Accessible Datasets of Third Parties

Dataset
Global Regulation
TAUS Translation Memory
Scale HLE
HackerRank Coding

Private Non-publicly Accessible Datasets by NVIDIA

Dataset
Simple Minesweeper
Simple Sudoku
Multitool Typewriter Hard
Machine Translation of News Commentary and TAUS Translation Memory
Machine Translation of STEM data using Qwen2.5-14B-Instruct

Crawled and Scraped from Online Sources by NVIDIA

The English Common Crawl data was downloaded from the Common Crawl Foundation (see their FAQ for details on their crawling) and includes the snapshots CC-MAIN-2013-20 through CC-MAIN-2025-13. The data was subsequently deduplicated and filtered in various ways described in the Nemotron-CC paper. Additionally, we extracted data for fifteen languages from the following three Common Crawl snapshots: CC-MAIN-2024-51, CC-MAIN-2025-08, CC-MAIN-2025-18. The fifteen languages included were Arabic, Chinese, Danish, Dutch, French, German, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, Swedish, and Thai. As we did not have reliable multilingual model-based quality classifiers available, we applied just heuristic filtering insteadβ€”similar to what we did for lower quality English data in the Nemotron-CC pipeline, but selectively removing some filters for some languages that did not work well. Deduplication was done in the same way as for Nemotron-CC.

The GitHub Crawl was collected using the GitHub REST API and the Amazon S3 API. Each crawl was operated in accordance with the rate limits set by its respective source, either GitHub or S3. We collect raw source code and subsequently remove any having a license which does not exist in our permissive-license set (for additional details, refer to the technical report).

DatasetModalityDataset SizeCollection PeriodCollecting Organisation
English Common CrawlText3.36T4/8/2025NVIDIA Advanced Deep Learning Research
English Common Crawl 1.1TextNot disclosed10/2/2025NVIDIA Advanced Deep Learning Research
Multilingual Common CrawlText812.7B5/1/2025NVIDIA Advanced Deep Learning Research
GitHub CrawlText747.4B4/29/2025NVIDIA Advanced Deep Learning Research

NVIDIA-Sourced Synthetic Datasets

DatasetModalityDataset SizeSeed DatasetModel(s) used for generation
Synthetic Art of Problem Solving from DeepSeek-R1Text40BArt of Problem Solving; American Mathematics Competitions 8; American Mathematics Competitions 10;DeepSeek-R1
Synthetic Moral Stories and Social Chemistry from Mixtral-8x22B-v0.1Text327Msocial-chemestry-101; Moral StoriesMixtral-8x22B-v0.1
Synthetic Social Sciences seeded with OpenStax from DeepSeek-V3, Mixtral-8x22B-v0.1, and Qwen2.5-72BText83.6MOpenStax \- CC BY-SA subsetDeepSeek-V3; Mixtral-8x22B-v0.1; Qwen2.5-72B
Synthetic Health Sciences seeded with OpenStax from DeepSeek-V3, Mixtral-8x22B-v0.1, and Qwen2.5-72BText9.7MOpenStax \- CC BY-SA subsetDeepSeek-V3; Mixtral-8x22B-v0.1; Qwen2.5-72B
Synthetic STEM seeded with OpenStax, Open Textbook Library, and GSM8K from DeepSeek-R1, DeepSeek-V3, DeepSeek-V3-0324, and Qwen2.5-72BText175MOpenStax \- CC BY-SA subset; GSM8K; Open Textbook Library \- CC BY-SA & GNU subsetDeepSeek-R1, DeepSeek-V3; DeepSeek-V3-0324; Qwen2.5-72B
Nemotron-PrismMathText4.6BBig-Math-RL-Verified; OpenR1-Math-220kQwen2.5-0.5B-instruct, Qwen2.5-72B-Instruct; DeepSeek-R1-Distill-Qwen-32B
Synthetic Question Answering Data from Papers and Permissible Books from Qwen2.5-72B-InstructText350MarXiv; National Institutes of Health ExPorter; BioRxiv; PMC Article; USPTO Backgrounds; peS2o; Global Regulation; CORE; PG-19; DOAB CC BY & CC BY-SA subset; NDLTDQwen2.5-72B-Instruct
Refreshed Nemotron-MIND from phi-4Text73BCommon Crawlphi-4
Nemotron-CC-Math-4plusText52.3BCommon Crawlphi-4
Nemotron-CC-Math-3Text80.9BCommon Crawlphi-4
Synthetic AGIEval seeded with AQUA-RAT, LogiQA, and AR-LSAT from DeepSeek-V3 and DeepSeek-V3-0324Text4.0BAQUA-RAT; LogiQA; AR-LSATDeepSeek-V3; DeepSeek-V3-0324
Synthetic AGIEval seeded with AQUA-RAT, LogiQA, and AR-LSAT from Qwen3-30B-A3BText4.2BAQUA-RAT; LogiQA; AR-LSATQwen3-30B-A3B
Synthetic Art of Problem Solving from Qwen2.5-32B-Instruct, Qwen2.5-Math-72B, Qwen2.5-Math-7B, and Qwen2.5-72B-InstructTextArt of Problem Solving; American Mathematics Competitions 8; American Mathematics Competitions 10; GSM8K; PRM800KQwen2.5-32B-Instruct; Qwen2.5-Math-72B; Qwen2.5-Math-7B; Qwen2.5-72B-Instruct
Synthetic MMLU Auxiliary Train from DeepSeek-R1Text0.5BMMLU Auxiliary TrainDeepSeek-R1
Synthetic Long Context Continued Post-Training Data from Papers and Permissible Books from Qwen2.5-72B-InstructTextarXiv; National Institutes of Health ExPorter; BioRxiv; PMC Article; USPTO Backgrounds; peS2o; Global Regulation; CORE; PG-19; DOAB CC BY & CC BY-SA subset; NDLTDQwen2.5-72B-Instruct
Synthetic Common Crawl from Qwen3-30B-A3B and Mistral-Nemo-12B-InstructText415.8BCommon CrawlQwen3-30B-A3B; Mistral-NeMo-12B-Instruct
Synthetic Multilingual Data from Common Crawl from Qwen3-30B-A3BTextCommon CrawlQwen3-30B-A3B
Synthetic Multilingual Data from Wikimedia from Qwen3-30B-A3BTextWikimediaQwen3-30B-A3B
Synthetic Math Data from Wikimedia from Nemotron-4-340B-InstructText\-Nemotron-4-340B-Instruct
Synthetic Common Crawl Code from phi-4Text427.9BCommon Crawlphi-4
Synthetic Scientific Coding from Qwen3-235B-A22BText1.2BWikimediaQwen3-235B-A22B
Tool Calling DataText26.2BQwen3-235B-A22B-2507; gpt-oss-120b
Synthetic Essential-Web from QwQ-32BText28.1BEssential-WebQwQ-32B
Translated Synthetic CrawlText389.9BCommon CrawlQwen3-30B-A3B
Translated Synthetic WikipediaText7.9BWikimediaQwen3-30B-A3B
Synthetic Art of Problem Solving from gpt-oss-120b and Qwen2.5-32B-InstructTextUndisclosedArt of Problem Solving; American Mathematics Competitions 8; American Mathematics Competitions 10gpt-oss-120b; Qwen2.5-32B-Instruct
Synthetic Stack Exchange from gpt-oss-120b and Qwen2.5-32B-InstructTextUndisclosedStack Exchangegpt-oss-120b; Qwen2.5-32B-Instruct
Synthetic OpenCodeReasoning from DeepSeek-R1-0528TextUndisclosedOpenCodeReasoningDeepSeek-R1-0528
Synthetic HackerRank Coding from DeepSeek-R1-0528TextUndisclosedHackerRank Coding DatasetDeepSeek-R1-0528
Synthetic SWE-Gym from Qwen3-Coder-480B-A35B-InstructTextUndisclosedSWE-GymQwen3-Coder-480B-A35B-Instruct
Synthetic Art of Problem Solving and Stack Exchange from gpt-oss-120b, Qwen2.5-32B-Instruct, and Goedel-Prover-V2-32BTextUndisclosedArt of Problem Solving; American Mathematics Competitions 8; American Mathematics Competitions 10; Stack Exchangegpt-oss-120b; Qwen2.5-32B-Instruct; Goedel-Prover-V2-32B
Synthetic Multilingual Science and Code data from DeepSeek-R1, DeepSeek-R1-0528, Qwen2.5-32B-Instruct, and Qwen3-235B-A22B, translated with Qwen2.5-32B-Instruct and Qwen2.5-14B-InstructTextUndisclosedStack Exchange; SCP-116K; LIMO; TACO; Code Contest; CodeforcesDeepSeek-R1; DeepSeek-R1-0528; Qwen2.5-32B-Instruct; Qwen3-235B-A22B;
Synthetic Safety from DeepSeek-R1-0528, gpt-oss-120b and Mixtral-8x7B-v0.1TextUndisclosedNemotron Content Safety Dataset V2; Gretel Synthetic Safety Alignment Dataset; RedTeam-2K; Malicious Tasks; Nemotron-Personas-USADeepSeek-R1-0528; gpt-oss-120b; Mixtral-8x7B-v0.1
Synthetic STEM from Qwen3-235B-A22B-Instruct-2507 and gpt-oss-120bTextUndisclosedarXiv; National Institutes of Health ExPorter; BioRxiv; PMC Article; USPTO Backgrounds; peS2o; Global Regulation; CORE; PG-19; DOAB CC BY & CC BY-SA subset; NDLTDQwen3-235B-A22B-Instruct-2507; gpt-oss-120b
Synthetic KernelBook from DeepSeek-R1-0528TextUndisclosedKernelBookDeepSeek-R1-0528
Synthetic Tool Calling from Qwen3-235B-A22B-Thinking-2507 and Qwen3-Next-80B-A3B-ThinkingTextUndisclosedToolBench; glaive-function-calling-v2; APIGen Function-Calling; Nemotron-Personas-USAQwen3-235B-A22B-Thinking-2507; Qwen3-Next-80B-A3B-Thinking
Synthetic Chat from gpt-oss-120b, Mixtral-8x22B-Instruct-v0.1, Qwen3-235B-A22B-Instruct-2507 , and Qwen3-235B-A22B-Thinking-2507TextUndisclosedC4; LMSYS-Chat-1M; ShareGPT; GSM8K; PRM800K; FinQA; WikiTableQuestions; Riddles; glaive-function-calling-v2; SciBench; tigerbot-kaggle-leetcodesolutions-en-2k; OpenBookQA; Advanced Reasoning Benchmark; Software Heritage; Khan Academy Math Keywords; WildChat-1M; Nemotron-Personas-USAgpt-oss-120b; Mixtral-8x22B-Instruct-v0.1; Qwen3-235B-A22B-Instruct-2507; Qwen3-235B-A22B-Thinking-2507
Synthetic Long Context from Qwen3-235B-A22B-Instruct-2507TextUndisclosedCORE; PG-19; DOAB CC BY & CC BY-SA subset; NDLTDQwen3-235B-A22B-Instruct-2507
Synthetic Tool Use Interactive Agent from gpt-oss-120b, DeepSeek-R1-0528, Qwen3-32B, and Qwen3-235B-A22B-Thinking-2507TextUndisclosedNVIDIA Internalgpt-oss-120b; DeepSeek-R1-0528; Qwen3-32B; and Qwen3-235B-A22B-Thinking-2507
Synthetic STEM from Qwen3-235B-A22B-Thinking-2507TextUndisclosedICHO-IPH0; Physics Big; Scale HLE; OpenMathReasoning; OpenCodeReasoningQwen3-235B-A22B-Thinking-2507
Synthetic DocFinQA and SWE-smith from Qwen3-Coder-480B-A35B-Instruct and Kimi-K2-ThinkingTextUndisclosedDocFinQA; SWE-smithQwen3-Coder-480B-A35B-Instruct; Kimi-K2-Thinking
Synthetic Math from gpt-oss-120b and Qwen2.5-32B-InstructTextUndisclosed\-gpt-oss-120b; Qwen2.5-32B-Instruct
Synthetic Essential-Web from gpt-oss-120bTextUndisclosedEssential-Webgpt-oss-120b
Synthetic Scale HLE from gpt-oss-120bTextUndisclosedScale HLEgpt-oss-120b
Synthetic CDQuestions from gpt-oss-120bTextUndisclosedCDQuestionsgpt-oss-120b
Synthetic Stack Exchange from gpt-oss-120bTextUndisclosedStack Exchangegpt-oss-120b
Synthetic GPQA from gpt-oss-120b and Qwen2.5-32B-InstructTextUndisclosedStack Exchangegpt-oss-120b; Qwen2.5-32B-Instruct
Synthetic Vedantu from gpt-oss-120bTextUndisclosedVedantugpt-oss-120b
Synthetic SWE-Gym and R2E-Gym-Subset from Qwen3-Coder-480B-A35B-InstructTextUndisclosedSWE-Gym; R2E-Gym-SubsetQwen3-Coder-480B-A35B-Instruct
Synthetic SWE-Gym from Qwen3-Coder-480B-A35B-InstructTextUndisclosedSWE-GymQwen3-Coder-480B-A35B-Instruct
Synthetic SWE-Gym and R2E-Gym-Subset from DeepSeek-R1-0528TextUndisclosedSWE-Gym; R2E-Gym-SubsetDeepSeek-R1-0528
Synthetic HelpSteer, LMSYS-Chat-1M, and Nemotron-Personas-USA from gpt-oss-120b, Qwen3-235B-A22B-Instruct-2507, and Qwen3-235B-A22B-Thinking-2507TextUndisclosedHelpSteer2; HelpSteer3; LMSYS-Chat-1M; Nemotron-Personas-USAgpt-oss-120b; Qwen3-235B-A22B-Instruct-2507; Qwen3-235B-A22B-Thinking-2507
Synthetic Structured Outputs from Qwen3-30B-A3B-Instruct-2507, Qwen3-30B-A3B-Thinking-2507, Qwen3-235B-A22B-Instruct-2507, and Qwen3-235B-A22B-Thinking-2507TextUndisclosed\-Qwen3-30B-A3B-Instruct-2507; Qwen3-30B-A3B-Thinking-2507; Qwen3-235B-A22B-Instruct-2507; Qwen3-235B-A22B-Thinking-2507
Synthetic Search STEM MCQ from Qwen3-235B-A22B and DeepSeek-R1-0528TextUndisclosed\-Qwen3-235B-A22B; DeepSeek-R1-0528
Synthetic Search STEM OPENQ from DeepSeek-R1-0528TextUndisclosed\-DeepSeek-R1-0528
Synthetic OpenSTEM from Qwen2.5-32B-Instruct and DeepSeek-R1-0528TextUndisclosed\-Qwen2.5-32B-Instruct; DeepSeek-R1-0528
Synthetic MCQ from Qwen2.5-32B-Instruct and DeepSeek-R1-0528TextUndisclosed\-Qwen2.5-32B-Instruct; DeepSeek-R1-0528
Synthetic MCQ10 from DeepSeek-R1-0528TextUndisclosed\-DeepSeek-R1-0528
Synthetic MCQ4 from Qwen3-235B-A22B, DeepSeek-R1-0528, and Qwen3-235B-A22B-Instruct-2507TextUndisclosed\-Qwen3-235B-A22B; DeepSeek-R1-0528; Qwen3-235B-A22B-Instruct-2507
Synthetic OpenMathReasoning from gpt-oss-120b and Qwen2.5-32B-InstructTextUndisclosedOpenMathReasoninggpt-oss-120b; Qwen2.5-32B-Instruct
Synthetic Offline Search MCQA HLE from DeepSeek-R1-0528TextUndisclosed\-DeepSeek-R1-0528
Synthetic Offline Search MCQA GPQA from Qwen3-235B-A22B and DeepSeek-R1-0528TextUndisclosed\-Qwen3-235B-A22B; DeepSeek-R1-0528
Synthetic Human Preference from QwQ-32B, Qwen3-30B-A3B, Qwen3-235B-A22B, Qwen3-235B-A22B-Instruct-2507, Mistral-Small-3.1-24B-Instruct-2503, Mistral-Small-3.2-24B-Instruct-2506, MiniMax-M1-80k, MiniMax-M1-40k, Kimi-K2-Instruct, DeepSeek-V3-0324, DeepSeek-R1-0528TextUndisclosed\-QwQ-32B; Qwen3-30B-A3B; Qwen3-235B-A22B; Qwen3-235B-A22B-Instruct-2507; Mistral-Small-3.1-24B-Instruct-2503; Mistral-Small-3.2-24B-Instruct-2506; MiniMax-M1-80k; MiniMax-M1-40k; Kimi-K2-Instruct; DeepSeek-V3-0324; DeepSeek-R1-0528
Synthetic WildChat-1M and arena-human-preference-140k from DeepSeek-R1, gemma-2-2b-it, gemma-3-27b-it, gpt-oss-20b, gpt-oss-120b, Mistral-7B-Instruct-v0.3, Mixtral-8x22B-Instruct-v0.1, Nemotron-4-340B-Instruct, NVIDIA-Nemotron-Nano-9B-v2, Phi-4-mini-instruct, Phi-3-small-8k-instruct, Phi-3-medium-4k-instruct, Qwen3-235B-A22B, QwQ-32BTextUndisclosedWildChat-1M; arena-human-preference-140kDeepSeek-R1; gemma-2-2b-it; gemma-3-27b-it; gpt-oss-20b; gpt-oss-120b; Mistral-7B-Instruct-v0.3; Mixtral-8x22B-Instruct-v0.1; Nemotron-4-340B-Instruct; NVIDIA-Nemotron-Nano-9B-v2; Phi-4-mini-instruct; Phi-3-small-8k-instruct; Phi-3-medium-4k-instruct; Qwen3-235B-A22B; QwQ-32B
Synthetic Safety from DeepSeek-R1-0528, gpt-oss-120b, DeepSeek-R1-Distill-Qwen-7B, and Mixtral-8x7B-v0.1TextUndisclosedNemotron Content Safety Dataset V2; Gretel Synthetic Safety Alignment Dataset; RedTeam-2K; Malicious Tasks;DeepSeek-R1-0528; gpt-oss-120b; DeepSeek-R1-Distill-Qwen-7B; Qwen3-30B-A3B-Thinking-2507; Qwen3-235B-A22B-Instruct-2507; Mixtral-8x7B-v0.1
Synthetic Code from Qwen3-32BTextUndisclosedEnglish Common Crawl; English Common Crawl 1.1Qwen3-32B
Synthetic OpenCodeReasoning from DeepSeek-R1TextUndisclosedOpenCodeReasoningDeepSeek-R1
Synthetic LIMO from DeepSeek-R1-0528TextUndisclosedLIMODeepSeek-R1-0528
Synthetic SCP from DeepSeek-R1-0528TextUndisclosedSCP-116KDeepSeek-R1-0528
Synthetic Stack Exchange from DeepSeek-R1-0528TextUndisclosedStack ExchangeDeepSeek-R1-0528
Synthetic Common Crawl from Qwen3-30B-A3BTextUndisclosedCommon CrawlQwen3-30B-A3B
Synthetic Wikipedia from Qwen3-30B-A3BTextUndisclosedWikimediaQwen3-30B-A3B
Synthetic Essential-Web from Qwen3-30B-A3B and Qwen3-235B-A22B-Thinking-2507TextUndisclosedEssential-WebQwen3-30B-A3B; Qwen3-235B-A22B-Thinking-2507
Synthetic Textbook Math from Qwen3-30B-A3B, Qwen3-235B-A22B, phi-4TextUndisclosedCommon Crawl; FineMathQwen3-30B-A3B; Qwen3-235B-A22B; phi-4
Synthetic Math and Code from DeepSeek-R1 and DeepSeek-R1-0528TextUndisclosedMagicoder-Evol-Instruct-110K; opc-sft-stage2; TACO; OpenCodeReasoning; OpenMathReasoning; NuminaMath CoTDeepSeek-R1; DeepSeek-R1-0528
Synthetic Nemotron-Personas-USA from gpt-oss-120b and Qwen3-8BTextUndisclosedNemotron-Personas-USAgpt-oss-120b; Qwen3-8B

Training Dataset

Dataset\# of Tokens in Nemotron Nano 2\# of Tokens in Nemotron 3 Nano
English Common Crawl3,360,110,334,8183,456,523,212,210
English Synthetic CC1,949,464,641,1234,340,740,677,920
Crawl++360,389,153,262360,389,153,262
Math124,606,230,663154,217,502,165
Synthetic Math73,007,767,15573,007,767,155
Code747,409,228,7241,043,856,922,136
Synthetic Code175,067,553,293453,117,917,176
Common Crawl Code0263,072,374,097
English Wiki17,349,266,92617,349,266,926
Synthetic Wiki07,850,648,552
Books00
Papers191,586,493,365191,586,493,365
PDF-to-text141,096,578,533141,096,578,533
Code SFT60,025,726,817102,863,752,325
STEM SFT272,680,426,295359,826,214,274
General SFT6,057,478,6456,057,478,645
Tool-Calling SFT026,244,716,867
Multilingual2,172,261,909,3501,743,892,490,859
Synthetic multilingual997,710,364,950595,140,661,135
Total10,648,823,153,91913,336,833,827,602

We use a considerable amount of synthetic data. Out of 10.6 trillion tokens, 3,534,013,958,278 tokens are synthetically generated.

We extracted data for fifteen languages from the following three Common Crawl snapshots: CC-MAIN-2024-51, CC-MAIN-2025-08, CC-MAIN-2025-18. The fifteen languages included were Arabic, Chinese, Danish, Dutch, French, German, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, Swedish, and Thai. As we did not have reliable multilingual model-based quality classifiers available, we applied just heuristic filtering insteadβ€”similar to what we did for lower quality English data in the Nemotron-CC pipeline, but selectively removing some filters for some languages that did not work well. Deduplication was done in the same way as for Nemotron-CC. Additionally, we used data from Wikipedia and FineWeb-2 (Penedo et al., 2025\) for these fifteen languages as well as four additional languages: Czech, Finnish, Hebrew, and Hindi.

LanguageTotal Tokens
Arabic118,056,362,726
Danish117,747,321,618
German146,613,691,781
Spanish469,156,575,409
French139,982,002,289
Italian298,858,370,174
Japanese682,755,693,336
Korean127,099,747,538
Dutch89,041,592,681
Polish105,356,493,147
Portuguese243,249,275,089
Russian185,314,014,057
Swedish74,954,953,299
Thai160,778,944,467
Chinese211,007,236,689

We collect a total of 922,476,782,017 tokens of code in 43 different languages.

LanguageTokens
Assembly750,628,764
C42,657,300,868
C\#56,153,329,307
C++67,773,701,658
CommonLisp263,234,672
CSS38,848,760,035
Cuda400,222,993
Dart3,816,960,470
Dockerfile474,958,084
Fortran1,105,049,387
Go8,332,419,480
Haskell1,294,613,669
HTML69,082,117,487
Java131,440,465,822
JavaScript75,573,420,861
JSON15,366,881,241
Julia621,046,949
JupyterNotebook2,241,893,197
Lua4,146,420,802
Makefile12,640,010,879
Markdown64,796,743,311
Mathematica320,504,225
OmniversePython26,946,093
Pascal1,625,013,876
Perl1,575,314,434
PHP61,575,339,005
Python126,916,727,384
R19,811,381,935
reStructuredText1,779,876,391
Ruby6,446,962,615
Rust4,438,640,533
Scala3,343,959,154
Shell18,758,779,250
SQL23,205,633,085
Swift5,976,714,881
SystemVerilog233,056,185
TeX7,347,157,527
TypeScript15,657,838,582
Verilog811,884,369
VHDL648,401,444
VisualBasic.NET1,005,680,881
XML12,616,779,741
YAML10,574,010,491

Language Distribution in Post-Training

For our post-training recipe, we focused on 5 main languages in addition to English: Spanish, French, Japanese, Italian, German. Those languages were represented in the form of multilingual reasoning and translation task.

The following table depicts our sample distribution for the 6 languages and 5 translation pairs.

LanguageSize
English16.2 M
Italian0.252M
German0.252M
Spanish0.252M
French0.252M
Japanese0.252M
English \<-\> Italian108k
English \<-\> German108k
English \<-\> Spanish108k
English \<-\> French108k
English \<-\> Japanese108k

Evaluation Dataset

  • β€”Data Collection Method by dataset: Hybrid: Human, Synthetic
  • β€”Labeling Method by dataset: Hybrid: Automated, Human, Synthetic

Inference

  • β€”Acceleration Engine: HF, vLLM, TRT-LLM, SGLang, Llama.cpp
  • β€”Test Hardware: NVIDIA A100 80GB, H100 80GB, B200 192GB, RTX PRO 6000 96GB, Jetson Thor, DGX Spark

Ethical Considerations

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 Trustworthy AI 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.

For more detailed information on ethical considerations for this model, please see the Model Card++ subcards: Bias, Explainability, Privacy, and Safety.

Please report model quality, risk, security vulnerabilities or NVIDIA AI Concerns here.

Benchmark Results

Reasoning Evaluations (BF16 Precision)

BenchmarkElastic-12B (2.0A)Elastic-23B (2.8A)Elastic-30B (3.6A)NanoV3-30B (3.6A)Qwen3-30B-A3B (3.3A)
AIME-202578.5485.6388.5487.9280.00
GPQA57.3969.8272.1073.1170.83
LiveCodeBench v555.2467.3072.7071.7568.25
MMLU-Pro68.2876.0778.6378.8681.11
IFBench (prompt)64.0367.4370.5870.8243.28
IFBench (instruct)67.3970.7573.9673.1946.57
Tau-Airline24.6738.6743.3344.6752.67
Tau-Retail49.1255.5659.3653.5156.43
Tau-Telecom29.3330.9933.3330.9928.36

Key observations: Elastic-30B matches or exceeds the parent NanoV3-30B on most benchmarks (e.g., AIME-2025: 88.54 vs 87.92, IFBench instruct: 73.96 vs 73.19, Tau-Retail: 59.36 vs 53.51). Both Elastic-23B and Elastic-12B outperform Qwen3-30B-A3B on AIME-2025 and IFBench by large margins.

Citation

If you use this model, please cite our paper, accepted to ICML 2026:

bibtex
@inproceedings{taghibakhshi2026starelastic,
  title     = {Star Elastic: Many-in-One Reasoning {LLMs} with Efficient Budget Control},
  author    = {Taghibakhshi, Ali and Cai, Ruisi and Muralidharan, Saurav and Turuvekere Sreenivas, Sharath and Mahabaleshwarkar, Ameya and Chochowski, Marcin and Bercovich, Akhiad and Zilberstein, Ran and El-Yaniv, Ran and Geifman, Yonatan and Korzekwa, Daniel and Suhara, Yoshi and Olabiyi, Oluwatobi and Aithal, Ashwath and Tajbakhsh, Nima and Molchanov, Pavlo},
  booktitle = {Proceedings of the 43rd International Conference on Machine Learning},
  series    = {ICML 2026},
  year      = {2026},
  note      = {Accepted}
}
bibtex
@article{taghibakhshi2025nemotronelastic,
  title   = {Nemotron Elastic: Towards Efficient Many-in-One Reasoning LLMs},
  author  = {Taghibakhshi, Ali and Turuvekere Sreenivas, Sharath and Muralidharan, Saurav and Cai, Ruisi and Chochowski, Marcin and Mahabaleshwarkar, Ameya Sunil and Suhara, Yoshi and Olabiyi, Oluwatobi and Korzekwa, Daniel and Patwary, Mostofa and Shoeybi, Mohammad and Kautz, Jan and Catanzaro, Bryan and Aithal, Ashwath and Tajbakhsh, Nima and Molchanov, Pavlo},
  journal = {arXiv preprint arXiv:2511.16664},
  year    = {2025},
  url     = {https://arxiv.org/abs/2511.16664}
}
bibtex
@article{blakeman2025nemotron,
  title   = {Nemotron 3 Nano: Open, Efficient Mixture-of-Experts Hybrid Mamba-Transformer Model for Agentic Reasoning},
  author  = {Blakeman, Aaron and Grattafiori, Aaron and Basant, Aarti and Gupta, Abhibha and Khattar, Abhinav and Renduchintala, Adi and Vavre, Aditya and Shukla, Akanksha and Bercovich, Akhiad and Ficek, Aleksander and others},
  journal = {arXiv preprint arXiv:2512.20848},
  year    = {2025},
  url     = {https://arxiv.org/abs/2512.20848}
}