rk.codex
AI Model · August 2026

NVIDIA Nemotron 3 — Full Breakdown, Benchmarks & Setup Guide

31 billion parameters. But it only uses 3 billion at a time. Runs on your RTX GPU. Free. Open source. Here is everything.

By @rk.codex · August 2026 · 8 min read · Download Model ↗ · YouTube ↗
No GPU? No problem Try Nemotron 3 free via NVIDIA's API Catalog at build.nvidia.com — no GPU required. Generous free tier for developers.
What's in this guide
  1. What is Nemotron 3 — and why it matters
  2. How the architecture actually works
  3. The three models — Nano, Super, Ultra
  4. Benchmarks
  5. Complete setup guide
  6. No GPU? Use the free API
  7. All official links
  8. FAQ

What is Nemotron 3 — and why it matters

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

ModelScoreType
Nemotron 3 Ultra48 Intelligence IndexOpen weight
Nemotron 3 Super36Open weight
Gemma 4 31B39Open weight
GPT-OSS 120B33Open weight
Kimi K2.654Open 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

ModelAccuracy at 64K tokensAccuracy at 512K tokensMax context
Nemotron 3 Nano87.5%70.56%1M tokens
Qwen3 30B-A3B~60.69%N/A128K 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:
from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:11434/v1",
    api_key="ollama",  # required but ignored locally
)

response = client.chat.completions.create(
    model="nemotron3-nano",
    messages=[
        {"role": "user", "content": "Explain MoE architecture simply."}
    ]
)

print(response.choices[0].message.content)
6
Use with LM Studio (GUI — no code needed)
If you prefer a visual interface — download LM Studio, search for "nemotron" in the model browser, download, and chat. No terminal required.
# Download LM Studio from:
# https://lmstudio.ai

# Then search: nvidia/nemotron-3-nano
# Click download. Click load. Chat.

No GPU? Use the free API

If you don't have a compatible GPU — NVIDIA provides free API access through their AI Catalog. No download needed. No GPU needed. Just an API key.

pip install openai

from openai import OpenAI

client = OpenAI(
    base_url="https://integrate.api.nvidia.com/v1",
    api_key="YOUR_NVIDIA_API_KEY",  # free at build.nvidia.com
)

response = client.chat.completions.create(
    model="nvidia/nemotron-3-nano-30b-a3b",
    messages=[{"role": "user", "content": "Your prompt here"}],
    max_tokens=1024,
)

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

Get your free API key at build.nvidia.com. The free tier is generous enough for development and experimentation.

Frequently asked questions

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.

Try Free API ↗ Download Model ↗

More from rk.codex

AI Model
Claude Fable 5 — Full Breakdown
Anthropic hid this model for a year. 80.3% on SWE-Bench. Full breakdown inside.
AI Model
Sakana Fugu — Japan's Fable 5
Beats GPT-5.5. $20/month. Built by co-authors of the Transformer paper.
Setup Guide
Odysseus — PewDiePie's Free AI
30,000 stars in 48 hours. Full install guide inside.
YouTube
Full Tutorials on rk.codex
Deep dives every week. Subscribe for more.