NVIDIA is known as a chip company. They make GPUs. That's their business. So when they released a family of open-weight AI models — with training data, training recipes, and reinforcement learning environments all included — the AI community paid attention.
Nemotron 3 is a family of three open-weight language models built specifically for agentic AI. Not for chat. Not for question answering. For agents — AI systems that plan, use tools, and keep working on long complex tasks without stopping to ask for help.
NVIDIA released it in three stages: Nano in December 2025, Super in March 2026, Ultra in June 2026. All three share the same underlying architecture. All three are genuinely open — weights, training data, training recipes, RL environments. Everything.
"Open innovation is the foundation of AI progress. With Nemotron, we're transforming advanced AI into an open platform that gives developers the transparency and efficiency they need to build."
— Jensen Huang, CEO of NVIDIA, December 2025
How the architecture actually works
The key to understanding Nemotron is the architecture — it's called Hybrid Mamba-Transformer MoE. That sounds complicated. It isn't.
MoE stands for Mixture of Experts. Think of it like a company with 31 billion employees. For each task, only 3 billion of them show up to work. The rest stay home. The result — you get the intelligence of a 31B model but the speed and cost of a 3B model.
The Mamba component replaces the standard Transformer attention mechanism for long context. Traditional Transformers get slow and expensive on very long inputs. Mamba handles long sequences efficiently — Nemotron 3 Nano supports a 1 million token context window with 87.5% accuracy maintained at 512K tokens.
Combined — this architecture delivers 4x higher throughput than the previous Nemotron generation at the same accuracy level.
The three models — Nano, Super, Ultra
Model
Total params
Active params
Context
Best for
Nano
31.6B
3.6B per token
1M tokens
Local RTX GPU, fast sub-agents
Super
~100B
~10B per token
128K tokens
Multi-agent orchestration
Ultra
550B
55B per token
128K tokens
Complex reasoning, research
For most people reading this — Nano is your model. It runs on a 24GB GPU. RTX 3090, RTX 4090, RTX 4080. It's fast. It's free. And it's capable enough for most real-world agentic tasks.
Benchmarks
Coding — SWE-Bench Verified
Model
Score
Type
Nemotron 3 Ultra
48 Intelligence Index
Open weight
Nemotron 3 Super
36
Open weight
Gemma 4 31B
39
Open weight
GPT-OSS 120B
33
Open weight
Kimi K2.6
54
Open weight (China)
Honest caveat
Ultra leads US-developed open-weight models. Chinese open models like Kimi K2.6 still score higher globally. If raw benchmark score is your only metric — Kimi K2.6 is currently the leader. Nemotron's advantage is data residency, export compliance, and RTX hardware integration.
Long context — Nemotron 3 Nano vs Qwen3 30B
Model
Accuracy at 64K tokens
Accuracy at 512K tokens
Max context
Nemotron 3 Nano
87.5%
70.56%
1M tokens
Qwen3 30B-A3B
~60.69%
N/A
128K tokens
Long context is where Nano wins clearly. 1 million token context window with accuracy maintained across the range — Qwen3 doesn't even support contexts beyond 128K.
Complete setup guide
1
Check your GPU
Nemotron 3 Nano requires a 24GB GPU minimum for the full BF16 model. The quantized version can run on less. Compatible GPUs: RTX 3090, RTX 4090, RTX 4080, RTX 4070 Ti, A100, H100. Check your GPU memory with:
nvidia-smi
Look for the "Memory-Usage" column. You need at least 24576 MiB available.
2
Install Ollama (easiest method)
Ollama is the simplest way to run Nemotron locally. Install it first:
# macOS / Linux
curl -fsSL https://ollama.com/install.sh | sh
# Windows — download from
# https://ollama.com/download/windows
3
Pull and run Nemotron 3 Nano
One command downloads and starts the model:
ollama run nemotron3-nano
First run downloads the model weights (~18GB). After that it starts instantly. You'll see a chat prompt appear when it's ready.
4
Alternative — download direct from Hugging Face
If you want the raw weights for custom deployment:
# Install huggingface_hub first
pip install huggingface_hub
# Download the model
huggingface-cli download nvidia/Nemotron-3-Nano-30B-A3B \
--local-dir ./nemotron-nano
This downloads to a local folder. You can then load it with any framework — vLLM, llama.cpp, LM Studio, etc.
5
Use via Python — OpenAI compatible API
Once Ollama is running, Nemotron exposes an OpenAI-compatible endpoint. Use it exactly like GPT or Claude in your code:
What GPU do I need to run Nemotron 3 Nano at home?
▼
24GB VRAM minimum for the full BF16 model. RTX 3090, RTX 4090, RTX 4080 all work. For quantized versions (4-bit NVFP4) you can get away with 16GB. RTX 4070 Ti with 16GB can run the quantized variant comfortably.
Is Nemotron actually free to use commercially?
▼
Yes. NVIDIA Open Model License allows commercial use. You can use it in production apps, charge customers, build products on top of it. The training data and recipes are also released openly. One of the most genuinely open releases from a major AI lab.
How does it compare to Llama 3 or Qwen3?
▼
On long context tasks — Nemotron 3 Nano is clearly better. 1M token context vs 128K for Qwen3. On raw intelligence benchmarks, Qwen3 scores about 6 points higher on the Artificial Analysis Index but at 40% lower throughput per GPU. For agentic workflows where you need fast inference across many concurrent agents — Nemotron's efficiency advantage compounds fast.
What's the difference between Nano, Super, and Ultra?
▼
Size and use case. Nano — 31B total, 3.6B active — is your local GPU model, fast sub-agents, everyday coding. Super — 100B total, 10B active — is for multi-agent orchestration where you need more reasoning depth. Ultra — 550B total, 55B active — is for mission-critical workflows, complex research, maximum accuracy regardless of cost. Unless you have an A100 cluster, start with Nano.
Why is NVIDIA releasing AI models when they sell GPUs?
▼
Same playbook as CUDA in 2006 and RTX in 2018. Give away the software. Sell the hardware. The more powerful free models exist that run best on NVIDIA GPUs — the more RTX 4090s, DGX Sparks, and H100s get sold. NVIDIA doesn't compete with OpenAI. They want you to need NVIDIA hardware to run whatever AI you use.
Can I fine-tune Nemotron on my own data?
▼
Yes. NVIDIA released training recipes and the NeMo framework alongside the weights. You can fine-tune on custom datasets using LoRA, QLoRA, or full fine-tuning. The training infrastructure documentation is at developer.nvidia.com under the Nemotron technical blog.
Try Nemotron 3 right now — free
No GPU needed to start. Use the free API at build.nvidia.com or download the model weights from Hugging Face.