Back to Models
unsloth logo

unsloth/NVIDIA-Nemotron-3-Nano-4B-GGUF

unslothgeneral

GGUFs still converting, please wait until live.

Read our How to Run Nemotron 3 Nano Guide!

See Unsloth Dynamic 2.0 GGUFs for our quantization benchmarks.

  • Note <think> and </think> are separate tokens, so use --special if needed.
  • You can also fine-tune the model with Unsloth.

NVIDIA-Nemotron-3-Nano-4B-BF16

Model Developer: NVIDIA Corporation

Model Dates:

Dec 2025 - Jan 2026

Data Freshness:

September 2024

The pretraining data has a cutoff date of September 2024.

Model Overview

NVIDIA-Nemotron-3-Nano-4B-BF16 is a small language model (SLM) trained from scratch by NVIDIA, and designed as a unified model for both reasoning and non-reasoning tasks. 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 controlled via a system prompt. If the user prefers the model to provide its final answer without intermediate reasoning traces, it can be configured to do so, albeit with a slight decrease in accuracy for harder prompts that require reasoning. Conversely, allowing the model to generate reasoning traces first generally results in higher-quality final solutions to queries and tasks.

The model has been compressed from NVIDIA-Nemotron-Nano-9B-v2 using the Nemotron Elastic framework. The details of the parent model NVIDIA-Nemotron-Nano-9B-v2 can be found in (Nemotron-H tech report). The model uses a hybrid architecture consisting primarily of Mamba-2 and MLP layers combined with just four Attention layers.

The supported languages include: English. Improved using Qwen.

This model is ready for commercial use.

License/Terms of Use

Governing Terms: Use of this model is governed by the NVIDIA Nemotron Open Model License.

Deployment Geography: Global

Use Case

NVIDIA-Nemotron-3-Nano-4B is an edge-ready small language model intended for Agentic AI in edge platforms (Jetson Thor, GeForce RTX, DGX Spark). It targets key-uses including AI gaming NPCs (teammates / companions), local voice assistants (for devices, apps, and games), and IoT automation. It is to be used in English and coding languages.

Release Date: 3/16/2026

Huggingface 3/16/2026 via https://huggingface.co/

References

Model Architecture

  • Architecture Type: Mamba2-Transformer Hybrid
  • Network Architecture: Nemotron-Hybrid

Input

  • Input Type(s): Text
  • Input Format(s): String
  • Input Parameters: One-Dimensional (1D): Sequences
  • Other Properties Related to Input: Context length up to 262K. Supported languages include English.

Output

  • Output Type(s): Text
  • Output Format: String
  • Output Parameters: One-Dimensional (1D): Sequences
  • Other properties Related to Output: Sequences up to 262K

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

Software Integration

  • Runtime Engine(s): NeMo 25.07
  • Supported Hardware Microarchitecture Compatibility: NVIDIA A10G, NVIDIA H100-80GB, NVIDIA A100, GeForce RTX
  • Operating System(s): Linux

The integration of foundation and fine-tuned models into AI systems requires additional testing using use-case-specific data to ensure safe and effective deployment. Following the V-model methodology, iterative testing and validation at both unit and system levels are essential to mitigate risks, meet technical and functional requirements, and ensure compliance with safety and ethical standards before deployment.

Use it with Transformers

The snippet below shows how to use this model with Huggingface Transformers (tested on version 4.48.3).

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM

# Load tokenizer and model
tokenizer = AutoTokenizer.from_pretrained("nvidia/NVIDIA-Nemotron-3-Nano-4B")
model = AutoModelForCausalLM.from_pretrained(
    "nvidia/NVIDIA-Nemotron-3-Nano-4B",
    torch_dtype=torch.bfloat16,
    trust_remote_code=True,
    device_map="auto"
)
messages = [
    {"role": "system", "content": <system_prompt>},
    {"role": "user", "content": "Write a haiku about GPUs"},
]
tokenized_chat = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_tensors="pt"
).to(model.device)

outputs = model.generate(
    tokenized_chat,
    max_new_tokens=32,
    eos_token_id=tokenizer.eos_token_id
)
print(tokenizer.decode(outputs[0]))

