Text Generation
Transformers
Safetensors
PyTorch
nemotron_h
nvidia
nemotron-3
latent-moe
mtp
conversational
custom_code
Eval Results
Instructions to use jsfj/NemoTron-SOTA-test-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jsfj/NemoTron-SOTA-test-2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jsfj/NemoTron-SOTA-test-2", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("jsfj/NemoTron-SOTA-test-2", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("jsfj/NemoTron-SOTA-test-2", trust_remote_code=True, device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use jsfj/NemoTron-SOTA-test-2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jsfj/NemoTron-SOTA-test-2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jsfj/NemoTron-SOTA-test-2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jsfj/NemoTron-SOTA-test-2
- SGLang
How to use jsfj/NemoTron-SOTA-test-2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "jsfj/NemoTron-SOTA-test-2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jsfj/NemoTron-SOTA-test-2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "jsfj/NemoTron-SOTA-test-2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jsfj/NemoTron-SOTA-test-2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use jsfj/NemoTron-SOTA-test-2 with Docker Model Runner:
docker model run hf.co/jsfj/NemoTron-SOTA-test-2
Duplicate from nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
Browse filesCo-authored-by: Li Ding <dmax123@users.noreply.huggingface.co>
This view is limited to 50 files because it contains too many changes. See raw diff
- .eval_results/gpqa.yaml +9 -0
- .eval_results/gpqa_with_tools.yaml +10 -0
- .eval_results/hle.yaml +9 -0
- .eval_results/hle_with_tools.yaml +10 -0
- .eval_results/mmlu_pro.yaml +9 -0
- .eval_results/swe_bench_verified.yaml +29 -0
- .eval_results/terminal-bench_2.0.yaml +9 -0
- .gitattributes +36 -0
- README.md +924 -0
- __init__.py +0 -0
- accuracy_chart.png +0 -0
- bias.md +11 -0
- chat_template.jinja +209 -0
- config.json +69 -0
- configuration_nemotron_h.py +410 -0
- explainability.md +14 -0
- generation_config.json +13 -0
- model-00001-of-00050.safetensors +3 -0
- model-00002-of-00050.safetensors +3 -0
- model-00003-of-00050.safetensors +3 -0
- model-00004-of-00050.safetensors +3 -0
- model-00005-of-00050.safetensors +3 -0
- model-00006-of-00050.safetensors +3 -0
- model-00007-of-00050.safetensors +3 -0
- model-00008-of-00050.safetensors +3 -0
- model-00009-of-00050.safetensors +3 -0
- model-00010-of-00050.safetensors +3 -0
- model-00011-of-00050.safetensors +3 -0
- model-00012-of-00050.safetensors +3 -0
- model-00013-of-00050.safetensors +3 -0
- model-00014-of-00050.safetensors +3 -0
- model-00015-of-00050.safetensors +3 -0
- model-00016-of-00050.safetensors +3 -0
- model-00017-of-00050.safetensors +3 -0
- model-00018-of-00050.safetensors +3 -0
- model-00019-of-00050.safetensors +3 -0
- model-00020-of-00050.safetensors +3 -0
- model-00021-of-00050.safetensors +3 -0
- model-00022-of-00050.safetensors +3 -0
- model-00023-of-00050.safetensors +3 -0
- model-00024-of-00050.safetensors +3 -0
- model-00025-of-00050.safetensors +3 -0
- model-00026-of-00050.safetensors +3 -0
- model-00027-of-00050.safetensors +3 -0
- model-00028-of-00050.safetensors +3 -0
- model-00029-of-00050.safetensors +3 -0
- model-00030-of-00050.safetensors +3 -0
- model-00031-of-00050.safetensors +3 -0
- model-00032-of-00050.safetensors +3 -0
- model-00033-of-00050.safetensors +3 -0
.eval_results/gpqa.yaml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: Idavidrein/gpqa
|
| 3 |
+
task_id: diamond
|
| 4 |
+
value: 79.23
|
| 5 |
+
date: '2026-03-12'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 8 |
+
name: Model Card
|
| 9 |
+
user: SaylorTwift
|
.eval_results/gpqa_with_tools.yaml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: Idavidrein/gpqa
|
| 3 |
+
task_id: diamond
|
| 4 |
+
value: 82.70
|
| 5 |
+
date: '2026-03-12'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 8 |
+
name: Model Card
|
| 9 |
+
user: SaylorTwift
|
| 10 |
+
notes: "With tools"
|
.eval_results/hle.yaml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: cais/hle
|
| 3 |
+
task_id: hle
|
| 4 |
+
value: 18.26
|
| 5 |
+
date: '2026-03-12'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 8 |
+
name: Model Card
|
| 9 |
+
user: SaylorTwift
|
.eval_results/hle_with_tools.yaml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: cais/hle
|
| 3 |
+
task_id: hle
|
| 4 |
+
value: 22.82
|
| 5 |
+
date: '2026-03-12'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 8 |
+
name: Model Card
|
| 9 |
+
user: SaylorTwift
|
| 10 |
+
notes: "With tools"
|
.eval_results/mmlu_pro.yaml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: TIGER-Lab/MMLU-Pro
|
| 3 |
+
task_id: mmlu_pro
|
| 4 |
+
value: 83.73
|
| 5 |
+
date: '2026-03-12'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 8 |
+
name: Model Card
|
| 9 |
+
user: SaylorTwift
|
.eval_results/swe_bench_verified.yaml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: SWE-bench/SWE-bench_Verified
|
| 3 |
+
task_id: swe_bench_%_resolved
|
| 4 |
+
value: 60.47
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 7 |
+
name: Model Card
|
| 8 |
+
user: nielsr
|
| 9 |
+
notes: OpenHands harness
|
| 10 |
+
|
| 11 |
+
- dataset:
|
| 12 |
+
id: SWE-bench/SWE-bench_Verified
|
| 13 |
+
task_id: swe_bench_%_resolved
|
| 14 |
+
value: 59.20
|
| 15 |
+
source:
|
| 16 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 17 |
+
name: Model Card
|
| 18 |
+
user: nielsr
|
| 19 |
+
notes: OpenCode harness
|
| 20 |
+
|
| 21 |
+
- dataset:
|
| 22 |
+
id: SWE-bench/SWE-bench_Verified
|
| 23 |
+
task_id: swe_bench_%_resolved
|
| 24 |
+
value: 53.73
|
| 25 |
+
source:
|
| 26 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 27 |
+
name: Model Card
|
| 28 |
+
user: nielsr
|
| 29 |
+
notes: Codex harness
|
.eval_results/terminal-bench_2.0.yaml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: harborframework/terminal-bench-2.0
|
| 3 |
+
task_id: terminalbench_2
|
| 4 |
+
value: 31.00
|
| 5 |
+
date: '2026-03-12'
|
| 6 |
+
source:
|
| 7 |
+
url: https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 8 |
+
name: Model Card
|
| 9 |
+
user: SaylorTwift
|
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,924 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: other
|
| 4 |
+
license_name: nvidia-nemotron-open-model-license
|
| 5 |
+
license_link: >-
|
| 6 |
+
https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-nemotron-open-model-license/
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
- fr
|
| 11 |
+
- es
|
| 12 |
+
- it
|
| 13 |
+
- de
|
| 14 |
+
- ja
|
| 15 |
+
- zh
|
| 16 |
+
tags:
|
| 17 |
+
- nvidia
|
| 18 |
+
- pytorch
|
| 19 |
+
- nemotron-3
|
| 20 |
+
- latent-moe
|
| 21 |
+
- mtp
|
| 22 |
+
datasets:
|
| 23 |
+
- nvidia/nemotron-post-training-v3
|
| 24 |
+
- nvidia/nemotron-pre-training-datasets
|
| 25 |
+
track_downloads: true
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
# NVIDIA-Nemotron-3-Super-120B-A12B-BF16
|
| 29 |
+
|
| 30 |
+
<div align="center" style="line-height: 1;">
|
| 31 |
+
<a href="https://build.nvidia.com/nvidia/nemotron-3-super-120b-a12b" target="_blank" style="margin: 2px;">
|
| 32 |
+
<img alt="Chat" src="https://img.shields.io/badge/🤖Chat-Nemotron_3_Super-536af5?color=76B900&logoColor=white" style="display: inline-block; vertical-align: middle;"/>
|
| 33 |
+
</a>
|
| 34 |
+
<a href="https://research.nvidia.com/labs/nemotron/files/NVIDIA-Nemotron-3-Super-Technical-Report.pdf" target="_blank" style="margin: 2px;">
|
| 35 |
+
<img alt="Paper" src="https://img.shields.io/badge/📝Paper-Read Now!-536af5?color=76B900&logoColor=white" style="display: inline-block; vertical-align: middle;"/>
|
| 36 |
+
</a>
|
| 37 |
+
<a href="https://huggingface.co/collections/nvidia/nemotron-pre-training-datasets" target="_blank" style="margin: 2px;">
|
| 38 |
+
<img alt="Pre-Training Datasets" src="https://img.shields.io/badge/🗄️_Pre--Training_Datasets-Available_Here-76B900?logoColor=white" style="display: inline-block; vertical-align: middle;"/>
|
| 39 |
+
</a>
|
| 40 |
+
<a href="https://huggingface.co/collections/nvidia/nemotron-post-training-v3" target="_blank" style="margin: 2px;">
|
| 41 |
+
<img alt="Post-Training Datasets" src="https://img.shields.io/badge/🗄️_Post--Training_Datasets-Available_Here-76B900?logoColor=white" style="display: inline-block; vertical-align: middle;"/>
|
| 42 |
+
</a>
|
| 43 |
+
</div>
|
| 44 |
+
<div align="center" style="line-height: 1;">
|
| 45 |
+
<a href="https://developer.nvidia.com/nemotron" target="_blank" style="margin: 2px;">
|
| 46 |
+
<img alt="Homepage" src="https://img.shields.io/badge/🏠Nemotron Developer Page-Learn More Here!-536af5?color=76B900&logoColor=white" style="display: inline-block; vertical-align: middle;"/>
|
| 47 |
+
</a>
|
| 48 |
+
<a href="https://discord.gg/9xpKQtVvrk" target="_blank" style="margin: 2px;">
|
| 49 |
+
<img alt="Discord" src="https://img.shields.io/badge/Discord-NVIDIA%20AI%20Developer-7289da?logo=discord&logoColor=white&color=7289da" style="display: inline-block; vertical-align: middle;"/>
|
| 50 |
+
</a>
|
| 51 |
+
</div>
|
| 52 |
+
|
| 53 |
+
<div align="center" style="line-height: 1;">
|
| 54 |
+
<a href="https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-nemotron-open-model-license/" style="margin: 2px;">
|
| 55 |
+
<img alt="License" src="https://img.shields.io/badge/License-NVIDIA Nemotron Open Model License-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
|
| 56 |
+
</a>
|
| 57 |
+
</div>
|
| 58 |
+
|
| 59 |
+