temperature=1.0 and top_p=0.95 are recommended for reasoning tasks, while temperature=0.6 and top_p=0.95 are recommended for tool calling.

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

messages = [
    {"role": "system", "content": <system_prompt>},
    {"role": "user", "content": "Write a haiku about GPUs"},
]
tokenized_chat = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    enable_thinking=False,
    add_generation_prompt=True,
    return_tensors="pt"
).to(model.device)

outputs = model.generate(
    tokenized_chat,
    max_new_tokens=32,
    eos_token_id=tokenizer.eos_token_id
)
print(tokenizer.decode(outputs[0]))

Use it with vLLM

We need vllm>=0.15.1 for this model. If you are on Jetson Thor or DGX Spark, please use this vllm container.

pip install -U "vllm>=0.15.1"

Download the custom parser from the Hugging Face repository.

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

Launch a vLLM server using the custom parser.

vllm serve nvidia/NVIDIA-Nemotron-3-Nano-4B-BF16 \
  --served-model-name nemotron3-nano-4B-BF16\
  --max-num-seqs 8 \
  --tensor-parallel-size 1 \
  --max-model-len 262144 \
  --port 8000 \
  --trust-remote-code \
  --mamba_ssm_cache_dtype float32 \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_coder \
  --reasoning-parser-plugin nano_v3_reasoning_parser.py \
  --reasoning-parser nano_v3

Access the hosted API using a python client.


from openai import OpenAI
import asyncio
from openai import AsyncOpenAI

# NOTE: Streaming is preferred for better performance and resource efficiency.
# It allows you to start processing responses as they arrive, reducing latency.

# Synchronous example (non-streaming)
client = OpenAI(
    api_key="your-nvapikey",
    base_url="base-url"
)

response = client.chat.completions.create(
    model="nemotron3-nano-4B-BF16",
    messages=[
        {
            "role": "user",
            "content": "Hello!"
        }
    ],
    temperature=0.7,
    max_tokens=256,
    top_p=0.7,
    stream=false
)

print(response.choices[0].message.content)

Use it with TRT-LLM

Launch the model using TRT-LLM

docker run -v /home/root/.cache/huggingface/:/root/.cache/huggingface/ --rm --ulimit memlock=-1 --ulimit stack=67108864 --gpus=all --ipc=host --network host -d -e MODEL=NVIDIA-Nemotron-3-Nano-4B-BF16 -e HF_TOKEN=$HF_TOKEN nvcr.io/nvidia/tensorrt-llm/release:1.3.0rc6 bash -c '
cat > /tmp/extra-llm-api-config.yml <<EOF
kv_cache_config:
  dtype: "auto"
  enable_block_reuse: false
cuda_graph_config:
  max_batch_size: 32
  enable_padding: true
disable_overlap_scheduler: true
moe_config: 
  backend: CUTLASS
EOF

trtllm-serve  \
NVIDIA-Nemotron-3-Nano-4B-BF16 \
--host 0.0.0.0 \
--port 8123 \
--max_batch_size 32 \
--extra_llm_api_options /tmp/extra-llm-api-config.yml '

Access the hosted endpoint using curl command.

curl http://localhost:8123/v1/chat/completions -H "Content-Type: application/json"  -d '{
    "model": "NVIDIA-Nemotron-3-Nano-4B-BF16",
    "messages": [
        {
            "role": "user",
            "content": "Where is New York?"
        }
    ],
    "max_tokens": 1024,
    "top_p": 1.0
}' -w "\n"

Model Version

  • v1.0

Training, Testing, and Evaluation Datasets

Training datasets

  • Data Modality: Text
  • Text Training Data Size: More than 10 Trillion Tokens
  • Train/Test/Valid Split: We used 100% of the corpus for pre-training and relied on external benchmarks for testing.
  • Data Collection Method by dataset: Hybrid: Automated, Human, Synthetic
  • Labeling Method by dataset: Hybrid: Automated, Human, Synthetic

Properties: The post-training corpus for NVIDIA-Nemotron-3-Nano-4B consists of English and multilingual text (German, Spanish, French, Italian, Korean, Portuguese, Russian, Japanese, Chinese and English). Our sources cover a variety of document types such as: webpages, dialogue, articles, and other written materials. The corpus spans domains including code, legal, math, science, finance, and more. We also include a small portion of question-answering, and alignment style data to improve model accuracies. For several of the domains listed above we used synthetic data, specifically reasoning traces, from DeepSeek R1/R1-0528, Qwen3-235B-A22B, Nemotron 4 340B, Qwen2.5-32B-Instruct-AWQ, Qwen2.5-14B-Instruct, Qwen 2.5 72B.

More details on the datasets and synthetic data generation methods can be found in the technical report NVIDIA Nemotron Nano 2: An Accurate and Efficient Hybrid Mamba-Transformer Reasoning Model .

Public Datasets

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

Private Non-publicly Accessible Datasets of Third Parties

Dataset
Global Regulation
Workbench

Online Dataset Sources

The English Common Crawl data was downloaded from the Common Crawl Foundation (see their FAQ for details on their crawling) and includes the snapshots CC-MAIN-2013-20 through CC-MAIN-2025-13. The data was subsequently deduplicated and filtered in various ways described in the Nemotron-CC paper.

Additionally, we extracted data for fifteen languages from the following three Common Crawl snapshots: CC-MAIN-2024-51, CC-MAIN-2025-08, CC-MAIN-2025-18. The fifteen languages included were Arabic, Chinese, Danish, Dutch, French, German, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, Swedish, and Thai. As we did not have reliable multilingual model-based quality classifiers available, we applied just heuristic filtering instead—similar to what we did for lower quality English data in the Nemotron-CC pipeline, but selectively removing some filters for some languages that did not work well. Deduplication was done in the same way as for Nemotron-CC.

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

DatasetModalityDataset Size (Tokens)Collection Period
English Common CrawlText3.360T4/8/2025
Multilingual Common CrawlText812.7B5/1/2025
GitHub CrawlText747.4B4/29/2025
English Common Crawl 1.1TextNot disclosed10/2/2025

DatasetCollection Period
Problems in Elementary Mathematics for Home Study4/23/2025
GSM8K4/23/2025

Evaluation Dataset:

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

Evaluation Results:

Benchmark Results (Reasoning On)

We evaluated our model in **Reasoning-On** mode across these benchmarks.

BenchmarkNVIDIA-Nemotron-3-Nano-4B-BF16
AIME2578.5
MATH50095.4
GPQA53.2
LCB51.8
BFCL v361.1
IFEVAL-Prompt87.9
IFEVAL-Instruction92
Tau2-Airline33.3
Tau2-Retail39.8
Tau2-Telecom33

We also evaluated our model in **Reasoning-off** mode across these benchmarks

BenchmarkNVIDIA-Nemotron-3-Nano-4B-BF16
BFCL v361.1
IFBench-Prompt43.2
IFBench-Instruction44.2
Orak22.9
IFEval-Prompt82.8
IFEval-Instruction88
HaluEval62.2
RULER (128k)91.1
Tau2-Airline28.0
Tau2-Retail34.8
Tau2-Telecom24.9
EQ-Bench363.2

All evaluations were done using NeMo-Skills & Orak. For Orak we evaluated on three games (Super Mario, Darkest Dungeon & StarDew Valley)

Inference

  • Engines: HF, vLLM, llama-cpp, TRT-LLM, SGLang
  • Test Hardware: NVIDIA GeForce RTX, H100 80GB, DGX Spark, Jetson Thor/Orin Nano

Ethical Considerations

NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our Trustworthy AI terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse.

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 and Explainability Subcards.

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

Please report security vulnerabilities or NVIDIA AI Concerns here.

Visit Website

0 reviews

5
0
4
0
3
0
2
0
1
0
Likes65
Downloads
📝

No reviews yet

Be the first to review unsloth/NVIDIA-Nemotron-3-Nano-4B-GGUF!

Model Info

Providerunsloth
Categorygeneral
Reviews0
Avg. Rating / 5.0

Community

Likes65
Downloads

Rating Guidelines

★★★★★Exceptional
★★★★Great
★★★Good
★★Fair
Poor