|
| 60 |
+
|
| 61 |
+
## Model Summary
|
| 62 |
+
|
| 63 |
+
| | |
|
| 64 |
+
|:---|:---|
|
| 65 |
+
| **Total Parameters** | 120B (12B active) |
|
| 66 |
+
| **Architecture** | LatentMoE - Mamba-2 + MoE + Attention hybrid with Multi-Token Prediction (MTP) |
|
| 67 |
+
| **Context Length** | Up to 1M tokens |
|
| 68 |
+
| **Minimum GPU Requirement** | 8× H100-80GB |
|
| 69 |
+
| **Supported Languages** | English, French, German, Italian, Japanese, Spanish, Chinese |
|
| 70 |
+
| **Best For** | Agentic workflows, long-context reasoning, high-volume workloads (e.g. IT ticket automation), tool use, RAG |
|
| 71 |
+
| **Reasoning Mode** | Configurable on/off via chat template (`enable_thinking=True/False`) |
|
| 72 |
+
| **License** | [NVIDIA Nemotron Open Model License](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-nemotron-open-model-license/) |
|
| 73 |
+
| **Release Date** | March 11, 2026 |
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
## Quick Start
|
| 77 |
+
|
| 78 |
+
> Use `temperature=1.0` and `top_p=0.95` across **all tasks and serving backends** — reasoning, tool calling, and general chat alike.
|
| 79 |
+
|
| 80 |
+
For more details on how to deploy and use the model - see the [Quick Start Guide](#quick-start-guide) below!
|
| 81 |
+
|
| 82 |
+
> *For running Nemotron 3 Super on a single B200 or DGX Spark - please see: [NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4)*
|
| 83 |
+
|
| 84 |
+
## Model Overview
|
| 85 |
+
|
| 86 |
+
**Model Developer:** NVIDIA Corporation
|
| 87 |
+
|
| 88 |
+
**Model Dates:** December 2025 - March 2026
|
| 89 |
+
|
| 90 |
+
**Data Freshness:**
|
| 91 |
+
|
| 92 |
+
* The post-training data has a cutoff date of February 2026.
|
| 93 |
+
* The pre-training data has a cutoff date of June 2025.
|
| 94 |
+
|
| 95 |
+
### What is Nemotron?
|
| 96 |
+
|
| 97 |
+
NVIDIA Nemotron™ is a family of open models with open weights, training data, and recipes, delivering leading efficiency and accuracy for building specialized AI agents.
|
| 98 |
+
|
| 99 |
+
## Description
|
| 100 |
+
|
| 101 |
+
**Nemotron-3-Super-120B-A12B-BF16** is a large language model (LLM) trained by NVIDIA, designed to deliver strong agentic, reasoning, and conversational capabilities. It is optimized for collaborative agents and high-volume workloads such as IT ticket automation. Like other models in the family, it responds to user queries and tasks by first generating a reasoning trace and then concluding with a final response. The model's reasoning capabilities can be configured through a flag in the chat template.
|
| 102 |
+
|
| 103 |
+
The model employs a hybrid **Latent Mixture-of-Experts (LatentMoE)** architecture, utilizing interleaved Mamba-2 and MoE layers, along with select Attention layers. Distinct from the Nano model, the Super model incorporates **Multi-Token Prediction (MTP)** layers for faster text generation and improved quality, and it is trained using **NVFP4** quantization to maximize compute efficiency. The model has **12B active parameters** and **120B parameters in total**.
|
| 104 |
+
|
| 105 |
+
The supported languages include: English, French, German, Italian, Japanese, Spanish, and Chinese
|
| 106 |
+
|
| 107 |
+
This model is ready for commercial use.
|
| 108 |
+
|
| 109 |
+
## License/Terms of Use
|
| 110 |
+
|
| 111 |
+
**Governing Download Terms:** Use of this model is governed by the [NVIDIA Nemotron Open Model License](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-nemotron-open-model-license/).
|
| 112 |
+
|
| 113 |
+
**Governing Download Terms with NIM:** The NIM container is governed by the [NVIDIA Software License Agreement](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-software-license-agreement/) and [Product-Specific Terms for AI Products](https://www.nvidia.com/en-us/agreements/enterprise-software/product-specific-terms-for-ai-products/). Use of this model is governed by the [NVIDIA Nemotron Open Model License](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-nemotron-open-model-license/).
|
| 114 |
+
|
| 115 |
+
### Benchmarks
|
| 116 |
+
|
| 117 |
+
| **Benchmark** | **Nemotron 3 Super** | **Qwen3.5-122B-A10B** | **GPT-OSS-120B** |
|
| 118 |
+
|---|---|---|---|
|
| 119 |
+
| **General Knowledge** | | | |
|
| 120 |
+
| MMLU-Pro | 83.73 | 86.70 | 81.00 |
|
| 121 |
+
| **Reasoning** | | | |
|
| 122 |
+
| AIME25 (no tools) | 90.21 | 90.36 | 92.50 |
|
| 123 |
+
| HMMT Feb25 (no tools) | 93.67 | 91.40 | 90.00 |
|
| 124 |
+
| HMMT Feb25 (with tools) | 94.73 | 89.55 | — |
|
| 125 |
+
| GPQA (no tools) | 79.23 | 86.60 | 80.10 |
|
| 126 |
+
| GPQA (with tools) | 82.70 | — | 80.09 |
|
| 127 |
+
| LiveCodeBench (v5 2024-07↔2024-12) | 81.19 | 78.93 | 88.00 |
|
| 128 |
+
| SciCode (subtask) | 42.05 | 42.00 | 39.00 |
|
| 129 |
+
| HLE (no tools) | 18.26 | 25.30 | 14.90 |
|
| 130 |
+
| HLE (with tools) | 22.82 | — | 19.0 |
|
| 131 |
+
| **Agentic** | | | |
|
| 132 |
+
| Terminal Bench (hard subset) | 25.78 | 26.80 | 24.00 |
|
| 133 |
+
| Terminal Bench Core 2.0 | 31.00 | 37.50 | 18.70 |
|
| 134 |
+
| SWE-Bench (OpenHands) | 60.47 | 66.40 | 41.9 |
|
| 135 |
+
| SWE-Bench (OpenCode) | 59.20 | 67.40 | — |
|
| 136 |
+
| SWE-Bench (Codex) | 53.73 | 61.20 | — |
|
| 137 |
+
| SWE-Bench Multilingual (OpenHands) | 45.78 | — | 30.80 |
|
| 138 |
+
| **TauBench V2** | | | |
|
| 139 |
+
| Airline | 56.25 | 66.0 | 49.2 |
|
| 140 |
+
| Retail | 62.83 | 62.6 | 67.80 |
|
| 141 |
+
| Telecom | 64.36 | 95.00 | 66.00 |
|
| 142 |
+
| Average | 61.15 | 74.53 | 61.0 |
|
| 143 |
+
| BrowseComp with Search | 31.28 | — | 33.89 |
|
| 144 |
+
| BIRD Bench | 41.80 | — | 38.25 |
|
| 145 |
+
| **Chat & Instruction Following** | | | |
|
| 146 |
+
| IFBench (prompt) | 72.56 | 73.77 | 68.32 |
|
| 147 |
+
| Scale AI Multi-Challenge | 55.23 | 61.50 | 58.29 |
|
| 148 |
+
| Arena-Hard-V2 | 73.88 | 75.15 | 90.26 |
|
| 149 |
+
| **Long Context** | | | |
|
| 150 |
+
| AA-LCR | 58.31 | 66.90 | 51.00 |
|
| 151 |
+
| RULER @ 256k | 96.30 | 96.74 | 52.30 |
|
| 152 |
+
| RULER @ 512k | 95.67 | 95.95 | 46.70 |
|
| 153 |
+
| RULER @ 1M | 91.75 | 91.33 | 22.30 |
|
| 154 |
+
| **Multilingual** | | | |
|
| 155 |
+
| MMLU-ProX (avg over langs) | 79.36 | 85.06 | 76.59 |
|
| 156 |
+
| WMT24++ (en→xx) | 86.67 | 87.84 | 88.89 |
|
| 157 |
+
|
| 158 |
+
All evaluation results were collected via [Nemo Evaluator SDK](https://github.com/NVIDIA-NeMo/Evaluator) and for most benchmarks, the [Nemo Skills Harness](https://github.com/NVIDIA-NeMo/Skills). For reproducibility purposes, more details on the evaluation settings can be found in the [Nemo Evaluator SDK configs folder](https://github.com/NVIDIA-NeMo/Evaluator/tree/main/packages/nemo-evaluator-launcher/examples/nemotron/nemotron-3-super) and the [reproducibility tutorial for Nemotron 3 Super](https://github.com/NVIDIA-NeMo/Evaluator/blob/main/packages/nemo-evaluator-launcher/examples/nemotron/nemotron-3-super/reproducibility.md). The open source container on Nemo Skills packaged via NVIDIA's Nemo Evaluator SDK used for evaluations can be found [here](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/eval-factory/containers/nemo_skills). In addition to Nemo Skills, the evaluations also used dedicated open-source packaged containers for Tau-2 Bench (default prompt), Terminal Bench Hard (48 tasks), ScaleAI Multi Challenge Multi-turn Instruction Following, and Ruler.
|
| 159 |
+
|
| 160 |
+
The following benchmarks are not onboarded yet in our open source tools and for these we used either their official open source implementation or otherwise an internal scaffolding that we plan to open source in the future: SWE Bench Verified (OpenHands), SWE Bench Multilingual (OpenHands), BrowseComp with Search (internal implementation with Serp API), Terminal Bench Core 2.0 (Harbor).
|
| 161 |
+
|
| 162 |
+
### Deployment Geography: Global
|
| 163 |
+
|
| 164 |
+
### Use Case
|
| 165 |
+
|
| 166 |
+
NVIDIA-Nemotron-3-Super-120B-A12B-BF16 is a general purpose reasoning and chat model intended to be used in English, Code, and supported multilingual contexts. This model is optimized for collaborative agents and high-volume workloads. It is intended to be used by developers designing AI Agent systems, chatbots, RAG systems, and other AI-powered applications. This model is also suitable for complex instruction-following tasks and long-context reasoning.
|
| 167 |
+
|
| 168 |
+
### Release Date
|
| 169 |
+
|
| 170 |
+
Hugging Face - 03/11/2026 via [Hugging Face](https://huggingface.co/collections/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16)
|
| 171 |
+
|
| 172 |
+
## Reference(s)
|
| 173 |
+
|
| 174 |
+
* [NVIDIA Nemotron 3 model family on Hugging Face](https://huggingface.co/collections/nvidia/nvidia-nemotron-v3)
|
| 175 |
+
* [NVIDIA Nemotron 3 Super Technical Report](https://research.nvidia.com/labs/nemotron/files/NVIDIA-Nemotron-3-Super-Technical-Report.pdf)
|
| 176 |
+
|
| 177 |
+
## Model Architecture
|
| 178 |
+
|
| 179 |
+
- **Architecture Type:** Mamba2-Transformer Hybrid Latent Mixture of Experts (LatentMoE) with Multi-Token Prediction (MTP)
|
| 180 |
+
- **Network Architecture:** Nemotron Hybrid LatentMoE
|
| 181 |
+
- **Number of model parameters:** 120B Total / 12B Active
|
| 182 |
+
|
| 183 |
+
## Model Design
|
| 184 |
+
|
| 185 |
+
The model utilizes the **LatentMoE** architecture, where tokens are projected into a smaller latent dimension for expert routing and computation, improving accuracy per byte. The Super model is pre-trained using NVFP4 quantization — the first model in the Nemotron 3 family trained at this precision. The majority of linear layers use NVFP4 for weights, activations, and gradients, while select layers (including latent projections, MTP layers, QKV/attention projections, and embeddings) are maintained in BF16 or MXFP8 for training stability. The model includes **Multi-Token Prediction (MTP)** layers using a shared-weight design across prediction heads. This improves training signal quality, enables faster inference via native speculative decoding, and supports more stable autoregressive drafting at longer draft lengths compared to independently trained offset heads.
|
| 186 |
+
|
| 187 |
+
## Training Methodology
|
| 188 |
+
|
| 189 |
+
Stage 1: Pre-Training
|
| 190 |
+
|
| 191 |
+
* [NVIDIA-Nemotron-3-Super-120B-A12B-Base-BF16](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-Base-BF16) model was pre-trained for over 25T tokens using crawled and synthetic code, math, science, and general knowledge data. Training leveraged NVFP4 quantization for efficiency. All datasets are disclosed in the [Training and Evaluation Datasets](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16#training-and-evaluation-datasets) section of this document. Major portions of the pre-training corpus are released in the [Nemotron-Pre-Training-Datasets](https://huggingface.co/collections/nvidia/nemotron-pre-training-datasets) collection.
|
| 192 |
+
* Software used for pre-training: [Megatron-LM](https://github.com/NVIDIA/Megatron-LM)
|
| 193 |
+
|
| 194 |
+
Stage 2: Supervised Fine-Tuning
|
| 195 |
+
|
| 196 |
+
* The model was further fine-tuned on synthetic code, math, science, tool calling, instruction following, structured outputs, and general knowledge data. This stage incorporated data designed to support long-range retrieval and multi-document aggregation. All datasets are disclosed in the [Training and Evaluation Datasets](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16#training-and-evaluation-datasets) section of this document. Major portions of the fine-tuning corpus are released in the [Nemotron-Post-Training-v3](https://huggingface.co/collections/nvidia/nemotron-post-training-v3) collection. [Data Designer](https://github.com/NVIDIA-NeMo/DataDesigner) is one of the libraries used to prepare these corpora.
|
| 197 |
+
|
| 198 |
+
Stage 3: Reinforcement Learning
|
| 199 |
+
|
| 200 |
+
* The model underwent multi-environment reinforcement learning using asynchronous GRPO (Group Relative Policy Optimization) across math, code, science, instruction following, multi-step tool use, multi-turn conversations, and structured output environments. It utilized an asynchronous RL architecture that fully decouples training from inference across separate GPU devices, leveraging in-flight weight updates and MTP to accelerate rollout generation. Conversational quality was further refined through RLHF. All datasets are disclosed in the *Training and Evaluation Datasets* section of this document. The RL environments and datasets are released as part of [NeMo Gym](https://github.com/NVIDIA-NeMo/Gym).
|
| 201 |
+
* Software used for reinforcement learning: [NeMo RL](https://github.com/NVIDIA-NeMo/RL), [NeMo Gym](https://github.com/NVIDIA-NeMo/Gym)
|
| 202 |
+
|
| 203 |
+
NVIDIA-Nemotron-3-Super-120B-A12B-BF16 model is a result of the above work.
|
| 204 |
+
|
| 205 |
+
The end-to-end training recipe is available in the [NVIDIA Nemotron Developer Repository](https://github.com/NVIDIA-NeMo/Nemotron). Evaluation results can be replicated using the [NeMo Evaluator SDK](https://github.com/NVIDIA-NeMo/Evaluator). [Data Designer](https://github.com/NVIDIA-NeMo/DataDesigner) is one of the libraries used to prepare the pre and post training datasets. More details on the datasets and synthetic data generation methods can be found in the technical report [NVIDIA Nemotron 3 Super Technical Report](https://research.nvidia.com/labs/nemotron/files/NVIDIA-Nemotron-3-Super-Technical-Report.pdf).
|
| 206 |
+
## Input
|
| 207 |
+
|
| 208 |
+
- **Input Type(s):** Text
|
| 209 |
+
- **Input Format(s):** String
|
| 210 |
+
- **Input Parameters:** One-Dimensional (1D): Sequences
|
| 211 |
+
- **Other Properties Related to Input:** Maximum context length up to 1M tokens. Supported languages include: English, French, German, Italian, Japanese, Spanish, and Chinese
|
| 212 |
+
|
| 213 |
+
## Output
|
| 214 |
+
|
| 215 |
+
- **Output Type(s):** Text
|
| 216 |
+
- **Output Format:** String
|
| 217 |
+
- **Output Parameters:** One-Dimensional (1D): Sequences
|
| 218 |
+
- **Other Properties Related to Output:** Maximum context length up to 1M tokens
|
| 219 |
+
|
| 220 |
+
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.
|
| 221 |
+
|
| 222 |
+
## Software Integration
|
| 223 |
+
|
| 224 |
+
- Runtime Engine(s): NeMo 25.11.01
|
| 225 |
+
- Supported Hardware Microarchitecture Compatibility: NVIDIA Ampere - A100; NVIDIA Blackwell; NVIDIA Hopper - H100-80GB
|
| 226 |
+
- Operating System(s): Linux
|
| 227 |
+
|
| 228 |
+
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.
|
| 229 |
+
|
| 230 |
+
## Model Version(s)
|
| 231 |
+
|
| 232 |
+
* v1.0 - GA
|
| 233 |
+
|
| 234 |
+
## Quick Start Guide
|
| 235 |
+
|
| 236 |
+
For each inference backend, you'll need the custom `super_v3` reasoning parser. Download it with:
|
| 237 |
+
```bash
|
| 238 |
+
wget https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16/raw/main/super_v3_reasoning_parser.py
|
| 239 |
+
```
|
| 240 |
+
|
| 241 |
+
OR
|
| 242 |
+
```bash
|
| 243 |
+
curl -O https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16/raw/main/super_v3_reasoning_parser.py
|
| 244 |
+
```
|
| 245 |
+
|
| 246 |
+
For advanced deployment configurations, visit [this resource](https://github.com/NVIDIA-NeMo/Nemotron/tree/main/usage-cookbook/Nemotron-3-Super/AdvancedDeploymentGuide).
|
| 247 |
+
|
| 248 |
+
---
|
| 249 |
+
|
| 250 |
+
#### vLLM
|
| 251 |
+
|
| 252 |
+
For more detailed information, please see [this cookbook](https://github.com/NVIDIA-NeMo/Nemotron/blob/main/usage-cookbook/Nemotron-3-Super/vllm_cookbook.ipynb).
|
| 253 |
+
|
| 254 |
+
```bash
|
| 255 |
+
pip install vllm==0.18.1
|
| 256 |
+
|
| 257 |
+
# with uv: uv pip install vllm==0.18.1 --torch-backend=auto
|
| 258 |
+
|
| 259 |
+
export MODEL_CKPT=PATH/TO/MODEL/CHECKPOINT
|
| 260 |
+
```
|
| 261 |
+
|
| 262 |
+
```bash
|
| 263 |
+
# Optional: --enable-expert-parallel
|
| 264 |
+
vllm serve $MODEL_CKPT \
|
| 265 |
+
--served-model-name nvidia/nemotron-3-super \
|
| 266 |
+
--async-scheduling \
|
| 267 |
+
--dtype auto \
|
| 268 |
+
--kv-cache-dtype fp8 \
|
| 269 |
+
--tensor-parallel-size 8 \
|
| 270 |
+
--max-model-len 262144 \
|
| 271 |
+
--enable-expert-parallel \
|
| 272 |
+
--swap-space 0 \
|
| 273 |
+
--trust-remote-code \
|
| 274 |
+
--gpu-memory-utilization 0.9 \
|
| 275 |
+
--max-cudagraph-capture-size 128 \
|
| 276 |
+
--enable-chunked-prefill \
|
| 277 |
+
--mamba-ssm-cache-dtype float32 \
|
| 278 |
+
--reasoning-parser nemotron_v3 \
|
| 279 |
+
--enable-auto-tool-choice \
|
| 280 |
+
--tool-call-parser qwen3_coder
|
| 281 |
+
```
|
| 282 |
+
|
| 283 |
+
> Context length defaults to 256k above. To use up to 1M, set `VLLM_ALLOW_LONG_MAX_MODEL_LEN=1` and `--max-model-len 1048576`.
|
| 284 |
+
|
| 285 |
+
> **B200/B300 (BF16)**: The larger HBM capacity per device means the BF16 checkpoint fits on 2 GPUs. Set `--tensor-parallel-size 2` and remove `--enable-expert-parallel`. All other flags remain the same.
|
| 286 |
+
|
| 287 |
+
---
|
| 288 |
+
|
| 289 |
+
#### SGLang
|
| 290 |
+
|
| 291 |
+
Container:
|
| 292 |
+
```bash
|
| 293 |
+
docker pull lmsysorg/sglang:nightly-dev-cu13-20260316-d852f26c
|
| 294 |
+
```
|
| 295 |
+
|
| 296 |
+
For more detailed information, please see [this cookbook](https://github.com/NVIDIA-NeMo/Nemotron/blob/main/usage-cookbook/Nemotron-3-Super/sglang_cookbook.ipynb).
|
| 297 |
+
```bash
|
| 298 |
+
sglang serve \
|
| 299 |
+
--model-path PATH/TO/CHECKPOINT \
|
| 300 |
+
--served-model-name nvidia/nemotron-3-super \
|
| 301 |
+
--trust-remote-code \
|
| 302 |
+
--tp 8 \
|
| 303 |
+
--ep 8 \
|
| 304 |
+
--tool-call-parser qwen3_coder \
|
| 305 |
+
--reasoning-parser nemotron_3
|
| 306 |
+
```
|
| 307 |
+
|
| 308 |
+
> Context length defaults to 256k above. To use up to 1M, set `SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1` and `--context-length 1048576`.
|
| 309 |
+
|
| 310 |
+
> **B200/B300 (BF16)**: The larger HBM capacity per device means the BF16 checkpoint fits on 2 GPUs. Set `--tp 2 --ep 2`. All other flags remain the same.
|
| 311 |
+
|
| 312 |
+
---
|
| 313 |
+
|
| 314 |
+
#### TRT-LLM
|
| 315 |
+
|
| 316 |
+
Container:
|
| 317 |
+
```bash
|
| 318 |
+
docker pull nvcr.io/nvidia/tensorrt-llm/release:1.3.0rc8
|
| 319 |
+
```
|
| 320 |
+
|
| 321 |
+
For more detailed information, please see [this cookbook](https://github.com/NVIDIA-NeMo/Nemotron/blob/main/usage-cookbook/Nemotron-3-Super/trtllm_cookbook.ipynb).
|
| 322 |
+
|
| 323 |
+
```bash
|
| 324 |
+
cat > ./extra-llm-api-config.yml << EOF
|
| 325 |
+
kv_cache_config:
|
| 326 |
+
enable_block_reuse: false
|
| 327 |
+
free_gpu_memory_fraction: 0.8
|
| 328 |
+
mamba_ssm_cache_dtype: float16
|
| 329 |
+
dtype: fp8
|
| 330 |
+
moe_config:
|
| 331 |
+
backend: TRTLLM
|
| 332 |
+
cuda_graph_config:
|
| 333 |
+
enable_padding: true
|
| 334 |
+
max_batch_size: 256
|
| 335 |
+
enable_attention_dp: true
|
| 336 |
+
enable_chunked_prefill: true
|
| 337 |
+
num_postprocess_workers: 4
|
| 338 |
+
stream_interval: 10
|
| 339 |
+
EOF
|
| 340 |
+
|
| 341 |
+
trtllm-serve PATH/TO/BF16/CHECKPOINT \
|
| 342 |
+
--host 0.0.0.0 \
|
| 343 |
+
--port 8123 \
|
| 344 |
+
--max_batch_size 256 \
|
| 345 |
+
--tp_size 8 --ep_size 8 \
|
| 346 |
+
--max_num_tokens 8192 \
|
| 347 |
+
--trust_remote_code \
|
| 348 |
+
--reasoning_parser nano-v3 \
|
| 349 |
+
--tool_parser qwen3_coder \
|
| 350 |
+
--extra_llm_api_options extra-llm-api-config.yml
|
| 351 |
+
```
|
| 352 |
+
|
| 353 |
+
> **B200/B300 (BF16)**: The larger HBM capacity per device means the BF16 checkpoint fits on 2 GPUs. Set `--tp_size 2 --ep_size 2` and reduce `max_batch_size` to `128` in both the config file and the serve command. All other flags remain the same.
|
| 354 |
+
|
| 355 |
+
### API Client
|
| 356 |
+
|
| 357 |
+
The examples below use the OpenAI-compatible client and work with any of the serving backends above.
|
| 358 |
+
|
| 359 |
+
> NOTE: For coding agents add the following to the API call - `extra_body={“chat_template_kwargs”: {“force_nonempty_content”: True}`
|
| 360 |
+
|
| 361 |
+
```python
|
| 362 |
+
from openai import OpenAI
|
| 363 |
+
client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")
|
| 364 |
+
MODEL = "nvidia/nemotron-3-super"
|
| 365 |
+
```
|
| 366 |
+
|
| 367 |
+
**Reasoning ON (default)**
|
| 368 |
+
|
| 369 |
+
```python
|
| 370 |
+
response = client.chat.completions.create(
|
| 371 |
+
model=MODEL,
|
| 372 |
+
messages=[{"role": "user", "content": "Write a haiku about GPUs"}],
|
| 373 |
+
max_tokens=16000,
|
| 374 |
+
temperature=1.0,
|
| 375 |
+
top_p=0.95,
|
| 376 |
+
extra_body={"chat_template_kwargs": {"enable_thinking": True}}
|
| 377 |
+
)
|
| 378 |
+
print(response.choices[0].message.content)
|
| 379 |
+
```
|
| 380 |
+
|
| 381 |
+
**Reasoning OFF**
|
| 382 |
+
|
| 383 |
+
```python
|
| 384 |
+
response = client.chat.completions.create(
|
| 385 |
+
model=MODEL,
|
| 386 |
+
messages=[{"role": "user", "content": "What is the capital of Japan?"}],
|
| 387 |
+
max_tokens=16000,
|
| 388 |
+
temperature=1.0,
|
| 389 |
+
top_p=0.95,
|
| 390 |
+
extra_body={"chat_template_kwargs": {"enable_thinking": False}}
|
| 391 |
+
)
|
| 392 |
+
print(response.choices[0].message.content)
|
| 393 |
+
```
|
| 394 |
+
|
| 395 |
+
**Low-effort reasoning**
|
| 396 |
+
|
| 397 |
+
Uses significantly fewer reasoning tokens than full thinking mode. Recommended as a starting point before tuning explicit token budgets.
|
| 398 |
+
|
| 399 |
+
```python
|
| 400 |
+
response = client.chat.completions.create(
|
| 401 |
+
model=MODEL,
|
| 402 |
+
messages=[{"role": "user", "content": "What is the capital of Japan?"}],
|
| 403 |
+
max_tokens=16000,
|
| 404 |
+
temperature=1.0,
|
| 405 |
+
top_p=0.95,
|
| 406 |
+
extra_body={"chat_template_kwargs": {"enable_thinking": True, "low_effort": True}}
|
| 407 |
+
)
|
| 408 |
+
print(response.choices[0].message.content)
|
| 409 |
+
```
|
| 410 |
+
|
| 411 |
+
### OpenCode
|
| 412 |
+
|
| 413 |
+
[OpenCode](https://opencode.ai/docs) is an AI coding agent that runs in your terminal. It connects to any OpenAI-compatible endpoint, making it compatible with all three serving backends above (vLLM, SGLang, and TRT-LLM).
|
| 414 |
+
|
| 415 |
+
Create or update your `~/.config/opencode/opencode.json`:
|
| 416 |
+
|
| 417 |
+
```json
|
| 418 |
+
{
|
| 419 |
+
"$schema": "https://opencode.ai/config.json",
|
| 420 |
+
"model": "local/nvidia-nemotron-3-super",
|
| 421 |
+
"provider": {
|
| 422 |
+
"local": {
|
| 423 |
+
"npm": "@ai-sdk/openai-compatible",
|
| 424 |
+
"name": "local_backend",
|
| 425 |
+
"options": {
|
| 426 |
+
"baseURL": "http://localhost:8000/v1",
|
| 427 |
+
"apiKey": "EMPTY"
|
| 428 |
+
},
|
| 429 |
+
"models": {
|
| 430 |
+
"nvidia-nemotron-3-super": {
|
| 431 |
+
"name": "nvidia/nemotron-3-super",
|
| 432 |
+
"limit": {
|
| 433 |
+
"context": 1000000,
|
| 434 |
+
"output": 32768
|
| 435 |
+
}
|
| 436 |
+
}
|
| 437 |
+
}
|
| 438 |
+
}
|
| 439 |
+
},
|
| 440 |
+
"agent": {
|
| 441 |
+
"build": {
|
| 442 |
+
"temperature": 1.0,
|
| 443 |
+
"top_p": 0.95,
|
| 444 |
+
"max_tokens": 32000
|
| 445 |
+
},
|
| 446 |
+
"plan": {
|
| 447 |
+
"temperature": 1.0,
|
| 448 |
+
"top_p": 0.95,
|
| 449 |
+
"max_tokens": 32000
|
| 450 |
+
}
|
| 451 |
+
}
|
| 452 |
+
}
|
| 453 |
+
```
|
| 454 |
+
|
| 455 |
+
> Update `baseURL` to match whichever backend you are running. The default port above (`8000`) matches the vLLM example; SGLang and TRT-LLM use `30000` and `8123` respectively.
|
| 456 |
+
|
| 457 |
+
To learn more about other supported agent scaffolds - check out [this resource](https://github.com/NVIDIA-NeMo/Nemotron/tree/main/usage-cookbook/Nemotron-3-Super/OpenScaffoldingResources)
|
| 458 |
+
|
| 459 |
+
<details>
|
| 460 |
+
<summary><strong> Advanced: Budget-Controlled Reasoning</strong></summary>
|
| 461 |
+
|
| 462 |
+
Set a hard token ceiling on the reasoning trace using `reasoning_budget`. The model will attempt to close the trace at the next newline before the budget is hit; if none is found within 500 tokens it closes abruptly at `reasoning_budget + 500`.
|
| 463 |
+
|
| 464 |
+
```python
|
| 465 |
+
from typing import Any, Dict, List
|
| 466 |
+
import openai
|
| 467 |
+
from transformers import AutoTokenizer
|
| 468 |
+
|
| 469 |
+
|
| 470 |
+
class ThinkingBudgetClient:
|
| 471 |
+
def __init__(self, base_url: str, api_key: str, tokenizer_name_or_path: str):
|
| 472 |
+
self.tokenizer = AutoTokenizer.from_pretrained(tokenizer_name_or_path)
|
| 473 |
+
self.client = openai.OpenAI(base_url=base_url, api_key=api_key)
|
| 474 |
+
|
| 475 |
+
def chat_completion(
|
| 476 |
+
self,
|
| 477 |
+
model: str,
|
| 478 |
+
messages: List[Dict[str, Any]],
|
| 479 |
+
reasoning_budget: int = 512,
|
| 480 |
+
max_tokens: int = 1024,
|
| 481 |
+
**kwargs,
|
| 482 |
+
) -> Dict[str, Any]:
|
| 483 |
+
assert max_tokens > reasoning_budget, (
|
| 484 |
+
f"reasoning_budget must be less than max_tokens. "
|
| 485 |
+
f"Got {max_tokens=} and {reasoning_budget=}"
|
| 486 |
+
)
|
| 487 |
+
|
| 488 |
+
# Step 1: generate the reasoning trace up to the budget
|
| 489 |
+
response = self.client.chat.completions.create(
|
| 490 |
+
model=model, messages=messages, max_tokens=reasoning_budget, **kwargs
|
| 491 |
+
)
|
| 492 |
+
reasoning_content = response.choices[0].message.content
|
| 493 |
+
if "" not in reasoning_content:
|
| 494 |
+
reasoning_content = f"{reasoning_content}.\n\n\n"
|
| 495 |
+
|
| 496 |
+
reasoning_tokens_len = len(
|
| 497 |
+
self.tokenizer.encode(reasoning_content, add_special_tokens=False)
|
| 498 |
+
)
|
| 499 |
+
remaining_tokens = max_tokens - reasoning_tokens_len
|
| 500 |
+
assert remaining_tokens > 0, (
|
| 501 |
+
f"No tokens remaining for response ({remaining_tokens=}). "
|
| 502 |
+
"Increase max_tokens or lower reasoning_budget."
|
| 503 |
+
)
|
| 504 |
+
|
| 505 |
+
# Step 2: continue from the closed reasoning trace
|
| 506 |
+
messages.append({"role": "assistant", "content": reasoning_content})
|
| 507 |
+
prompt = self.tokenizer.apply_chat_template(
|
| 508 |
+
messages, tokenize=False, continue_final_message=True
|
| 509 |
+
)
|
| 510 |
+
response = self.client.completions.create(
|
| 511 |
+
model=model, prompt=prompt, max_tokens=remaining_tokens, **kwargs
|
| 512 |
+
)
|
| 513 |
+
|
| 514 |
+
return {
|
| 515 |
+
"reasoning_content": reasoning_content.strip().strip("").strip(),
|
| 516 |
+
"content": response.choices[0].text,
|
| 517 |
+
"finish_reason": response.choices[0].finish_reason,
|
| 518 |
+
}
|
| 519 |
+
```
|
| 520 |
+
|
| 521 |
+
**Example usage** (32-token reasoning budget):
|
| 522 |
+
|
| 523 |
+
```python
|
| 524 |
+
client = ThinkingBudgetClient(
|
| 525 |
+
base_url="http://localhost:8000/v1",
|
| 526 |
+
api_key="EMPTY",
|
| 527 |
+
tokenizer_name_or_path="nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16",
|
| 528 |
+
)
|
| 529 |
+
|
| 530 |
+
result = client.chat_completion(
|
| 531 |
+
model="nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16",
|
| 532 |
+
messages=[
|
| 533 |
+
{"role": "system", "content": "You are a helpful assistant. /think"},
|
| 534 |
+
{"role": "user", "content": "What is 2+2?"},
|
| 535 |
+
],
|
| 536 |
+
reasoning_budget=32,
|
| 537 |
+
max_tokens=512,
|
| 538 |
+
temperature=1.0,
|
| 539 |
+
top_p=0.95,
|
| 540 |
+
)
|
| 541 |
+
print(result)
|
| 542 |
+
```
|
| 543 |
+
|
| 544 |
+
</details>
|
| 545 |
+
|
| 546 |
+
#### Transformers
|
| 547 |
+
The model has been integrated into 🤗 Transformers since v5.3.0. We recommend using the [Nemotron 3 Super](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/nemo/tags?version=26.02.nemotron_3_super) container from the NeMo Framework to ensure all required libraries are available.
|
| 548 |
+
|
| 549 |
+
```python
|
| 550 |
+
import torch
|
| 551 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 552 |
+
|
| 553 |
+
tokenizer = AutoTokenizer.from_pretrained("nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16")
|
| 554 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 555 |
+
"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16",
|
| 556 |
+
torch_dtype=torch.bfloat16,
|
| 557 |
+
device_map="auto"
|
| 558 |
+
)
|
| 559 |
+
```
|
| 560 |
+
|
| 561 |
+
If your Transformers version is lower than v5.3.0, please add `trust_remote_code=True` when loading the model:
|
| 562 |
+
```python
|
| 563 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 564 |
+
"nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16",
|
| 565 |
+
torch_dtype=torch.bfloat16,
|
| 566 |
+
device_map="auto",
|
| 567 |
+
trust_remote_code=True
|
| 568 |
+
)
|
| 569 |
+
```
|
| 570 |
+
|
| 571 |
+
Please note that the model supports up to a 1M context size, although the default context size in the Hugging Face configuration is 256k due to higher VRAM requirements.
|
| 572 |
+
|
| 573 |
+
Here is an example of generating outputs with reasoning enabled (the default):
|
| 574 |
+
```python
|
| 575 |
+
messages = [
|
| 576 |
+
{"role": "user", "content": "Write a haiku about GPUs"},
|
| 577 |
+
]
|
| 578 |
+
|
| 579 |
+
tokenized_chat = tokenizer.apply_chat_template(
|
| 580 |
+
messages,
|
| 581 |
+
tokenize=True,
|
| 582 |
+
add_generation_prompt=True,
|
| 583 |
+
return_tensors="pt"
|
| 584 |
+
).to(model.device)
|
| 585 |
+
|
| 586 |
+
if not isinstance(tokenized_chat, torch.Tensor):
|
| 587 |
+
input_ids = tokenized_chat["input_ids"]
|
| 588 |
+
else:
|
| 589 |
+
input_ids = tokenized_chat
|
| 590 |
+
|
| 591 |
+
outputs = model.generate(
|
| 592 |
+
input_ids,
|
| 593 |
+
max_new_tokens=50,
|
| 594 |
+
temperature=1.0,
|
| 595 |
+
top_p=0.95,
|
| 596 |
+
eos_token_id=tokenizer.eos_token_id
|
| 597 |
+
)
|
| 598 |
+
|
| 599 |
+
print(tokenizer.decode(outputs[0]))
|
| 600 |
+
```
|
| 601 |
+
|
| 602 |
+
To disable reasoning, add `enable_thinking=False` to `apply_chat_template()`. By default, `enable_thinking` is set to `True`.
|
| 603 |
+
```python
|
| 604 |
+
tokenized_chat = tokenizer.apply_chat_template(
|
| 605 |
+
messages,
|
| 606 |
+
tokenize=True,
|
| 607 |
+
enable_thinking=False,
|
| 608 |
+
add_generation_prompt=True,
|
| 609 |
+
return_tensors="pt"
|
| 610 |
+
).to(model.device)
|
| 611 |
+
```
|
| 612 |
+
|
| 613 |
+
|
| 614 |
+
## Training and Evaluation Datasets
|
| 615 |
+
|
| 616 |
+
# Training
|
| 617 |
+
|
| 618 |
+
**Data Modality:** Text
|
| 619 |
+
**The total size:** 15,573,172,908,990 Tokens
|
| 620 |
+
**Total number of datasets:** 153
|
| 621 |
+
**Dataset partition:** *Training [100%], testing [0%], validation [0%]*
|
| 622 |
+
**Time period for training data collection:** 2013 to February 24, 2026
|
| 623 |
+
**Time period for testing data collection:** 2013 to February 24, 2026
|
| 624 |
+
**Time period for validation data collection:** 2013 to February 24, 2026
|
| 625 |
+
**Data Collection Method by dataset:** Hybrid: Automated, Human, Synthetic
|
| 626 |
+
**Labeling Method by dataset:** Hybrid: Automated, Human, Synthetic
|
| 627 |
+
|
| 628 |
+
NVIDIA-Nemotron-3-Super-120B-A12B-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.
|
| 629 |
+
|
| 630 |
+
The post-training corpus for NVIDIA-Nemotron-3-Super-120B-A12B-BF16 of high-quality curated and synthetically-generated data. Primary languages used for post-training include English, French, German, Italian, Japanese, Spanish, and Chinese.
|
| 631 |
+
|
| 632 |
+
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.
|
| 633 |
+
|
| 634 |
+
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.
|
| 635 |
+
|
| 636 |
+
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.
|
| 637 |
+
|
| 638 |
+
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.
|
| 639 |
+
|
| 640 |
+
More details on the datasets and synthetic data generation methods can be found in the technical report _[**_NVIDIA Nemotron 3 Super_**](https://research.nvidia.com/labs/nemotron/files/NVIDIA-Nemotron-3-Super-Technical-Report.pdf)_.
|
| 641 |
+
|
| 642 |
+
<details>
|
| 643 |
+
<summary><strong>Click to explore the full dataset catalogue used for training</strong></summary>
|
| 644 |
+
|
| 645 |
+
#### **Base Pre-Training Corpus (Nemotron 3 Foundation)**
|
| 646 |
+
|
| 647 |
+
The foundation of the model is trained on the **Nemotron-3-Nano** corpus, comprising the following collections:
|
| 648 |
+
|
| 649 |
+
| Dataset Collection | Token Counts | Description |
|
| 650 |
+
| :--- | :--- | :--- |
|
| 651 |
+
| **Nemotron-CC-v2** & **v2.1** | 9.13T | A massive collection of English web data filtered from Common Crawl, including 2.5T+ tokens of new organic, translated, and synthetically rephrased content. |
|
| 652 |
+
| **Nemotron-CC-Code-v1** | 427.9B | High-quality code tokens extracted from Common Crawl using the Lynx + LLM pipeline to preserve structure and equations. |
|
| 653 |
+
| **Nemotron-Pretraining-Code-v1** & **v2** | 1.09T | Curated GitHub code references with multi-stage filtering, deduplication, and large-scale synthetic code data. |
|
| 654 |
+
| **Nemotron-CC-Math-v1** | 133.3B | High-quality math pre-training dataset preserving LaTeX formatting and mathematical structures. |
|
| 655 |
+
| **Nemotron-Pretraining-Specialized-v1** | 336.4B | Synthetic datasets targeting specialized domains such as STEM reasoning and scientific coding. |
|
| 656 |
+
|
| 657 |
+
### Public Datasets
|
| 658 |
+
|
| 659 |
+
| Dataset | Collection Period |
|
| 660 |
+
| :---- | :---- |
|
| 661 |
+
| [GSM8K](https://github.com/openai/grade-school-math) | 4/23/2025 |
|
| 662 |
+
| [CC-NEWS](https://commoncrawl.org/blog/news-dataset-available) | 4/23/2025 |
|
| 663 |
+
| [Common Crawl](https://commoncrawl.org/) | 4/23/2025 |
|
| 664 |
+
| [Wikimedia](https://dumps.wikimedia.org/) | 4/23/2025 |
|
| 665 |
+
| [Bespoke-Stratos-17k](https://huggingface.co/datasets/bespokelabs/Bespoke-Stratos-17k) | 4/23/2025 |
|
| 666 |
+
| [tigerbot-kaggle-leetcodesolutions-en-2k](https://huggingface.co/datasets/TigerResearch/tigerbot-kaggle-leetcodesolutions-en-2k) | 4/23/2025 |
|
| 667 |
+
| [glaive-function-calling-v2](https://huggingface.co/datasets/glaiveai/glaive-function-calling-v2) | 4/23/2025 |
|
| 668 |
+
| [APIGen Function-Calling](https://huggingface.co/datasets/Salesforce/xlam-function-calling-60k) | 4/23/2025 |
|
| 669 |
+
| [LMSYS-Chat-1M](https://huggingface.co/datasets/lmsys/lmsys-chat-1m) | 4/23/2025 |
|
| 670 |
+
| [Open Textbook Library \- CC BY-SA & GNU subset](https://open.umn.edu/opentextbooks/textbooks/) and [OpenStax \- CC BY-SA subset](https://openstax.org/) | 4/23/2025 |
|
| 671 |
+
| [Advanced Reasoning Benchmark](https://github.com/TheDuckAI/arb), [tigerbot-kaggle-leetcodesolutions-en-2k](https://huggingface.co/datasets/TigerResearch/tigerbot-kaggle-leetcodesolutions-en-2k), [PRM800K](https://github.com/openai/prm800k), and [SciBench](https://github.com/mandyyyyii/scibench) | 4/23/2025 |
|
| 672 |
+
| [FineWeb-2](https://huggingface.co/datasets/HuggingFaceFW/fineweb-2) | 4/23/2025 |
|
| 673 |
+
| [Court Listener](https://www.courtlistener.com/help/api/bulk-data/) | Legacy Download |
|
| 674 |
+
| [peS2o](https://huggingface.co/datasets/allenai/peS2o) | Legacy Download |
|
| 675 |
+
| [OpenWebMath](https://huggingface.co/datasets/open-web-math/open-web-math) | Legacy Download |
|
| 676 |
+
| [BioRxiv](https://www.biorxiv.org/tdm) | Legacy Download |
|
| 677 |
+
| [PMC Open Access Subset](https://pmc.ncbi.nlm.nih.gov/tools/openftlist/) | Legacy Download |
|
| 678 |
+
| [OpenWebText2](https://openwebtext2.readthedocs.io/en/latest/) | Legacy Download |
|
| 679 |
+
| [Stack Exchange Data Dump](https://archive.org/details/stackexchange) | Legacy Download |
|
| 680 |
+
| [PubMed Abstracts](https://github.com/thoppe/The-Pile-PubMed) | Legacy Download |
|
| 681 |
+
| [NIH ExPorter](https://exporter.nih.gov/ExPORTER_Catalog.aspx) | Legacy Download |
|
| 682 |
+
| [arXiv](https://info.arxiv.org/help/bulk_data/index.html) | Legacy Download |
|
| 683 |
+
| [BigScience Workshop Datasets](https://github.com/bigscience-workshop/bigscience/tree/master/train/tr11-176B-ml#datasets) | Legacy Download |
|
| 684 |
+
| [Reddit Dataset](https://files.pushshift.io/reddit/) | Legacy Download |
|
| 685 |
+
| [SEC's Electronic Data Gathering, Analysis, and Retrieval (EDGAR)](https://www.sec.gov/search-filings) | Legacy Download |
|
| 686 |
+
| [Advanced Mathematical Problem Solving](https://github.com/hendrycks/math?tab=readme-ov-file) | Legacy Download |
|
| 687 |
+
| [MathPile](https://github.com/GAIR-NLP/MathPile/) | Legacy Download |
|
| 688 |
+
| [NuminaMath CoT](https://huggingface.co/datasets/AI-MO/NuminaMath-CoT) | Legacy Download |
|
| 689 |
+
| [PMC Article](https://pmc.ncbi.nlm.nih.gov/tools/textmining/) | Legacy Download |
|
| 690 |
+
| [FLAN](https://github.com/google-research/FLAN) | Legacy Download |
|
| 691 |
+
| [Advanced Reasoning Benchmark](https://github.com/TheDuckAI/arb) | Legacy Download |
|
| 692 |
+
| [SciBench](https://github.com/mandyyyyii/scibench) | Legacy Download |
|
| 693 |
+
| [WikiTableQuestions](https://huggingface.co/datasets/wikitablequestions) | Legacy Download |
|
| 694 |
+
| [FinQA](https://finqasite.github.io/) | Legacy Download |
|
| 695 |
+
| [Riddles](https://github.com/crawsome/riddles) | Legacy Download |
|
| 696 |
+
| [Problems in Elementary Mathematics for Home Study](https://archive.org/details/AntonovVygodskyNikitinSankinProblemsInElementaryMathematicsForHomeStudyMir1982) | Legacy Download |
|
| 697 |
+
| [MedMCQA](https://huggingface.co/datasets/openlifescienceai/medmccqa) | Legacy Download |
|
| 698 |
+
| [Cosmos QA](https://huggingface.co/datasets/allenai/cosmos_qa) | Legacy Download |
|
| 699 |
+
| [MCTest](https://huggingface.co/datasets/sagnikrayc/mctest) | Legacy Download |
|
| 700 |
+
| [AI2's Reasoning Challenge](https://huggingface.co/datasets/ai2_arc) | Legacy Download |
|
| 701 |
+
| [OpenBookQA](https://github.com/allenai/OpenBookQA) | Legacy Download |
|
| 702 |
+
| [MMLU Auxiliary Train](https://huggingface.co/datasets/cais/mmlu/viewer/all/auxiliary_train) | Legacy Download |
|
| 703 |
+
| [social-chemestry-101](https://huggingface.co/datasets/tasksource/social-chemestry-101) | Legacy Download |
|
| 704 |
+
| [Moral Stories](https://huggingface.co/datasets/demelin/moral_stories) | Legacy Download |
|
| 705 |
+
| [The Common Pile v0.1](https://huggingface.co/common-pile) | Legacy Download |
|
| 706 |
+
| [FineMath](https://huggingface.co/datasets/HuggingFaceTB/finemath) | Legacy Download |
|
| 707 |
+
| [MegaMath](https://huggingface.co/datasets/LLM360/MegaMath) | Legacy Download |
|
| 708 |
+
| [MultiverseMathHard](https://huggingface.co/datasets/Nexusflow/MultiverseMathHard) | 10/2/2025 |
|
| 709 |
+
| [News Commentary](https://opus.nlpl.eu/News-Commentary.php) | 10/2/2025 |
|
| 710 |
+
| [Essential-Web](https://huggingface.co/datasets/EssentialAI/essential-web-v1.0) | 10/2/2025 |
|
| 711 |
+
| [finepdfs](https://huggingface.co/datasets/HuggingFaceFW/finepdfs) | 10/2/2025 |
|
| 712 |
+
| [HotpotQA](https://huggingface.co/hotpot_qa/datasets) | 10/2/2025 |
|
| 713 |
+
| [SQuAD2.0](https://rajpurkar.github.io/SQuAD-explorer/) | 10/2/2025 |
|
| 714 |
+
| [NLTK Words Lists](https://www.nltk.org/nltk_data/) | 10/2/2025 |
|
| 715 |
+
| Competitive Coding RL data from [Nemotron-Cascade-RL-SWE](https://huggingface.co/datasets/nvidia/Nemotron-Cascade-RL-SWE) | 01/10/2026 |
|
| 716 |
+
| [NL2Bash](https://github.com/TellinaTool/nl2bash) | 01/10/2026 |
|
| 717 |
+
| [SWE-Gym](https://huggingface.co/datasets/SWE-Gym/SWE-Gym) | 01/10/2026 |
|
| 718 |
+
| [R2E-Gym-Subset](https://huggingface.co/datasets/R2E-Gym/R2E-Gym-Subset) | 01/10/2026 |
|
| 719 |
+
| [SWE-bench_Verified](https://huggingface.co/datasets/princeton-nlp/SWE-bench_Verified) | 01/10/2026 |
|
| 720 |
+
|
| 721 |
+
### **Crawled and Scraped from Online Sources by NVIDIA**
|
| 722 |
+
|
| 723 |
+
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.
|
| 724 |
+
|
| 725 |
+
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](https://arxiv.org/abs/2512.20848)).
|
| 726 |
+
|
| 727 |
+
| Dataset | Modality | Dataset Size | Collection Period | Collecting Organisation |
|
| 728 |
+
| :---- | :---- | :---- | :---- | :---- |
|
| 729 |
+
| English Common Crawl | Text | 3.36T | 4/8/2025 | NVIDIA Advanced Deep Learning Research |
|
| 730 |
+
| English Common Crawl 1.1 | Text | Not disclosed | 10/2/2025 | NVIDIA Advanced Deep Learning Research |
|
| 731 |
+
| Multilingual Common Crawl | Text | 812.7B | 5/1/2025 | NVIDIA Advanced Deep Learning Research |
|
| 732 |
+
| GitHub Crawl | Text | 747.4B | 4/29/2025 | NVIDIA Advanced Deep Learning Research |
|
| 733 |
+
|
| 734 |
+
## Private Non-publicly Accessible Datasets of Third Parties
|
| 735 |
+
|
| 736 |
+
| Dataset | Model(s) used |
|
| 737 |
+
|---------|---------------|
|
| 738 |
+
| Global Regulation | Unknown |
|
| 739 |
+
| TAUS Translation Memory | Unknown |
|
| 740 |
+
| Scale HLE | Unknown |
|
| 741 |
+
| HackerRank Coding | Unknown |
|
| 742 |
+
| RL data for Search | Gemini 3; GPT-5 * |
|
| 743 |
+
|
| 744 |
+
* Models used for prompt generation only
|
| 745 |
+
|
| 746 |
+
## Private Non-publicly Accessible Datasets by NVIDIA
|
| 747 |
+
|
| 748 |
+
| Dataset | Model(s) used |
|
| 749 |
+
|---------|---------------|
|
| 750 |
+
| Simple Minesweeper | \- |
|
| 751 |
+
| Simple Sudoku | \- |
|
| 752 |
+
| Multitool Typewriter Hard | \- |
|
| 753 |
+
| Machine Translation of News Commentary and TAUS Translation Memory | \- |
|
| 754 |
+
| Machine Translation of STEM - | [Qwen2.5-14B-Instruct](https://huggingface.co/Qwen/Qwen2.5-14B-Instruct) |
|
| 755 |
+
| Competitive Coding RL data from Nemotron Cascade | \- |
|
| 756 |
+
| Long context RL | \- |
|
| 757 |
+
| Single-step SWE RL for patch generation | \- |
|
| 758 |
+
| OpenHands SWE | \- |
|
| 759 |
+
|
| 760 |
+
### NVIDIA-Sourced Synthetic Datasets
|
| 761 |
+
|
| 762 |
+
| Dataset | Modality | Dataset Size | Seed Dataset | Model(s) used for generation |
|
| 763 |
+
| :---- | :---- | :---- | :---- | :---- |
|
| 764 |
+
| Nemotron-Pretraining-Formal-Logic | Text | 128,022,285 | [Nemotron Personas](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 765 |
+
| Nemotron-Pretraining-Economics | Text | 73,374,154 | - | [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 766 |
+
| Nemotron-Pretraining-Multiple-Choice | Text | 1,609,214,470 | [MMLU Auxiliary Train](https://huggingface.co/datasets/cais/mmlu/viewer/all/auxiliary_train) | [DeepSeek-V3](https://huggingface.co/deepseek-ai/DeepSeek-V3); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B) |
|
| 767 |
+
| Nemotron-Pretraining-Code-Concepts | Text | 7,294,510,156 | - | [gpt-oss-20b](https://huggingface.co/openai/gpt-oss-20b); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 768 |
+
| Nemotron-Pretraining-Unconditional-Algorithmic | Text | 196,492,899 | - | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B) |
|
| 769 |
+
| Synthetic Tasks from DeepSeek-V3 and Qwen3-235B-A22B | Text | 6.7B | train splits of Into the Unknown; AI2 ARC (AI2 Reasoning Challenge); BLiMP (Benchmark of Linguistic Minimal Pairs); CommonSenseQA; GLUE; HeadQA; Hendrycks Ethics; Memo Trap; modus-tollens; NeQA; pattern-matching-suppression; mastermind_24_mcq_random; mastermind_24_mcq_close; quote-repetition; redefine-math; Repetitive Algebra; sig-figs; MMLU-Pro; MC-TACO; MedConceptsQA; MMLU_dataset; OpenbooksQA; PIQA (Physical Interaction Question Answering); SocialIQA; SuperGLUE; tinyAI2_arc; tinyMMLU; tinyWinogrande; TruthfulQA; WebQuestions; Winogrande; GPQA; MBPP | [DeepSeek v3](https://huggingface.co/deepseek-ai/DeepSeek-V3); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B) |
|
| 770 |
+
| Synthetic Art of Problem Solving from DeepSeek-R1 | Text | 40B | [Art of Problem Solving](https://artofproblemsolving.com/company); [American Mathematics Competitions 8](https://artofproblemsolving.com/wiki/index.php/AMC_8_Problems_and_Solutions); [American Mathematics Competitions 10](https://artofproblemsolving.com/wiki/index.php/AMC_10_Problems_and_Solutions); | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1) |
|
| 771 |
+
| Synthetic Moral Stories and Social Chemistry from Mixtral-8x22B-v0.1 | Text | 327M | [social-chemestry-101](https://huggingface.co/datasets/tasksource/social-chemestry-101); [Moral Stories](https://huggingface.co/datasets/demelin/moral_stories) | [Mixtral-8x22B-v0.1](https://huggingface.co/mistralai/Mixtral-8x22B-v0.1) |
|
| 772 |
+
| Synthetic Social Sciences seeded with OpenStax from DeepSeek-V3, Mixtral-8x22B-v0.1, and Qwen2.5-72B | Text | 83.6M | [OpenStax \- CC BY-SA subset](https://openstax.org/) | [DeepSeek-V3](https://huggingface.co/deepseek-ai/DeepSeek-V3); [Mixtral-8x22B-v0.1](https://huggingface.co/mistralai/Mixtral-8x22B-v0.1); [Qwen2.5-72B](https://huggingface.co/Qwen/Qwen2.5-72B) |
|
| 773 |
+
| Synthetic Health Sciences seeded with OpenStax from DeepSeek-V3, Mixtral-8x22B-v0.1, and Qwen2.5-72B | Text | 9.7M | [OpenStax \- CC BY-SA subset](https://openstax.org/) | [DeepSeek-V3](https://huggingface.co/deepseek-ai/DeepSeek-V3); [Mixtral-8x22B-v0.1](https://huggingface.co/mistralai/Mixtral-8x22B-v0.1); [Qwen2.5-72B](https://huggingface.co/Qwen/Qwen2.5-72B) |
|
| 774 |
+
| Synthetic STEM seeded with OpenStax, Open Textbook Library, and GSM8K from DeepSeek-R1, DeepSeek-V3, DeepSeek-V3-0324, and Qwen2.5-72B | Text | 175M | [OpenStax \- CC BY-SA subset](https://openstax.org/); [GSM8K](https://github.com/openai/grade-school-math); [Open Textbook Library \- CC BY-SA & GNU subset](https://open.umn.edu/opentextbooks/textbooks/) | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1), [DeepSeek-V3](https://huggingface.co/deepseek-ai/DeepSeek-V3); [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324); [Qwen2.5-72B](https://huggingface.co/Qwen/Qwen2.5-72B) |
|
| 775 |
+
| [Nemotron-PrismMath](https://huggingface.co/datasets/nvidia/Nemotron-PrismMath) | Text | 4.6B | [Big-Math-RL-Verified](https://huggingface.co/datasets/SynthLabsAI/Big-Math-RL-Verified); [OpenR1-Math-220k](https://huggingface.co/datasets/open-r1/OpenR1-Math-220k) | [Qwen2.5-0.5B-instruct](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct), [Qwen2.5-72B-Instruct](https://huggingface.co/Qwen/Qwen2.5-72B-Instruct); [DeepSeek-R1-Distill-Qwen-32B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B) |
|
| 776 |
+
| Synthetic Question Answering Data from Papers and Permissible Books from Qwen2.5-72B-Instruct | Text | 350M | [arXiv](https://info.arxiv.org/help/bulk_data/index.html); [National Institutes of Health ExPorter](https://www.nih.gov/); [BioRxiv](https://www.biorxiv.org/tdm); [PMC Article](https://pmc.ncbi.nlm.nih.gov/tools/textmining/); [USPTO Backgrounds](https://data.uspto.gov/apis/transition-guide/bdss#pats); [peS2o](https://huggingface.co/datasets/allenai/peS2o); Global Regulation; [CORE](https://core.ac.uk/documentation/dataset); [PG-19](https://github.com/google-deepmind/pg19); [DOAB CC BY & CC BY-SA subset](https://www.doabooks.org/en); [NDLTD](https://ndltd.org/thesis-resources/global-etd-search/) | [Qwen2.5-72B-Instruct](https://huggingface.co/Qwen/Qwen2.5-72B-Instruct) |
|
| 777 |
+
| Refreshed [Nemotron-MIND](https://huggingface.co/datasets/nvidia/Nemotron-MIND) from phi-4 | Text | 73B | [Common Crawl](https://commoncrawl.org/latest-crawl) | [phi-4](https://huggingface.co/microsoft/phi-4) |
|
| 778 |
+
| Nemotron-CC-Math-4plus | Text | 52.3B | [Common Crawl](https://commoncrawl.org/latest-crawl) | [phi-4](https://huggingface.co/microsoft/phi-4) |
|
| 779 |
+
| Nemotron-CC-Math-3 | Text | 80.9B | [Common Crawl](https://commoncrawl.org/latest-crawl) | [phi-4](https://huggingface.co/microsoft/phi-4) |
|
| 780 |
+
| Synthetic AGIEval seeded with AQUA-RAT, LogiQA, and AR-LSAT from DeepSeek-V3 and DeepSeek-V3-0324 | Text | 4.0B | [AQUA-RAT](https://huggingface.co/datasets/deepmind/aqua_rat); [LogiQA](https://huggingface.co/datasets/lucasmccabe/logiqa); [AR-LSAT](https://github.com/zhongwanjun/AR-LSAT) | [DeepSeek-V3](https://huggingface.co/deepseek-ai/DeepSeek-V3); [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324) |
|
| 781 |
+
| Synthetic AGIEval seeded with AQUA-RAT, LogiQA, and AR-LSAT from Qwen3-30B-A3B | Text | 4.2B | [AQUA-RAT](https://huggingface.co/datasets/deepmind/aqua_rat); [LogiQA](https://huggingface.co/datasets/lucasmccabe/logiqa); [AR-LSAT](https://github.com/zhongwanjun/AR-LSAT) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 782 |
+
| Synthetic Art of Problem Solving from Qwen2.5-32B-Instruct, Qwen2.5-Math-72B, Qwen2.5-Math-7B, and Qwen2.5-72B-Instruct | Text | | [Art of Problem Solving](https://artofproblemsolving.com/company); [American Mathematics Competitions 8](https://artofproblemsolving.com/wiki/index.php/AMC_8_Problems_and_Solutions); [American Mathematics Competitions 10](https://artofproblemsolving.com/wiki/index.php/AMC_10_Problems_and_Solutions); [GSM8K](https://github.com/openai/grade-school-math); [PRM800K](https://github.com/openai/prm800k) | [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct); [Qwen2.5-Math-72B](https://huggingface.co/Qwen/Qwen2.5-Math-72B); [Qwen2.5-Math-7B](https://huggingface.co/Qwen/Qwen2.5-Math-7B); [Qwen2.5-72B-Instruct](https://huggingface.co/Qwen/Qwen2.5-72B-Instruct) |
|
| 783 |
+
| Synthetic MMLU Auxiliary Train from DeepSeek-R1 | Text | 0.5B | [MMLU Auxiliary Train](https://huggingface.co/datasets/cais/mmlu/viewer/all/auxiliary_train) | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1) |
|
| 784 |
+
| Synthetic Long Context Continued Post-Training Data from Papers and Permissible Books from Qwen2.5-72B-Instruct | Text | | [arXiv](https://info.arxiv.org/help/bulk_data/index.html); [National Institutes of Health ExPorter](https://www.nih.gov/); [BioRxiv](https://www.biorxiv.org/tdm); [PMC Article](https://pmc.ncbi.nlm.nih.gov/tools/textmining/); [USPTO Backgrounds](https://data.uspto.gov/apis/transition-guide/bdss#pats); [peS2o](https://huggingface.co/datasets/allenai/peS2o); Global Regulation; [CORE](https://core.ac.uk/documentation/dataset); [PG-19](https://github.com/google-deepmind/pg19); [DOAB CC BY & CC BY-SA subset](https://www.doabooks.org/en); [NDLTD](https://ndltd.org/thesis-resources/global-etd-search/) | [Qwen2.5-72B-Instruct](https://huggingface.co/Qwen/Qwen2.5-72B-Instruct) |
|
| 785 |
+
| Synthetic Common Crawl from Qwen3-30B-A3B and Mistral-Nemo-12B-Instruct | Text | 415.8B | [Common Crawl](https://commoncrawl.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B); [Mistral-NeMo-12B-Instruct](https://huggingface.co/nvidia/Mistral-NeMo-12B-Instruct) |
|
| 786 |
+
| Synthetic Multilingual Data from Common Crawl from Qwen3-30B-A3B | Text | | [Common Crawl](https://commoncrawl.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 787 |
+
| Synthetic Multilingual Data from Wikimedia from Qwen3-30B-A3B | Text | | [Wikimedia](https://dumps.wikimedia.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 788 |
+
| Synthetic Math Data from Wikimedia from Nemotron-4-340B-Instruct | Text | | \- | [Nemotron-4-340B-Instruct](https://huggingface.co/nvidia/Nemotron-4-340B-Instruct) |
|
| 789 |
+
| Synthetic Common Crawl Code from phi-4 | Text | 427.9B | [Common Crawl](https://commoncrawl.org/latest-crawl) | [phi-4](https://huggingface.co/microsoft/phi-4) |
|
| 790 |
+
| Synthetic Scientific Coding from Qwen3-235B-A22B | Text | 1.2B | [Wikimedia](https://dumps.wikimedia.org/) | [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507) |
|
| 791 |
+
| Tool Calling Data | Text | 26.2B | | [Qwen3-235B-A22B-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 792 |
+
| Synthetic Essential-Web from QwQ-32B | Text | 28.1B | [Essential-Web](https://huggingface.co/datasets/EssentialAI/essential-web-v1.0) | [QwQ-32B](https://huggingface.co/Qwen/QwQ-32B) |
|
| 793 |
+
| Translated Synthetic Crawl | Text | 389.9B | [Common Crawl](https://commoncrawl.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 794 |
+
| Translated Synthetic Wikipedia | Text | 7.9B | [Wikimedia](https://dumps.wikimedia.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 795 |
+
| Synthetic Art of Problem Solving from gpt-oss-120b and Qwen2.5-32B-Instruct | Text | Undisclosed | [Art of Problem Solving](https://artofproblemsolving.com/company); [American Mathematics Competitions 8](https://artofproblemsolving.com/wiki/index.php/AMC_8_Problems_and_Solutions); [American Mathematics Competitions 10](https://artofproblemsolving.com/wiki/index.php/AMC_10_Problems_and_Solutions) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) |
|
| 796 |
+
| Synthetic Stack Exchange from gpt-oss-120b and Qwen2.5-32B-Instruct | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) |
|
| 797 |
+
| Synthetic OpenCodeReasoning from DeepSeek-R1-0528 | Text | Undisclosed | [OpenCodeReasoning](https://huggingface.co/datasets/nvidia/OpenCodeReasoning) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 798 |
+
| Synthetic HackerRank Coding from DeepSeek-R1-0528 | Text | Undisclosed | HackerRank Coding Dataset | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 799 |
+
| Synthetic SWE-Gym from Qwen3-Coder-480B-A35B-Instruct | Text | Undisclosed | [SWE-Gym](https://huggingface.co/datasets/SWE-Gym/SWE-Gym) | [Qwen3-Coder-480B-A35B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct) |
|
| 800 |
+
| Synthetic Art of Problem Solving and Stack Exchange from gpt-oss-120b, Qwen2.5-32B-Instruct, and Goedel-Prover-V2-32B | Text | Undisclosed | [Art of Problem Solving](https://artofproblemsolving.com/company); [American Mathematics Competitions 8](https://artofproblemsolving.com/wiki/index.php/AMC_8_Problems_and_Solutions); [American Mathematics Competitions 10](https://artofproblemsolving.com/wiki/index.php/AMC_10_Problems_and_Solutions); [Stack Exchange](https://archive.org/details/stackexchange) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct); [Goedel-Prover-V2-32B](https://huggingface.co/Goedel-LM/Goedel-Prover-V2-32B) |
|
| 801 |
+
| 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-Instruct | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange); [SCP-116K](https://huggingface.co/datasets/EricLu/SCP-116K); [LIMO](https://huggingface.co/datasets/GAIR/LIMO); [TACO](https://huggingface.co/datasets/BAAI/TACO); Code Contest; Codeforces | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); |
|
| 802 |
+
| Synthetic Safety from DeepSeek-R1-0528, gpt-oss-120b and Mixtral-8x7B-v0.1 | Text | Undisclosed | [Nemotron Content Safety Dataset V2](https://huggingface.co/datasets/nvidia/Aegis-AI-Content-Safety-Dataset-2.0); [Gretel Synthetic Safety Alignment Dataset](https://huggingface.co/datasets/gretelai/gretel-safety-alignment-en-v1); [RedTeam-2K](https://huggingface.co/datasets/JailbreakV-28K/JailBreakV-28k); [Malicious Tasks](https://github.com/CrystalEye42/eval-safety/blob/main/malicious_tasks_dataset.yaml); [Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Mixtral-8x7B-v0.1](https://huggingface.co/mistralai/Mixtral-8x7B-v0.1) |
|
| 803 |
+
| Synthetic STEM from Qwen3-235B-A22B-Instruct-2507 and gpt-oss-120b | Text | Undisclosed | [arXiv](https://info.arxiv.org/help/bulk_data/index.html); [National Institutes of Health ExPorter](https://www.nih.gov/); [BioRxiv](https://www.biorxiv.org/tdm); [PMC Article](https://pmc.ncbi.nlm.nih.gov/tools/textmining/); [USPTO Backgrounds](https://data.uspto.gov/apis/transition-guide/bdss#pats); [peS2o](https://huggingface.co/datasets/allenai/peS2o); Global Regulation; [CORE](https://core.ac.uk/documentation/dataset); [PG-19](https://github.com/google-deepmind/pg19); [DOAB CC BY & CC BY-SA subset](https://www.doabooks.org/en); [NDLTD](https://ndltd.org/thesis-resources/global-etd-search/) | [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 804 |
+
| Synthetic KernelBook from DeepSeek-R1-0528 | Text | Undisclosed | [KernelBook](https://huggingface.co/datasets/GPUMODE/KernelBook) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 805 |
+
| Synthetic Tool Calling from Qwen3-235B-A22B-Thinking-2507 and Qwen3-Next-80B-A3B-Thinking | Text | Undisclosed | [ToolBench](https://github.com/OpenBMB/ToolBench/tree/master); [glaive-function-calling-v2](https://huggingface.co/datasets/glaiveai/glaive-function-calling-v2); [APIGen Function-Calling](https://huggingface.co/datasets/Salesforce/xlam-function-calling-60k); [Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507); [Qwen3-Next-80B-A3B-Thinking](https://huggingface.co/Qwen/Qwen3-Next-80B-A3B-Thinking) |
|
| 806 |
+
| Synthetic Chat from gpt-oss-120b, Mixtral-8x22B-Instruct-v0.1, Qwen3-235B-A22B-Instruct-2507 , and Qwen3-235B-A22B-Thinking-2507 | Text | Undisclosed | [C4](https://huggingface.co/datasets/allenai/c4); [LMSYS-Chat-1M](https://huggingface.co/datasets/lmsys/lmsys-chat-1m); [ShareGPT](https://huggingface.co/datasets/RyokoAI/ShareGPT52K); [GSM8K](https://github.com/openai/grade-school-math); [PRM800K](https://github.com/openai/prm800k); [FinQA](https://finqasite.github.io/); [WikiTableQuestions](https://huggingface.co/wikitablequestions/datasets); [Riddles](https://github.com/crawsome/riddles); [glaive-function-calling-v2](https://huggingface.co/datasets/glaiveai/glaive-function-calling-v2); [SciBench](https://huggingface.co/datasets/xw27/scibench); [tigerbot-kaggle-leetcodesolutions-en-2k](https://huggingface.co/datasets/TigerResearch/tigerbot-kaggle-leetcodesolutions-en-2k); [OpenBookQA](https://github.com/allenai/OpenBookQA); [Advanced Reasoning Benchmark](https://github.com/TheDuckAI/arb); Software Heritage; [Khan Academy Math Keywords](https://www.khanacademy.org/math); [WildChat-1M](https://huggingface.co/datasets/allenai/WildChat-1M); [Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Mixtral-8x22B-Instruct-v0.1](https://huggingface.co/mistralai/Mixtral-8x22B-Instruct-v0.1); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 807 |
+
| Synthetic Long Context from Qwen3-235B-A22B-Instruct-2507 | Text | Undisclosed | [CORE](https://core.ac.uk/documentation/dataset); [PG-19](https://github.com/google-deepmind/pg19); [DOAB CC BY & CC BY-SA subset](https://www.doabooks.org/en); [NDLTD](https://ndltd.org/thesis-resources/global-etd-search/) | [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507) |
|
| 808 |
+
| Synthetic Tool Use Interactive Agent from gpt-oss-120b, DeepSeek-R1-0528, Qwen3-32B, and Qwen3-235B-A22B-Thinking-2507 | Text | Undisclosed | NVIDIA Internal | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [Qwen3-32B](https://huggingface.co/Qwen/Qwen3-32B); and [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 809 |
+
| Synthetic STEM from Qwen3-235B-A22B-Thinking-2507 | Text | Undisclosed | [ICHO-IPH0](https://huggingface.co/datasets/II-Vietnam/IChO-IPhO-RL-v2-formated); [Physics Big](https://huggingface.co/datasets/Vikhrmodels/physics_big); Scale HLE; [OpenMathReasoning](https://huggingface.co/datasets/nvidia/OpenMathReasoning); [OpenCodeReasoning](https://huggingface.co/datasets/nvidia/OpenCodeReasoning) | [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 810 |
+
| Synthetic DocFinQA and SWE-smith from Qwen3-Coder-480B-A35B-Instruct and Kimi-K2-Thinking | Text | Undisclosed | [DocFinQA](https://huggingface.co/datasets/kensho/DocFinQA); [SWE-smith](https://huggingface.co/datasets/SWE-bench/SWE-smith) | [Qwen3-Coder-480B-A35B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct); [Kimi-K2-Thinking](https://huggingface.co/moonshotai/Kimi-K2-Thinking) |
|
| 811 |
+
| Synthetic Math from gpt-oss-120b and Qwen2.5-32B-Instruct | Text | Undisclosed | \- | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) |
|
| 812 |
+
| Synthetic Essential-Web from gpt-oss-120b | Text | Undisclosed | [Essential-Web](https://huggingface.co/datasets/EssentialAI/essential-web-v1.0) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 813 |
+
| Synthetic Scale HLE from gpt-oss-120b | Text | Undisclosed | Scale HLE | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 814 |
+
| Synthetic CDQuestions from gpt-oss-120b | Text | Undisclosed | [CDQuestions](https://cdquestions.com/) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 815 |
+
| Synthetic Stack Exchange from gpt-oss-120b | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 816 |
+
| Synthetic GPQA from gpt-oss-120b and Qwen2.5-32B-Instruct | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) |
|
| 817 |
+
| Synthetic Vedantu from gpt-oss-120b | Text | Undisclosed | [Vedantu](https://www.vedantu.com/) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 818 |
+
| Synthetic SWE-Gym and R2E-Gym-Subset from Qwen3-Coder-480B-A35B-Instruct | Text | Undisclosed | [SWE-Gym](https://huggingface.co/datasets/SWE-Gym/SWE-Gym); [R2E-Gym-Subset](https://huggingface.co/datasets/R2E-Gym/R2E-Gym-Subset) | [Qwen3-Coder-480B-A35B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct) |
|
| 819 |
+
| Synthetic SWE-Gym from Qwen3-Coder-480B-A35B-Instruct | Text | Undisclosed | [SWE-Gym](https://huggingface.co/datasets/SWE-Gym/SWE-Gym) | [Qwen3-Coder-480B-A35B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct) |
|
| 820 |
+
| Synthetic SWE-Gym and R2E-Gym-Subset from DeepSeek-R1-0528 | Text | Undisclosed | [SWE-Gym](https://huggingface.co/datasets/SWE-Gym/SWE-Gym); [R2E-Gym-Subset](https://huggingface.co/datasets/R2E-Gym/R2E-Gym-Subset) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 821 |
+
| Synthetic HelpSteer, LMSYS-Chat-1M, and Nemotron-Personas-USA from gpt-oss-120b, Qwen3-235B-A22B-Instruct-2507, and Qwen3-235B-A22B-Thinking-2507 | Text | Undisclosed | [HelpSteer2](https://huggingface.co/datasets/nvidia/HelpSteer2); [HelpSteer3](https://huggingface.co/datasets/nvidia/HelpSteer3); [LMSYS-Chat-1M](https://huggingface.co/datasets/lmsys/lmsys-chat-1m); [Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 822 |
+
| Synthetic Structured Outputs from Qwen3-30B-A3B-Instruct-2507, Qwen3-30B-A3B-Thinking-2507, Qwen3-235B-A22B-Instruct-2507, and Qwen3-235B-A22B-Thinking-2507 | Text | Undisclosed | \- | [Qwen3-30B-A3B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-30B-A3B-Instruct-2507); [Qwen3-30B-A3B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-30B-A3B-Thinking-2507); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 823 |
+
| Synthetic Search STEM MCQ from Qwen3-235B-A22B and DeepSeek-R1-0528 | Text | Undisclosed | \- | [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 824 |
+
| Synthetic Search STEM OPENQ from DeepSeek-R1-0528 | Text | Undisclosed | \- | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 825 |
+
| Synthetic OpenSTEM from Qwen2.5-32B-Instruct and DeepSeek-R1-0528 | Text | Undisclosed | \- | [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 826 |
+
| Synthetic MCQ from Qwen2.5-32B-Instruct and DeepSeek-R1-0528 | Text | Undisclosed | \- | [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 827 |
+
| Synthetic MCQ10 from DeepSeek-R1-0528 | Text | Undisclosed | \- | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 828 |
+
| Synthetic MCQ4 from Qwen3-235B-A22B, DeepSeek-R1-0528, and Qwen3-235B-A22B-Instruct-2507 | Text | Undisclosed | \- | [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507) |
|
| 829 |
+
| Synthetic OpenMathReasoning from gpt-oss-120b and Qwen2.5-32B-Instruct | Text | Undisclosed | [OpenMathReasoning](https://huggingface.co/datasets/nvidia/OpenMathReasoning) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen2.5-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-32B-Instruct) |
|
| 830 |
+
| Synthetic Offline Search MCQA HLE from DeepSeek-R1-0528 | Text | Undisclosed | \- | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 831 |
+
| Synthetic Offline Search MCQA GPQA from Qwen3-235B-A22B and DeepSeek-R1-0528 | Text | Undisclosed | \- | [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 832 |
+
| 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-0528 | Text | Undisclosed | \- | [QwQ-32B](https://huggingface.co/Qwen/QwQ-32B); [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [Mistral-Small-3.1-24B-Instruct-2503](https://huggingface.co/mistralai/Mistral-Small-3.1-24B-Instruct-2503); [Mistral-Small-3.2-24B-Instruct-2506](https://huggingface.co/mistralai/Mistral-Small-3.2-24B-Instruct-2506); [MiniMax-M1-80k](https://huggingface.co/MiniMaxAI/MiniMax-M1-80k); [MiniMax-M1-40k](https://huggingface.co/MiniMaxAI/MiniMax-M1-40k); [Kimi-K2-Instruct](https://huggingface.co/moonshotai/Kimi-K2-Instruct); [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 833 |
+
| 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-32B | Text | Undisclosed | [WildChat-1M](https://huggingface.co/datasets/allenai/WildChat-1M); [arena-human-preference-140k](https://huggingface.co/datasets/lmarena-ai/arena-human-preference-140k) | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1); [gemma-2-2b-it](https://huggingface.co/google/gemma-2-2b-it); [gemma-3-27b-it](https://huggingface.co/google/gemma-3-27b-it); [gpt-oss-20b](https://huggingface.co/openai/gpt-oss-20b); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Mistral-7B-Instruct-v0.3](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3); [Mixtral-8x22B-Instruct-v0.1](https://huggingface.co/mistralai/Mixtral-8x22B-Instruct-v0.1); [Nemotron-4-340B-Instruct](https://huggingface.co/nvidia/Nemotron-4-340B-Instruct); [NVIDIA-Nemotron-Nano-9B-v2](https://huggingface.co/nvidia/NVIDIA-Nemotron-Nano-9B-v2); [Phi-4-mini-instruct](https://huggingface.co/microsoft/Phi-4-mini-instruct); [Phi-3-small-8k-instruct](https://huggingface.co/microsoft/Phi-3-small-8k-instruct); [Phi-3-medium-4k-instruct](https://huggingface.co/microsoft/Phi-3-medium-4k-instruct); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); [QwQ-32B](https://huggingface.co/Qwen/QwQ-32B) |
|
| 834 |
+
| Synthetic Safety from DeepSeek-R1-0528, gpt-oss-120b, DeepSeek-R1-Distill-Qwen-7B, and Mixtral-8x7B-v0.1 | Text | Undisclosed | [Nemotron Content Safety Dataset V2](https://huggingface.co/datasets/nvidia/Aegis-AI-Content-Safety-Dataset-2.0); [Gretel Synthetic Safety Alignment Dataset](https://huggingface.co/datasets/gretelai/gretel-safety-alignment-en-v1); [RedTeam-2K](https://huggingface.co/datasets/JailbreakV-28K/JailBreakV-28k); [Malicious Tasks](https://github.com/CrystalEye42/eval-safety/blob/main/malicious_tasks_dataset.yaml); | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [DeepSeek-R1-Distill-Qwen-7B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-7B); [Qwen3-30B-A3B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-30B-A3B-Thinking-2507); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [Mixtral-8x7B-v0.1](https://huggingface.co/mistralai/Mixtral-8x7B-v0.1) |
|
| 835 |
+
| Synthetic Code from Qwen3-32B | Text | Undisclosed | English Common Crawl; English Common Crawl 1.1 | [Qwen3-32B](https://huggingface.co/Qwen/Qwen3-32B) |
|
| 836 |
+
| Synthetic OpenCodeReasoning from DeepSeek-R1 | Text | Undisclosed | [OpenCodeReasoning](https://huggingface.co/datasets/nvidia/OpenCodeReasoning) | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1) |
|
| 837 |
+
| Synthetic LIMO from DeepSeek-R1-0528 | Text | Undisclosed | [LIMO](https://huggingface.co/datasets/GAIR/LIMO) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 838 |
+
| Synthetic SCP from DeepSeek-R1-0528 | Text | Undisclosed | [SCP-116K](https://huggingface.co/datasets/EricLu/SCP-116K) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 839 |
+
| Synthetic Stack Exchange from DeepSeek-R1-0528 | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 840 |
+
| Synthetic Common Crawl from Qwen3-30B-A3B | Text | Undisclosed | [Common Crawl](https://commoncrawl.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 841 |
+
| Synthetic Wikipedia from Qwen3-30B-A3B | Text | Undisclosed | [Wikimedia](https://dumps.wikimedia.org/) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B) |
|
| 842 |
+
| Synthetic Essential-Web from Qwen3-30B-A3B and Qwen3-235B-A22B-Thinking-2507 | Text | Undisclosed | [Essential-Web](https://huggingface.co/datasets/EssentialAI/essential-web-v1.0) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 843 |
+
| Synthetic Textbook Math from Qwen3-30B-A3B, Qwen3-235B-A22B, phi-4 | Text | Undisclosed | [Common Crawl](https://commoncrawl.org/); [FineMath](https://huggingface.co/datasets/HuggingFaceTB/finemath) | [Qwen3-30B-A3B](https://huggingface.co/Qwen/Qwen3-30B-A3B); [Qwen3-235B-A22B](https://huggingface.co/Qwen/Qwen3-235B-A22B); [phi-4](https://huggingface.co/microsoft/phi-4) |
|
| 844 |
+
| Synthetic Math and Code from DeepSeek-R1 and DeepSeek-R1-0528 | Text | Undisclosed | [Magicoder-Evol-Instruct-110K](https://huggingface.co/datasets/ise-uiuc/Magicoder-Evol-Instruct-110K); [opc-sft-stage2](https://huggingface.co/datasets/OpenCoder-LLM/opc-sft-stage2); [TACO](https://huggingface.co/datasets/BAAI/TACO); [OpenCodeReasoning](https://huggingface.co/datasets/nvidia/OpenCodeReasoning); [OpenMathReasoning](https://huggingface.co/datasets/nvidia/OpenMathReasoning); [NuminaMath CoT](https://huggingface.co/datasets/AI-MO/NuminaMath-CoT) | [DeepSeek-R1](https://huggingface.co/deepseek-ai/DeepSeek-R1); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 845 |
+
| Synthetic Nemotron-Personas-USA from gpt-oss-120b and Qwen3-8B | Text | Undisclosed | [Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen3-8B](https://huggingface.co/Qwen/Qwen3-8B) |
|
| 846 |
+
| Synthetic Text-To-SQL | Text | Undisclosed | \- | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 847 |
+
| Synthetic Agentless SWE | Text | Undisclosed | [SWE-Bench-Train](https://huggingface.co/datasets/princeton-nlp/SWE-bench/viewer/default/train); [SWE-Fixer-Train](https://huggingface.co/datasets/internlm/SWE-Fixer-Train-110K); [SWE-reBench](https://huggingface.co/datasets/nebius/SWE-rebench); [SWE-smith](https://huggingface.co/datasets/SWE-bench/SWE-smith) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528) |
|
| 848 |
+
| Synthetic Search Graph Walk | Text | Undisclosed | \- | [MiniMax-M2](https://huggingface.co/MiniMaxAI/MiniMax-M2) |
|
| 849 |
+
| Synthetic CUDA 100k | Text | Undisclosed | [KernelBook](https://huggingface.co/datasets/GPUMODE/KernelBook); [HuggingFace Transformers](https://github.com/huggingface/transformers); [FlashInfer](https://github.com/flashinfer-ai/flashinfer) | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b) |
|
| 850 |
+
| Synthetic Safety | Text | Undisclosed | [Nemotron Content Safety Dataset V2](https://huggingface.co/datasets/nvidia/Aegis-AI-Content-Safety-Dataset-2.0); [Gretel Synthetic Safety Alignment Dataset](https://huggingface.co/datasets/gretelai/gretel-safety-alignment-en-v1); [RedTeam-2K](https://huggingface.co/datasets/Ericwang/gpt-oss-distilled-redteam2k); [HarmfulTasks](https://github.com/CrystalEye42/eval-safety/blob/main/malicious_tasks_dataset.yaml) | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [NVIDIA-Nemotron-Nano-9B-v2](https://huggingface.co/nvidia/NVIDIA-Nemotron-Nano-9B-v2); [gemma-3-4b-it](https://huggingface.co/google/gemma-3-4b-it) |
|
| 851 |
+
| Synthetic Agentic Diverse Domains | Text | Undisclosed | \- | [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507); [Qwen3-32B](https://huggingface.co/Qwen/Qwen3-32B); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [DeepSeek-V3.2](https://huggingface.co/deepseek-ai/DeepSeek-V3.2) |
|
| 852 |
+
| Synthetic SWE Unverified | Text | Undisclosed | \- | [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen3-Coder-480B-A35B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct); [GLM-4.7-Flash](https://huggingface.co/zai-org/GLM-4.7-Flash) |
|
| 853 |
+
| Synthetic Scale HLE from Deepseek-V3 | Text | Undisclosed | Scale HLE | [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324) |
|
| 854 |
+
| Synthetic CDQuestions from Deepseek-V3 | Text | Undisclosed | [CDQuestions](https://cdquestions.com/) | [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324) |
|
| 855 |
+
| Synthetic Stack Exchange from Deepseek-V3 | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange) | [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324) |
|
| 856 |
+
| Synthetic GPQA from Deepseek-V3 | Text | Undisclosed | [Stack Exchange](https://archive.org/details/stackexchange) | [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324) |
|
| 857 |
+
| Synthetic Vedantu from Deepseek-V3 | Text | Undisclosed | [Vedantu](https://www.vedantu.com/) | [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324) |
|
| 858 |
+
| Synthetic Tool Call Schema for RL | Text | Undisclosed | [ToolBench](https://github.com/OpenBMB/ToolBench/tree/master); [glaive-function-calling-v2](https://huggingface.co/datasets/glaiveai/glaive-function-calling-v2); [APIGen Function-Calling](https://huggingface.co/datasets/Salesforce/xlam-function-calling-60k); [Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA) | [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507); [Qwen3-Next-80B-A3B-Thinking](https://huggingface.co/Qwen/Qwen3-Next-80B-A3B-Thinking) |
|
| 859 |
+
| Synthetic Data for Search | Text | Undisclosed | [Wikimedia](https://dumps.wikimedia.org/) | [MiniMax-M2](https://huggingface.co/MiniMaxAI/MiniMax-M2) |
|
| 860 |
+
| Synthetic Instruction Following for RL | Text | Undisclosed | \- | [NVIDIA-Nemotron-Nano-9B-v2](https://huggingface.co/nvidia/NVIDIA-Nemotron-Nano-9B-v2); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507) |
|
| 861 |
+
| Synthetic Conversational Agentic Tool-Use RL | Text | Undisclosed | \- | [DeepSeek-V3.2](https://huggingface.co/deepseek-ai/DeepSeek-V3.2); [DeepSeek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528); [Qwen3-235B-A22B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Thinking-2507); [Qwen3-32B](https://huggingface.co/Qwen/Qwen3-32B); [gpt-oss-120b](https://huggingface.co/openai/gpt-oss-120b); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507) |
|
| 862 |
+
| Synthetic Terminal Pivot RL | Text | Undisclosed | [SWE-smith](https://huggingface.co/datasets/SWE-bench/SWE-smith); [Nemotron-Cascade-RL-SWE](https://huggingface.co/datasets/nvidia/Nemotron-Cascade-RL-SWE); Vendor supplied | [DeepSeek-V3.2](https://huggingface.co/deepseek-ai/DeepSeek-V3.2); [Qwen3-Coder-480B-A35B-Instruct](https://huggingface.co/Qwen/Qwen3-Coder-480B-A35B-Instruct); [Kimi-K2.5](https://huggingface.co/moonshotai/Kimi-K2.5); [Qwen3-235B-A22B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507) |
|
| 863 |
+
|
| 864 |
+
## Language Distribution in Post-Training
|
| 865 |
+
|
| 866 |
+
For our post-training recipe, we focused on 9 main languages in addition to English: French, German, Italian, Japanese, Spanish, and Chinese
|
| 867 |
+
|
| 868 |
+
Those languages were represented in the form of multilingual reasoning and translation tasks.
|
| 869 |
+
|
| 870 |
+
The following table depicts our sample distribution for the 6 languages and 5 translation pairs.
|
| 871 |
+
|
| 872 |
+
| Language | Size |
|
| 873 |
+
| :--- | :--- |
|
| 874 |
+
| English | 13.48M |
|
| 875 |
+
| Italian | 53k |
|
| 876 |
+
| German | 53k |
|
| 877 |
+
| Spanish | 53k |
|
| 878 |
+
| French | 53k |
|
| 879 |
+
| Japanese | 53k |
|
| 880 |
+
| Chinese | 53k |
|
| 881 |
+
| English <-> Italian | 43.2k |
|
| 882 |
+
| English <-> German | 43.2k |
|
| 883 |
+
| English <-> Spanish | 43.2k |
|
| 884 |
+
| English <-> French | 43.2k |
|
| 885 |
+
| English <-> Japanese | 43.2k |
|
| 886 |
+
|
| 887 |
+
</details>
|
| 888 |
+
|
| 889 |
+
## Evaluation Dataset
|
| 890 |
+
|
| 891 |
+
* **Data Collection Method by dataset**: Hybrid: Human, Synthetic
|
| 892 |
+
* **Labeling Method by dataset**: Hybrid: Automated, Human, Synthetic
|
| 893 |
+
|
| 894 |
+
## Inference
|
| 895 |
+
|
| 896 |
+
* **Acceleration Engine:** PyTorch
|
| 897 |
+
* **Test Hardware:**
|
| 898 |
+
* NVIDIA Hopper
|
| 899 |
+
* 1-8x H100
|
| 900 |
+
* 1-8x H200
|
| 901 |
+
* NVIDIA Grace Blackwell
|
| 902 |
+
* GB200
|
| 903 |
+
|
| 904 |
+
## Ethical Considerations
|
| 905 |
+
|
| 906 |
+
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
|
| 907 |
+
|
| 908 |
+
We advise against circumvention of any provided safety guardrails contained in the Model without a substantially similar guardrail appropriate for your use case. For more details: [Safety](./safety.md) and [Explainability](./explainability.md) Subcards.
|
| 909 |
+
|
| 910 |
+
For more detailed information on ethical considerations for this model, please see the Model Card++ [Bias](./bias.md), and [Privacy](./privacy.md) Subcards.
|
| 911 |
+
|
| 912 |
+
Please report model quality, risk, security vulnerabilities or NVIDIA AI Concerns [here](https://www.nvidia.com/en-us/support/submit-security-vulnerability/).
|
| 913 |
+
|
| 914 |
+
## Citation
|
| 915 |
+
|
| 916 |
+
```bibtex
|
| 917 |
+
@misc{nvidia_nemotron_3_2025,
|
| 918 |
+
title = {NVIDIA Nemotron 3: Efficient and Open Intelligence},
|
| 919 |
+
author = {{NVIDIA}},
|
| 920 |
+
year = {2025},
|
| 921 |
+
url = {https://arxiv.org/abs/2512.20856},
|
| 922 |
+
note = {White Paper}
|
| 923 |
+
}
|
| 924 |
+
```
|
__init__.py
ADDED
|
File without changes
|
accuracy_chart.png
ADDED
|
bias.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
| Field | Response |
|
| 2 |
+
| :---- | :---- |
|
| 3 |
+
| Participation considerations from adversely impacted groups [protected classes](https://www.senate.ca.gov/content/protected-classes) in model design and testing: | None |
|
| 4 |
+
| Bias Metric (If Measured): | [BBQ Accuracy Scores in Ambiguous Contexts](https://github.com/nyu-mll/BBQ/) |
|
| 5 |
+
| Which characteristic (feature) show(s) the greatest difference in performance?: | The model shows high variance in the characteristics when it is used with a high temperature. |
|
| 6 |
+
| Which feature(s) have the worst performance overall? | Physical Appearance |
|
| 7 |
+
| Measures taken to mitigate against unwanted bias: | Supervised Fine-Tuning (SFT) and Reinforcement Learning from Human Feedback (RLHF) employed to calibrate the model’s reasoning capabilities to maintain logical consistency and appropriate complexity when interacting with or interpreting data from diverse age demographics. |
|
| 8 |
+
| If using internal data, description of methods implemented in data acquisition or processing, if any, to address the prevalence of identifiable biases in the training, testing, and validation data: | The training datasets contain a large amount of synthetic data generated by LLMs. We manually curated prompts. |
|
| 9 |
+
| Tools used to assess statistical imbalances and highlight patterns that may introduce bias into AI models: | [BBQ](https://github.com/nyu-mll/BBQ/) |
|
| 10 |
+
| Tools used to assess statistical imbalances and highlight patterns that may introduce bias into AI models: | These datasets, such as web-scraped finance reasoning data, do not collectively or exhaustively represent all demographic groups (and proportionally therein). For instance, these datasets do not contain explicit mentions of the following classes: age, gender, or ethnicity in approximately 97% to 99% of samples. Finance reasoning data scraped from SEC EDGAR contained a notable representational skew where ethnicity mentions are dominated by Middle Eastern contexts (found in finance documents), while gender is explicitly mentioned in only 0.9% of samples (including Male-only, Female-only, and Both). To mitigate these imbalances, we recommend considering these evaluation techniques such as bias audits, fine-tuning with demographically balanced datasets, and mitigation strategies such as 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. |
|
| 11 |
+
| Unwanted Bias Testing: | Constrained to English-language inputs. Multi-lingual parity is not currently claimed or guaranteed. |
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% macro render_extra_keys(json_dict, handled_keys) %}
|
| 2 |
+
{%- if json_dict is mapping %}
|
| 3 |
+
{%- for json_key in json_dict if json_key not in handled_keys %}
|
| 4 |
+
{%- if json_dict[json_key] is mapping or (json_dict[json_key] is sequence and json_dict[json_key] is not string) %}
|
| 5 |
+
{{- '\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | tojson | safe) ~ '</' ~ json_key ~ '>' }}
|
| 6 |
+
{%- else %}
|
| 7 |
+
{{-'\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | string) ~ '</' ~ json_key ~ '>' }}
|
| 8 |
+
{%- endif %}
|
| 9 |
+
{%- endfor %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{% endmacro %}
|
| 12 |
+
{%- set enable_thinking = enable_thinking if enable_thinking is defined else True %}
|
| 13 |
+
{%- set low_effort = low_effort if low_effort is defined else False %}
|
| 14 |
+
{%- set truncate_history_thinking = truncate_history_thinking if truncate_history_thinking is defined else True %}
|
| 15 |
+
|
| 16 |
+
{%- set ns = namespace(last_user_idx = -1) %}
|
| 17 |
+
{%- set loop_messages = messages %}
|
| 18 |
+
{%- for m in loop_messages %}
|
| 19 |
+
{%- if m["role"] == "user" %}
|
| 20 |
+
{%- set ns.last_user_idx = loop.index0 %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{%- endfor %}
|
| 23 |
+
|
| 24 |
+
{%- if messages[0]["role"] == "system" %}
|
| 25 |
+
{%- set system_message = messages[0]["content"] %}
|
| 26 |
+
{%- set loop_messages = messages[1:] %}
|
| 27 |
+
{%- else %}
|
| 28 |
+
{%- set system_message = "" %}
|
| 29 |
+
{%- set loop_messages = messages %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if not tools is defined %}
|
| 32 |
+
{%- set tools = [] %}
|
| 33 |
+
{%- endif %}
|
| 34 |
+
{# Recompute last_user_idx relative to loop_messages after handling system #}
|
| 35 |
+
{%- set ns = namespace(last_user_idx = -1) %}
|
| 36 |
+
{%- for m in loop_messages %}
|
| 37 |
+
{%- if m["role"] == "user" %}
|
| 38 |
+
{%- set ns.last_user_idx = loop.index0 %}
|
| 39 |
+
{%- endif %}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- if system_message is defined %}
|
| 42 |
+
{{- "<|im_start|>system\n" + system_message }}
|
| 43 |
+
{%- else %}
|
| 44 |
+
{%- if tools is iterable and tools | length > 0 %}
|
| 45 |
+
{{- "<|im_start|>system\n" }}
|
| 46 |
+
{%- endif %}
|
| 47 |
+
{%- endif %}
|
| 48 |
+
{%- if tools is iterable and tools | length > 0 %}
|
| 49 |
+
{%- if system_message is defined and system_message | length > 0 %}
|
| 50 |
+
{{- "\n\n" }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n" }}
|
| 53 |
+
{{- "<tools>" }}
|
| 54 |
+
{%- for tool in tools %}
|
| 55 |
+
{%- if tool.function is defined %}
|
| 56 |
+
{%- set tool = tool.function %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{{- "\n<function>\n<name>" ~ tool.name ~ "</name>" }}
|
| 59 |
+
{%- if tool.description is defined %}
|
| 60 |
+
{{- '\n<description>' ~ (tool.description | trim) ~ '</description>' }}
|
| 61 |
+
{%- endif %}
|
| 62 |
+
{{- '\n<parameters>' }}
|
| 63 |
+
{%- if tool.parameters is defined and tool.parameters is mapping and tool.parameters.properties is defined and tool.parameters.properties is mapping %}
|
| 64 |
+
{%- for param_name, param_fields in tool.parameters.properties|items %}
|
| 65 |
+
{{- '\n<parameter>' }}
|
| 66 |
+
{{- '\n<name>' ~ param_name ~ '</name>' }}
|
| 67 |
+
{%- if param_fields.type is defined %}
|
| 68 |
+
{{- '\n<type>' ~ (param_fields.type | string) ~ '</type>' }}
|
| 69 |
+
{%- endif %}
|
| 70 |
+
{%- if param_fields.description is defined %}
|
| 71 |
+
{{- '\n<description>' ~ (param_fields.description | trim) ~ '</description>' }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- if param_fields.enum is defined %}
|
| 74 |
+
{{- '\n<enum>' ~ (param_fields.enum | tojson | safe) ~ '</enum>' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- set handled_keys = ['name', 'type', 'description', 'enum'] %}
|
| 77 |
+
{{- render_extra_keys(param_fields, handled_keys) }}
|
| 78 |
+
{{- '\n</parameter>' }}
|
| 79 |
+
{%- endfor %}
|
| 80 |
+
{%- endif %}
|
| 81 |
+
{% set handled_keys = ['type', 'properties', 'required'] %}
|
| 82 |
+
{{- render_extra_keys(tool.parameters, handled_keys) }}
|
| 83 |
+
{%- if tool.parameters is defined and tool.parameters.required is defined %}
|
| 84 |
+
{{- '\n<required>' ~ (tool.parameters.required | tojson | safe) ~ '</required>' }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{{- '\n</parameters>' }}
|
| 87 |
+
{%- set handled_keys = ['type', 'name', 'description', 'parameters'] %}
|
| 88 |
+
{{- render_extra_keys(tool, handled_keys) }}
|
| 89 |
+
{{- '\n</function>' }}
|
| 90 |
+
{%- endfor %}
|
| 91 |
+
{{- "\n</tools>" }}
|
| 92 |
+
|
| 93 |
+
{{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
|
| 94 |
+
{%- endif %}
|
| 95 |
+
|
| 96 |
+
|
| 97 |
+
{%- if system_message is defined %}
|
| 98 |
+
{{- '<|im_end|>\n' }}
|
| 99 |
+
{%- else %}
|
| 100 |
+
{%- if tools is iterable and tools | length > 0 %}
|
| 101 |
+
{{- '<|im_end|>\n' }}
|
| 102 |
+
{%- endif %}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
|
| 105 |
+
{%- for message in loop_messages %}
|
| 106 |
+
{%- if message.role == "assistant" %}
|
| 107 |
+
{# Add reasoning content in to content field for unified processing below. #}
|
| 108 |
+
{%- if message.reasoning_content is defined and message.reasoning_content is string and message.reasoning_content | trim | length > 0 %}
|
| 109 |
+
{%- set content = "<think>\n" ~ message.reasoning_content ~ "\n</think>\n" ~ (message.content | default('', true)) %}
|
| 110 |
+
{%- else %}
|
| 111 |
+
{%- set content = message.content | default('', true) %}
|
| 112 |
+
{%- if content is string -%}
|
| 113 |
+
{# Allow downstream logic to to take care of broken thought, only handle coherent reasoning here. #}
|
| 114 |
+
{%- if '<think>' not in content and '</think>' not in content -%}
|
| 115 |
+
{%- set content = "<think></think>" ~ content -%}
|
| 116 |
+
{%- endif -%}
|
| 117 |
+
{%- else -%}
|
| 118 |
+
{%- set content = content -%}
|
| 119 |
+
{%- endif -%}
|
| 120 |
+
{%- endif %}
|
| 121 |
+
{%- if message.tool_calls is defined and message.tool_calls is iterable and message.tool_calls | length > 0 %}
|
| 122 |
+
{# Assistant message has tool calls. #}
|
| 123 |
+
{{- '<|im_start|>assistant\n' }}
|
| 124 |
+
{%- set include_content = not (truncate_history_thinking and loop.index0 < ns.last_user_idx) %}
|
| 125 |
+
{%- if content is string and content | trim | length > 0 %}
|
| 126 |
+
{%- if include_content %}
|
| 127 |
+
{{- (content | trim) ~ '\n' -}}
|
| 128 |
+
{%- else %}
|
| 129 |
+
{%- set c = (content | string) %}
|
| 130 |
+
{%- if '</think>' in c %}
|
| 131 |
+
{# Keep only content after the last closing think. Also generation prompt causes this. #}
|
| 132 |
+
{%- set c = c.split('</think>')[-1] %}
|
| 133 |
+
{%- elif '<think>' in c %}
|
| 134 |
+
{# If <think> was opened but never closed, drop the trailing think segment #}
|
| 135 |
+
{%- set c = c.split('<think>')[0] %}
|
| 136 |
+
{%- endif %}
|
| 137 |
+
{%- set c = "<think></think>" ~ c | trim %}
|
| 138 |
+
{%- if c | length > 0 %}
|
| 139 |
+
{{- c ~ '\n' -}}
|
| 140 |
+
{%- endif %}
|
| 141 |
+
{%- endif %}
|
| 142 |
+
{%- else %}
|
| 143 |
+
{{- "<think></think>" -}}
|
| 144 |
+
{%- endif %}
|
| 145 |
+
{%- for tool_call in message.tool_calls %}
|
| 146 |
+
{%- if tool_call.function is defined %}
|
| 147 |
+
{%- set tool_call = tool_call.function %}
|
| 148 |
+
{%- endif %}
|
| 149 |
+
{{- '<tool_call>\n<function=' ~ tool_call.name ~ '>\n' -}}
|
| 150 |
+
{%- if tool_call.arguments is defined %}
|
| 151 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 152 |
+
{{- '<parameter=' ~ args_name ~ '>\n' -}}
|
| 153 |
+
{%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
|
| 154 |
+
{{- args_value ~ '\n</parameter>\n' -}}
|
| 155 |
+
{%- endfor %}
|
| 156 |
+
{%- endif %}
|
| 157 |
+
{{- '</function>\n</tool_call>\n' -}}
|
| 158 |
+
{%- endfor %}
|
| 159 |
+
{{- '<|im_end|>\n' }}
|
| 160 |
+
{%- else %}
|
| 161 |
+
{# Assistant message doesn't have tool calls. #}
|
| 162 |
+
{%- if not (truncate_history_thinking and loop.index0 < ns.last_user_idx) %}
|
| 163 |
+
{{- '<|im_start|>assistant\n' ~ (content | default('', true) | string | trim) ~ '<|im_end|>\n' }}
|
| 164 |
+
{%- else %}
|
| 165 |
+
{%- set c = (content | default('', true) | string) %}
|
| 166 |
+
{%- if '<think>' in c and '</think>' in c %}
|
| 167 |
+
{%- set c = "<think></think>" ~ c.split('</think>')[-1] %}
|
| 168 |
+
{%- endif %}
|
| 169 |
+
{%- set c = c | trim %}
|
| 170 |
+
{%- if c | length > 0 %}
|
| 171 |
+
{{- '<|im_start|>assistant\n' ~ c ~ '<|im_end|>\n' }}
|
| 172 |
+
{%- else %}
|
| 173 |
+
{{- '<|im_start|>assistant\n<|im_end|>\n' }}
|
| 174 |
+
{%- endif %}
|
| 175 |
+
{%- endif %}
|
| 176 |
+
{%- endif %}
|
| 177 |
+
{%- elif message.role == "user" or message.role == "system" %}
|
| 178 |
+
{{- '<|im_start|>' + message.role + '\n' }}
|
| 179 |
+
{%- set content = message.content | string %}
|
| 180 |
+
{%- if message.role == "user" and loop.index0 == ns.last_user_idx and low_effort %}
|
| 181 |
+
{{- content + '\n\n{reasoning effort: low}' }}
|
| 182 |
+
{%- else %}
|
| 183 |
+
{{- content }}
|
| 184 |
+
{%- endif %}
|
| 185 |
+
{{- '<|im_end|>\n' }}
|
| 186 |
+
{%- elif message.role == "tool" %}
|
| 187 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 188 |
+
{{- '<|im_start|>user\n' }}
|
| 189 |
+
{%- endif %}
|
| 190 |
+
{{- '<tool_response>\n' }}
|
| 191 |
+
{{- message.content }}
|
| 192 |
+
{{- '\n</tool_response>\n' }}
|
| 193 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 194 |
+
{{- '<|im_end|>\n' }}
|
| 195 |
+
{%- elif loop.last %}
|
| 196 |
+
{{- '<|im_end|>\n' }}
|
| 197 |
+
{%- endif %}
|
| 198 |
+
{%- else %}
|
| 199 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>\n' }}
|
| 200 |
+
{%- endif %}
|
| 201 |
+
{%- endfor %}
|
| 202 |
+
|
| 203 |
+
{%- if add_generation_prompt %}
|
| 204 |
+
{%- if enable_thinking %}
|
| 205 |
+
{{- '<|im_start|>assistant\n<think>\n' }}
|
| 206 |
+
{%- else %}
|
| 207 |
+
{{- '<|im_start|>assistant\n<think></think>' }}
|
| 208 |
+
{%- endif %}
|
| 209 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"NemotronHForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"auto_map": {
|
| 8 |
+
"AutoConfig": "configuration_nemotron_h.NemotronHConfig",
|
| 9 |
+
"AutoModelForCausalLM": "modeling_nemotron_h.NemotronHForCausalLM"
|
| 10 |
+
},
|
| 11 |
+
"bos_token_id": 1,
|
| 12 |
+
"chunk_size": 128,
|
| 13 |
+
"conv_kernel": 4,
|
| 14 |
+
"dtype": "bfloat16",
|
| 15 |
+
"eos_token_id": 2,
|
| 16 |
+
"expand": 2,
|
| 17 |
+
"head_dim": 128,
|
| 18 |
+
"hidden_dropout": 0.0,
|
| 19 |
+
"hidden_size": 4096,
|
| 20 |
+
"hybrid_override_pattern": "MEMEMEM*EMEMEMEM*EMEMEMEM*EMEMEMEMEM*EMEMEMEMEM*EMEMEMEMEM*EMEMEMEMEM*EMEMEMEM*EMEMEMEME",
|
| 21 |
+
"initializer_range": 0.02,
|
| 22 |
+
"intermediate_size": 2688,
|
| 23 |
+
"layer_norm_epsilon": 1e-05,
|
| 24 |
+
"mamba_head_dim": 64,
|
| 25 |
+
"mamba_hidden_act": "silu",
|
| 26 |
+
"mamba_num_heads": 128,
|
| 27 |
+
"mamba_proj_bias": false,
|
| 28 |
+
"mamba_ssm_cache_dtype": "float32",
|
| 29 |
+
"max_position_embeddings": 262144,
|
| 30 |
+
"mlp_bias": false,
|
| 31 |
+
"mlp_hidden_act": "relu2",
|
| 32 |
+
"model_type": "nemotron_h",
|
| 33 |
+
"moe_intermediate_size": 2688,
|
| 34 |
+
"moe_latent_size": 1024,
|
| 35 |
+
"moe_shared_expert_intermediate_size": 5376,
|
| 36 |
+
"moe_shared_expert_overlap": false,
|
| 37 |
+
"mtp_hybrid_override_pattern": "*E",
|
| 38 |
+
"n_group": 1,
|
| 39 |
+
"n_groups": 8,
|
| 40 |
+
"n_routed_experts": 512,
|
| 41 |
+
"n_shared_experts": 1,
|
| 42 |
+
"norm_eps": 1e-05,
|
| 43 |
+
"norm_topk_prob": true,
|
| 44 |
+
"num_attention_heads": 32,
|
| 45 |
+
"num_experts_per_tok": 22,
|
| 46 |
+
"num_hidden_layers": 88,
|
| 47 |
+
"num_key_value_heads": 2,
|
| 48 |
+
"num_logits_to_keep": 1,
|
| 49 |
+
"num_nextn_predict_layers": 1,
|
| 50 |
+
"pad_token_id": 0,
|
| 51 |
+
"partial_rotary_factor": 1.0,
|
| 52 |
+
"rescale_prenorm_residual": true,
|
| 53 |
+
"residual_in_fp32": false,
|
| 54 |
+
"rope_theta": 10000,
|
| 55 |
+
"routed_scaling_factor": 5.0,
|
| 56 |
+
"sliding_window": null,
|
| 57 |
+
"ssm_state_size": 128,
|
| 58 |
+
"tie_word_embeddings": false,
|
| 59 |
+
"time_step_floor": 0.0001,
|
| 60 |
+
"time_step_max": 0.1,
|
| 61 |
+
"time_step_min": 0.001,
|
| 62 |
+
"topk_group": 1,
|
| 63 |
+
"transformers_version": "4.57.6",
|
| 64 |
+
"use_bias": false,
|
| 65 |
+
"use_cache": true,
|
| 66 |
+
"use_conv_bias": true,
|
| 67 |
+
"use_mamba_kernels": true,
|
| 68 |
+
"vocab_size": 131072
|
| 69 |
+
}
|
configuration_nemotron_h.py
ADDED
|
@@ -0,0 +1,410 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright 2024-2025 NVIDIA Corporation and The HuggingFace Inc. team. All rights reserved.
|
| 2 |
+
#
|
| 3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
# you may not use this file except in compliance with the License.
|
| 5 |
+
# You may obtain a copy of the License at
|
| 6 |
+
#
|
| 7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
#
|
| 9 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
# See the License for the specific language governing permissions and
|
| 13 |
+
# limitations under the License.
|
| 14 |
+
"""NemotronH model configuration"""
|
| 15 |
+
|
| 16 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 17 |
+
from transformers.utils import logging
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
logger = logging.get_logger(__name__)
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
class NemotronHConfig(PretrainedConfig):
|
| 24 |
+
r"""
|
| 25 |
+
This is the configuration class to store the configuration of a [`NemotronHModel`]. It is used to instantiate a
|
| 26 |
+
NemotronH model according to the specified arguments, defining the model architecture. Instantiating a configuration
|
| 27 |
+
with the defaults will yield a similar configuration to that of NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 [nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16).
|
| 28 |
+
|
| 29 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
| 30 |
+
documentation from [`PretrainedConfig`] for more information.
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
Args:
|
| 34 |
+
vocab_size (`int`, *optional*, defaults to 131072):
|
| 35 |
+
Vocabulary size of the NemotronH model. Defines the number of different tokens that can be represented by
|
| 36 |
+
the `inputs_ids` passed when calling [`NemotronHModel`].
|
| 37 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
| 38 |
+
Dimension of the hidden representations.
|
| 39 |
+
layers_block_type (`list`, *optional*):
|
| 40 |
+
Explicit list of layer types for each layer. Each element must be one of: "mamba", "attention", or "moe".
|
| 41 |
+
The number of layers is determined by the length of this list.
|
| 42 |
+
num_hidden_layers (`int`, *optional*):
|
| 43 |
+
Number of hidden layers in the Transformer encoder. This parameter is deprecated and only kept for
|
| 44 |
+
backward compatibility. The number of layers is now determined by the length of `layers_block_type`.
|
| 45 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
| 46 |
+
Whether the model's input and output word embeddings should be tied.
|
| 47 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
| 48 |
+
Whether or not the model should return the last key/values attentions.
|
| 49 |
+
num_logits_to_keep (`int`, *optional*, defaults to 1):
|
| 50 |
+
Number of prompt logits to calculate during generation. If `None`, all logits will be calculated.
|
| 51 |
+
pad_token_id (`int`, *optional*, defaults to 0):
|
| 52 |
+
The id of the padding token.
|
| 53 |
+
bos_token_id (`int`, *optional*, defaults to 1):
|
| 54 |
+
The id of the "beginning-of-sequence" token.
|
| 55 |
+
eos_token_id (`int`, *optional*, defaults to 2):
|
| 56 |
+
The id of the "end-of-sequence" token.
|
| 57 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
| 58 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
| 59 |
+
num_key_value_heads (`int`, *optional*, defaults to 8):
|
| 60 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention.
|
| 61 |
+
head_dim (`int`, *optional*, defaults to 128):
|
| 62 |
+
Dimension of each attention head.
|
| 63 |
+
max_position_embeddings (`int`, *optional*, defaults to 4096):
|
| 64 |
+
The maximum sequence length that this model might ever be used with.
|
| 65 |
+
attention_bias (`bool`, *optional*, defaults to `False`):
|
| 66 |
+
Whether to use bias in attention layers.
|
| 67 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
| 68 |
+
The dropout ratio for the attention probabilities.
|
| 69 |
+
sliding_window (`int`, *optional*):
|
| 70 |
+
Sliding window attention window size.
|
| 71 |
+
intermediate_size (`int`, *optional*, defaults to 21504):
|
| 72 |
+
Dimension of the MLP representations.
|
| 73 |
+
mlp_hidden_act (`str`, *optional*, defaults to `"relu2"`):
|
| 74 |
+
The non-linear activation function in the MLP layers.
|
| 75 |
+
mlp_bias (`bool`, *optional*, defaults to `False`):
|
| 76 |
+
Whether to use bias in MLP layers.
|
| 77 |
+
use_mamba_kernels (`bool`, *optional*, defaults to `True`):
|
| 78 |
+
Flag indicating whether or not to use the fast mamba kernels.
|
| 79 |
+
ssm_state_size (`int`, *optional*, defaults to 128):
|
| 80 |
+
The dimension of the mamba state space latents.
|
| 81 |
+
mamba_num_heads (`int`, *optional*, defaults to 128):
|
| 82 |
+
Number of heads in Mamba layers.
|
| 83 |
+
mamba_n_groups (`int`, *optional*, defaults to 8):
|
| 84 |
+
Number of groups in Mamba layers.
|
| 85 |
+
mamba_head_dim (`int`, *optional*, defaults to 64):
|
| 86 |
+
Dimension of each Mamba head.
|
| 87 |
+
mamba_d_conv (`int`, *optional*, defaults to 4):
|
| 88 |
+
The size of the mamba convolution kernel.
|
| 89 |
+
mamba_expand (`int`, *optional*, defaults to 2):
|
| 90 |
+
Expanding factor used to determine the mamba intermediate size.
|
| 91 |
+
mamba_hidden_act (`str`, *optional*, defaults to `"silu"`):
|
| 92 |
+
The non-linear activation function in the Mamba layers.
|
| 93 |
+
mamba_dt_min (`float`, *optional*, defaults to 0.001):
|
| 94 |
+
Minimum value for the time step in Mamba.
|
| 95 |
+
mamba_dt_max (`float`, *optional*, defaults to 0.1):
|
| 96 |
+
Maximum value for the time step in Mamba.
|
| 97 |
+
mamba_dt_limit (`tuple`, *optional*, defaults to `(0.0, inf)`):
|
| 98 |
+
Limits for the time step in Mamba.
|
| 99 |
+
mamba_dt_init_floor (`float`, *optional*, defaults to 0.0001):
|
| 100 |
+
Floor value for time step initialization in Mamba.
|
| 101 |
+
mamba_conv_bias (`bool`, *optional*, defaults to `True`):
|
| 102 |
+
Whether to use bias in the convolution layer of the mamba mixer block.
|
| 103 |
+
mamba_proj_bias (`bool`, *optional*, defaults to `False`):
|
| 104 |
+
Whether to use bias in the input and output projections of the mamba mixer block.
|
| 105 |
+
mamba_chunk_size (`int`, *optional*, defaults to 128):
|
| 106 |
+
Size of chunks for Mamba processing.
|
| 107 |
+
mamba_ssm_cache_dtype (`str`, *optional*, defaults to `"float32"`):
|
| 108 |
+
Data type for Mamba SSM cache states.
|
| 109 |
+
n_routed_experts (`int`, *optional*, defaults to 8):
|
| 110 |
+
Number of routed experts in MoE layers.
|
| 111 |
+
n_shared_experts (`int`, *optional*, defaults to 1):
|
| 112 |
+
Number of shared experts that are always activated in MoE layers.
|
| 113 |
+
moe_intermediate_size (`int`, *optional*, defaults to 7688):
|
| 114 |
+
Dimension of the MLP representations in routed experts.
|
| 115 |
+
moe_shared_expert_intermediate_size (`int`, *optional*, defaults to 7688):
|
| 116 |
+
Dimension of the MLP representations in shared experts.
|
| 117 |
+
moe_latent_size (`int`, *optional*):
|
| 118 |
+
Latent size for MoE expert projections. If `None`, uses `hidden_size`.
|
| 119 |
+
moe_shared_expert_overlap (`bool`, *optional*, defaults to `True`):
|
| 120 |
+
Whether shared experts overlap with routed experts.
|
| 121 |
+
num_experts_per_tok (`int`, *optional*, defaults to 2):
|
| 122 |
+
The number of experts to route per token (top-k routing parameter).
|
| 123 |
+
routed_scaling_factor (`float`, *optional*, defaults to 1.0):
|
| 124 |
+
Scaling factor applied to routed expert outputs.
|
| 125 |
+
n_group (`int`, *optional*, defaults to 1):
|
| 126 |
+
Number of groups for expert routing.
|
| 127 |
+
topk_group (`int`, *optional*, defaults to 1):
|
| 128 |
+
Top-k group parameter for expert selection.
|
| 129 |
+
norm_topk_prob (`bool`, *optional*, defaults to `True`):
|
| 130 |
+
Whether to normalize top-k probabilities in expert routing.
|
| 131 |
+
num_nextn_predict_layers (`int`, *optional*, defaults to 0):
|
| 132 |
+
Number of additional layers for multi-token prediction. If 0, multi-token prediction is disabled.
|
| 133 |
+
mtp_layers_block_type (`list`, *optional*, defaults to `['attention', 'moe']`):
|
| 134 |
+
Explicit list of layer types for multi-token prediction layers when `num_nextn_predict_layers` > 0.
|
| 135 |
+
use_bias (`bool`, *optional*, defaults to `False`):
|
| 136 |
+
Whether to use bias in the model.
|
| 137 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 138 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 139 |
+
layer_norm_epsilon (`float`, *optional*, defaults to 1e-05):
|
| 140 |
+
The epsilon used by the layer normalization layers.
|
| 141 |
+
residual_in_fp32 (`bool`, *optional*, defaults to `False`):
|
| 142 |
+
Whether or not residuals should be in `float32`.
|
| 143 |
+
hidden_dropout (`float`, *optional*, defaults to 0.0):
|
| 144 |
+
The dropout ratio for the hidden states.
|
| 145 |
+
rescale_prenorm_residual (`bool`, *optional*, defaults to `True`):
|
| 146 |
+
Whether to rescale the pre-normalization residual connections.
|
| 147 |
+
|
| 148 |
+
```python
|
| 149 |
+
>>> from transformers import NemotronHModel, NemotronHConfig
|
| 150 |
+
|
| 151 |
+
>>> # Initializing a NemotronH configuration
|
| 152 |
+
>>> configuration = NemotronHConfig()
|
| 153 |
+
|
| 154 |
+
>>> # Initializing a model (with random weights) from the configuration
|
| 155 |
+
>>> model = NemotronHModel(configuration)
|
| 156 |
+
|
| 157 |
+
>>> # Accessing the model configuration
|
| 158 |
+
>>> configuration = model.config
|
| 159 |
+
```"""
|
| 160 |
+
|
| 161 |
+
model_type = "nemotron_h"
|
| 162 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
| 163 |
+
|
| 164 |
+
@staticmethod
|
| 165 |
+
def _validate_layers_block_type(layers_block_type, expected_length=None, param_name="layers_block_type"):
|
| 166 |
+
"""
|
| 167 |
+
Validate layers_block_type list.
|
| 168 |
+
|
| 169 |
+
Args:
|
| 170 |
+
layers_block_type: List of layer types to validate
|
| 171 |
+
expected_length: If provided, validate the list has this length
|
| 172 |
+
param_name: Parameter name for error messages
|
| 173 |
+
|
| 174 |
+
Raises:
|
| 175 |
+
ValueError: If validation fails
|
| 176 |
+
"""
|
| 177 |
+
if not isinstance(layers_block_type, list):
|
| 178 |
+
raise ValueError(f"{param_name} must be a list of strings. Got type: {type(layers_block_type)}")
|
| 179 |
+
|
| 180 |
+
if expected_length is not None and len(layers_block_type) != expected_length:
|
| 181 |
+
raise ValueError(f"{param_name} must have length {expected_length}. Got length {len(layers_block_type)}.")
|
| 182 |
+
|
| 183 |
+
valid_types = {"mamba", "attention", "moe"}
|
| 184 |
+
if not all(block_type in valid_types for block_type in layers_block_type):
|
| 185 |
+
invalid = set(layers_block_type) - valid_types
|
| 186 |
+
raise ValueError(f"{param_name} contains invalid types: {invalid}. Must be one of: {valid_types}")
|
| 187 |
+
|
| 188 |
+
def __init__(
|
| 189 |
+
self,
|
| 190 |
+
# General model config
|
| 191 |
+
vocab_size=131072,
|
| 192 |
+
hidden_size=4096,
|
| 193 |
+
layers_block_type=None,
|
| 194 |
+
num_hidden_layers=None, # Deprecated, only for backward compatibility
|
| 195 |
+
tie_word_embeddings=False,
|
| 196 |
+
use_cache=True,
|
| 197 |
+
num_logits_to_keep=1,
|
| 198 |
+
# Token IDs
|
| 199 |
+
pad_token_id=0,
|
| 200 |
+
bos_token_id=1,
|
| 201 |
+
eos_token_id=2,
|
| 202 |
+
# Attention layer config
|
| 203 |
+
num_attention_heads=32,
|
| 204 |
+
num_key_value_heads=8,
|
| 205 |
+
head_dim=128,
|
| 206 |
+
max_position_embeddings=4096,
|
| 207 |
+
attention_bias=False,
|
| 208 |
+
attention_dropout=0.0,
|
| 209 |
+
sliding_window=None,
|
| 210 |
+
# MLP layer config
|
| 211 |
+
intermediate_size=21504,
|
| 212 |
+
mlp_hidden_act="relu2",
|
| 213 |
+
mlp_bias=False,
|
| 214 |
+
# Mamba layer config
|
| 215 |
+
use_mamba_kernels=True,
|
| 216 |
+
ssm_state_size=128,
|
| 217 |
+
mamba_num_heads=128,
|
| 218 |
+
mamba_n_groups=8,
|
| 219 |
+
mamba_head_dim=64,
|
| 220 |
+
mamba_d_conv=4,
|
| 221 |
+
mamba_expand=2,
|
| 222 |
+
mamba_hidden_act="silu",
|
| 223 |
+
mamba_dt_min=0.001,
|
| 224 |
+
mamba_dt_max=0.1,
|
| 225 |
+
mamba_dt_limit=(0.0, float("inf")),
|
| 226 |
+
mamba_dt_init_floor=1e-4,
|
| 227 |
+
mamba_conv_bias=True,
|
| 228 |
+
mamba_proj_bias=False,
|
| 229 |
+
mamba_chunk_size=128,
|
| 230 |
+
mamba_ssm_cache_dtype="float32",
|
| 231 |
+
# MoE config
|
| 232 |
+
n_routed_experts=8,
|
| 233 |
+
n_shared_experts=1,
|
| 234 |
+
moe_intermediate_size=7688,
|
| 235 |
+
moe_shared_expert_intermediate_size=7688,
|
| 236 |
+
moe_latent_size=None,
|
| 237 |
+
moe_shared_expert_overlap=True,
|
| 238 |
+
num_experts_per_tok=2,
|
| 239 |
+
routed_scaling_factor=1.0,
|
| 240 |
+
n_group=1,
|
| 241 |
+
topk_group=1,
|
| 242 |
+
norm_topk_prob=True,
|
| 243 |
+
# Multi-token prediction config
|
| 244 |
+
num_nextn_predict_layers=0,
|
| 245 |
+
mtp_layers_block_type=["attention", "moe"],
|
| 246 |
+
# General training config
|
| 247 |
+
use_bias=False,
|
| 248 |
+
initializer_range=0.02,
|
| 249 |
+
layer_norm_epsilon=1e-5,
|
| 250 |
+
residual_in_fp32=False,
|
| 251 |
+
hidden_dropout=0.0,
|
| 252 |
+
rescale_prenorm_residual=True,
|
| 253 |
+
**kwargs,
|
| 254 |
+
):
|
| 255 |
+
# Backward compatibility: convert hybrid_override_pattern to layers_block_type
|
| 256 |
+
# Always pop hybrid_override_pattern from kwargs to prevent it from being set as an attribute
|
| 257 |
+
if "hybrid_override_pattern" in kwargs:
|
| 258 |
+
pattern = kwargs.pop("hybrid_override_pattern")
|
| 259 |
+
if layers_block_type is None:
|
| 260 |
+
layers_block_type = self._pattern_to_list(pattern)
|
| 261 |
+
elif layers_block_type is None:
|
| 262 |
+
# Default layers_block_type if not provided
|
| 263 |
+
layers_block_type = ["mamba", "moe", "attention", "moe"]
|
| 264 |
+
|
| 265 |
+
# Note: num_hidden_layers is deprecated and ignored if layers_block_type is explicitly provided
|
| 266 |
+
# It's only kept for backward compatibility when loading old configs
|
| 267 |
+
if num_hidden_layers is not None:
|
| 268 |
+
# Warn if num_hidden_layers is provided but doesn't match layers_block_type
|
| 269 |
+
if len(layers_block_type) != num_hidden_layers:
|
| 270 |
+
logger.warning(
|
| 271 |
+
f"num_hidden_layers ({num_hidden_layers}) is deprecated and doesn't match "
|
| 272 |
+
f"layers_block_type length ({len(layers_block_type)}). Using layers_block_type length."
|
| 273 |
+
)
|
| 274 |
+
|
| 275 |
+
# Backward compatibility: convert mtp_hybrid_override_pattern to mtp_layers_block_type
|
| 276 |
+
# Always pop mtp_hybrid_override_pattern from kwargs to prevent it from being set as an attribute
|
| 277 |
+
if "mtp_hybrid_override_pattern" in kwargs:
|
| 278 |
+
pattern = kwargs.pop("mtp_hybrid_override_pattern")
|
| 279 |
+
if mtp_layers_block_type is None or mtp_layers_block_type == ["attention", "moe"]:
|
| 280 |
+
mtp_layers_block_type = self._pattern_to_list(pattern)
|
| 281 |
+
|
| 282 |
+
self.vocab_size = vocab_size
|
| 283 |
+
self.tie_word_embeddings = tie_word_embeddings
|
| 284 |
+
self.hidden_size = hidden_size
|
| 285 |
+
self.intermediate_size = intermediate_size
|
| 286 |
+
self.num_attention_heads = num_attention_heads
|
| 287 |
+
self.head_dim = head_dim
|
| 288 |
+
self.sliding_window = sliding_window
|
| 289 |
+
self.max_position_embeddings = max_position_embeddings
|
| 290 |
+
self.attention_dropout = attention_dropout
|
| 291 |
+
self.hidden_dropout = hidden_dropout
|
| 292 |
+
|
| 293 |
+
# Validate layers_block_type (no longer checking length against num_hidden_layers)
|
| 294 |
+
self._validate_layers_block_type(layers_block_type, expected_length=None, param_name="layers_block_type")
|
| 295 |
+
self.layers_block_type = layers_block_type
|
| 296 |
+
|
| 297 |
+
# for backward compatibility
|
| 298 |
+
if num_key_value_heads is None:
|
| 299 |
+
num_key_value_heads = num_attention_heads
|
| 300 |
+
|
| 301 |
+
self.num_key_value_heads = num_key_value_heads
|
| 302 |
+
self.mlp_hidden_act = mlp_hidden_act
|
| 303 |
+
self.attention_bias = attention_bias
|
| 304 |
+
self.mlp_bias = mlp_bias
|
| 305 |
+
self.use_bias = use_bias
|
| 306 |
+
self.initializer_range = initializer_range
|
| 307 |
+
self.layer_norm_epsilon = layer_norm_epsilon
|
| 308 |
+
self.residual_in_fp32 = residual_in_fp32
|
| 309 |
+
|
| 310 |
+
self.use_cache = use_cache
|
| 311 |
+
self.num_logits_to_keep = num_logits_to_keep
|
| 312 |
+
|
| 313 |
+
self.use_mamba_kernels = use_mamba_kernels
|
| 314 |
+
self.n_groups = mamba_n_groups
|
| 315 |
+
self.mamba_head_dim = mamba_head_dim
|
| 316 |
+
self.ssm_state_size = ssm_state_size
|
| 317 |
+
self.mamba_num_heads = mamba_num_heads
|
| 318 |
+
self.conv_kernel = mamba_d_conv
|
| 319 |
+
self.expand = mamba_expand
|
| 320 |
+
self.mamba_hidden_act = mamba_hidden_act
|
| 321 |
+
self.time_step_min = mamba_dt_min
|
| 322 |
+
self.time_step_max = mamba_dt_max
|
| 323 |
+
self.time_step_limit = mamba_dt_limit
|
| 324 |
+
self.time_step_floor = mamba_dt_init_floor
|
| 325 |
+
self.use_conv_bias = mamba_conv_bias
|
| 326 |
+
self.mamba_proj_bias = mamba_proj_bias
|
| 327 |
+
self.chunk_size = mamba_chunk_size
|
| 328 |
+
self.rescale_prenorm_residual = rescale_prenorm_residual
|
| 329 |
+
self.n_routed_experts = n_routed_experts
|
| 330 |
+
self.n_shared_experts = n_shared_experts
|
| 331 |
+
self.moe_intermediate_size = moe_intermediate_size
|
| 332 |
+
self.moe_shared_expert_intermediate_size = moe_shared_expert_intermediate_size
|
| 333 |
+
self.moe_latent_size = moe_latent_size
|
| 334 |
+
self.moe_shared_expert_overlap = moe_shared_expert_overlap
|
| 335 |
+
self.num_experts_per_tok = num_experts_per_tok
|
| 336 |
+
self.routed_scaling_factor = routed_scaling_factor
|
| 337 |
+
self.n_group = n_group
|
| 338 |
+
self.topk_group = topk_group
|
| 339 |
+
self.norm_topk_prob = norm_topk_prob
|
| 340 |
+
self.mamba_ssm_cache_dtype = mamba_ssm_cache_dtype
|
| 341 |
+
|
| 342 |
+
# MTP config
|
| 343 |
+
self.num_nextn_predict_layers = num_nextn_predict_layers
|
| 344 |
+
|
| 345 |
+
# Validate mtp_layers_block_type is provided when MTP is enabled
|
| 346 |
+
if self.num_nextn_predict_layers > 0:
|
| 347 |
+
if mtp_layers_block_type is None:
|
| 348 |
+
raise ValueError(
|
| 349 |
+
"mtp_layers_block_type is required when num_nextn_predict_layers > 0. "
|
| 350 |
+
"Please provide an explicit list of layer types for MTP layers. "
|
| 351 |
+
"Example: mtp_layers_block_type=['attention', 'moe']"
|
| 352 |
+
)
|
| 353 |
+
self._validate_layers_block_type(mtp_layers_block_type, None, "mtp_layers_block_type")
|
| 354 |
+
self.mtp_layers_block_type = mtp_layers_block_type
|
| 355 |
+
|
| 356 |
+
super().__init__(
|
| 357 |
+
pad_token_id=pad_token_id,
|
| 358 |
+
bos_token_id=bos_token_id,
|
| 359 |
+
eos_token_id=eos_token_id,
|
| 360 |
+
tie_word_embeddings=tie_word_embeddings,
|
| 361 |
+
**kwargs,
|
| 362 |
+
)
|
| 363 |
+
|
| 364 |
+
@property
|
| 365 |
+
def num_hidden_layers(self) -> int:
|
| 366 |
+
"""
|
| 367 |
+
Number of hidden layers derived from the length of layers_block_type.
|
| 368 |
+
This property replaces the deprecated num_hidden_layers parameter.
|
| 369 |
+
"""
|
| 370 |
+
return len(self.layers_block_type)
|
| 371 |
+
|
| 372 |
+
@num_hidden_layers.setter
|
| 373 |
+
def num_hidden_layers(self, value):
|
| 374 |
+
"""
|
| 375 |
+
Setter for backward compatibility when loading configs.
|
| 376 |
+
The value is ignored since num_hidden_layers is computed from layers_block_type.
|
| 377 |
+
"""
|
| 378 |
+
# Ignore the value - num_hidden_layers is always derived from layers_block_type
|
| 379 |
+
pass
|
| 380 |
+
|
| 381 |
+
@property
|
| 382 |
+
def hybrid_override_pattern(self) -> str:
|
| 383 |
+
"""
|
| 384 |
+
Backward compatibility property.
|
| 385 |
+
Returns the pattern string representation of layers_block_type.
|
| 386 |
+
"""
|
| 387 |
+
return self._list_to_pattern(self.layers_block_type)
|
| 388 |
+
|
| 389 |
+
@property
|
| 390 |
+
def mtp_hybrid_override_pattern(self) -> str:
|
| 391 |
+
"""
|
| 392 |
+
Backward compatibility property.
|
| 393 |
+
Returns the pattern string representation of mtp_layers_block_type.
|
| 394 |
+
"""
|
| 395 |
+
return self._list_to_pattern(self.mtp_layers_block_type)
|
| 396 |
+
|
| 397 |
+
@staticmethod
|
| 398 |
+
def _list_to_pattern(layers_list: list) -> str:
|
| 399 |
+
"""Convert list of layer types back to pattern string (for backward compatibility)."""
|
| 400 |
+
reverse_mapping = {"mamba": "M", "moe": "E", "attention": "*"}
|
| 401 |
+
return "".join(reverse_mapping[layer_type] for layer_type in layers_list)
|
| 402 |
+
|
| 403 |
+
@staticmethod
|
| 404 |
+
def _pattern_to_list(pattern: str) -> list:
|
| 405 |
+
"""Convert pattern string to list of layer types (for backward compatibility)."""
|
| 406 |
+
pattern_mapping = {"M": "mamba", "E": "moe", "*": "attention"}
|
| 407 |
+
return [pattern_mapping[char] for char in pattern]
|
| 408 |
+
|
| 409 |
+
|
| 410 |
+
__all__ = ["NemotronHConfig"]
|
explainability.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
| Field | Response |
|
| 2 |
+
| :---- | :---- |
|
| 3 |
+
| Intended Task/Domain: | Text generation, reasoning, and chat |
|
| 4 |
+
| Model Type: | Text-to-text Mamba2-Transformer Hybrid |
|
| 5 |
+
| Intended Users: | Generative AI creators working with conversational AI models and image content. |
|
| 6 |
+
| Output: | Text |
|
| 7 |
+
| Tools used to evaluate datasets to identify synthetic data and ensure data authenticity. | We used a Gemma-3 4B-based filtering model fine-tuned on [Nemotron Content Safety Dataset v2](https://huggingface.co/datasets/nvidia/Aegis-AI-Content-Safety-Dataset-2.0) to ensure the quality of synthetic data. |
|
| 8 |
+
| Describe how the model works: | Generates text by predicting the next word or token based on the context provided in the input sequence using multiple self-attention layers. |
|
| 9 |
+
| Name the adversely impacted groups this has been tested to deliver comparable outcomes regardless of: | Age, Disability Status, Gender Identity, Nationality, Physical Appearance, Ethnicity, Socioeconomic Status, Sexual Orientation, Religion |
|
| 10 |
+
| Technical Limitations & Mitigation: | This model performs particularly well in instruction following regimes, as such may be strongly influenced by untrusted inputs and should be paired with appropriate guardrails and data filtering to better align use-case behaviors when exposed to such data. |
|
| 11 |
+
| Verified to have met prescribed NVIDIA quality standards: | Yes |
|
| 12 |
+
| Performance Metrics: | Accuracy, Throughput, and User-side throughput |
|
| 13 |
+
| Potential Known Risks: | The model was optimized explicitly for instruction following and as such may be influenced by untrusted inputs (prompt injection, indirect prompt injection, jailbreaking, web search, etc.) as a result of its instruction tuning that may degrade safety alignment and other training efforts. This model should be paired with additional guardrails and data filtering to limit exposure to instructions from malicious sources. Bypassing of safety alignment, system guardrails, and filters may allow harmful outcomes up to and including remote code execution in some agentic systems when effective security controls are not in place. The model was trained on data that contains toxic language and societal biases originally crawled from the internet. Therefore, the model may generate and amplify harmful, biased, or otherwise unsafe content reinforcing these biases and return toxic responses especially when prompted with toxic prompts. The model may also generate answers that may be inaccurate, omit key information, or include irrelevant or redundant text producing socially unacceptable or undesirable text, even if the prompt itself does not include anything explicitly offensive. The model may exhibit self-anthropomorphism (e.g., displaying human-like characteristics in dialogue, such as expressing preferences and emotions). In integrated system contexts, the model could potentially be exploited to access or disclose information beyond the model’s intended permissions or scope of operation. |
|
| 14 |
+
| Licensing: | [NVIDIA Nemotron Open Model License Agreement](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-nemotron-open-model-license/) |
|
generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"bos_token_id": 1,
|
| 5 |
+
"eos_token_id": [
|
| 6 |
+
2,
|
| 7 |
+
11
|
| 8 |
+
],
|
| 9 |
+
"pad_token_id": 0,
|
| 10 |
+
"temperature": 1.0,
|
| 11 |
+
"top_p": 0.95,
|
| 12 |
+
"transformers_version": "4.57.1"
|
| 13 |
+
}
|
model-00001-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:105bd2c4f20e8f68f7114a11a0a8ead5a38b3c8d1cb962ba88fb8ee58d21a294
|
| 3 |
+
size 4997999760
|
model-00002-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec4d02dbe117562653395d0699fd4c8c8d5a7caf5a9dc23d3adb71f878f25f55
|
| 3 |
+
size 4996714072
|
model-00003-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:137a7acc3c5648a8834491328670eb551dc9becdac1e10b7ddb0a07eba27181d
|
| 3 |
+
size 4996714072
|
model-00004-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0a198f937fa3d7b3ba1c3ea4684e3cd32887d52b6ca2905817bbf1d8c142326
|
| 3 |
+
size 4996459064
|
model-00005-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e74a3aed4c6fbbcc9cce227c1daa24ab0c95a662b9d0aed496ec28f7a5c0a7b
|
| 3 |
+
size 4958833808
|
model-00006-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ccac6d4cb59f7c5e4c523e08e2e376876772c5cb359a63a1e26c26175eb4604
|
| 3 |
+
size 4998024408
|
model-00007-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:068306f784fb43b69b15ee91d949d9e333d7c7821167b84d5f845000266967d5
|
| 3 |
+
size 4996714952
|
model-00008-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8f3b25f04a9549f13870966d05682602b22428023df2430c82381d33fd07fcc
|
| 3 |
+
size 4996714936
|
model-00009-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bc45e88a5fbe207974ac5104b91e83a32d2af26b480886b595eab4e7a52063a
|
| 3 |
+
size 4996459848
|
model-00010-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b9e6fe453356fb2a21eca51ff828376ed997da9de0614a1ea7e836791250490
|
| 3 |
+
size 4996714992
|
model-00011-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee3d39ef8833d339831581e2755539154a3963533f51b12da83ccaa945588a7e
|
| 3 |
+
size 4975723264
|
model-00012-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ec01d95016c0e44e549bb2c5583b578a77aa4b1402fa2ce919c1cdbf1665fca
|
| 3 |
+
size 4997651448
|
model-00013-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7aac706af7ea0d3e36255482b8529b6dc5933b92099da283e668ba849c694b75
|
| 3 |
+
size 4996714960
|
model-00014-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eaa949d7ac1b1a602ee2a3897a32976bd67d6500226982465a9773f26b2f5928
|
| 3 |
+
size 4996459848
|
model-00015-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f16316eaa892fe5442538a21857935297eb098d292750bd8721455048e7a311
|
| 3 |
+
size 4996714936
|
model-00016-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de2791b665ad8a3fe24b41b827bc509b09608ddade928c039b60adf20b61e8fa
|
| 3 |
+
size 4996714984
|
model-00017-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8ea9d674374409b5bc27b8e03b08dca851962497a60bac4c6cd92605b943ae8
|
| 3 |
+
size 4915166568
|
model-00018-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:456272c3c51cb1ba1bd0c04244bc252193bfd7f68c5be2f53a01beeaabd00231
|
| 3 |
+
size 4997651448
|
model-00019-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e5d3ceedf3ab01c869ec856c483ac6e8a069567572887d524936796571f2eea
|
| 3 |
+
size 4996714960
|
model-00020-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20bbcb0cc5b14f026b9cf095de2944976005435ee468d895c0656e4ef44cffcc
|
| 3 |
+
size 4996459848
|
model-00021-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53d503f4921496ce2f369945c729ee9383fb6f7c3d9d6b26fa380ed902cc3b64
|
| 3 |
+
size 4996714936
|
model-00022-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e92c37f824fd6d00afd7a7c327574118027acc504d8ee7b7a202a970b184de82
|
| 3 |
+
size 4996714984
|
model-00023-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:faa4fcdb4a8bd316ecf4a58e073f232dfa112fd77537986690c5b6e25d896847
|
| 3 |
+
size 4915166568
|
model-00024-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:023e6b268664f373450d1897531654d8c64bafdbcbda4e5c004f9b329b3a0adc
|
| 3 |
+
size 4997651448
|
model-00025-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea00058bccb261b81ad9c9d80d96f0cac95a1714d9718cc2b405821f9ab60068
|
| 3 |
+
size 4996714960
|
model-00026-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4df92010a5ddde290aac8d9b9d8455e65ca24e51437432d87b03a19525540d5
|
| 3 |
+
size 4996459848
|
model-00027-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bbe85c2744764f3e893f1eb3eed9e52b33429226f789ba5a78ba92af9f34b63
|
| 3 |
+
size 4996714936
|
model-00028-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:118a44204fe005f7f04b0ff1cdf3e2739c2851a5aaccaf0dc3be870a37d71de7
|
| 3 |
+
size 4996714984
|
model-00029-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ac147a050c58dd196525500ee8fd57ee84be7c5aefac0cea411037cf893a8f8
|
| 3 |
+
size 4915166568
|
model-00030-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24020dd8e7c80f5b7e0f042f53b3ed9edb0081b14caa096b620fd5f4cfb064db
|
| 3 |
+
size 4997651448
|
model-00031-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f76e750d538422791eb1f7e4baf923ef511543d84d38d3ea043800cd3900186
|
| 3 |
+
size 4996714960
|
model-00032-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cafad8ebd1897a7c9eb874b7af2ebd485928f8a3209cd2a2614a5add84cd48f3
|
| 3 |
+
size 4996459848
|
model-00033-of-00050.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:65496d854228f5c9eb9427eb86029c7ff3b43fe2dfb00ff52af6b3f5e829392e
|
| 3 |
+
size 4996714936
|