Views
No views yet
nvidia/NVIDIA-Nemotron-Nano-9B-v2,
a general-purpose instruction-tuned reasoning model from NVIDIA's Nemotron
family, converted for use with llama.cpp.| Quantization | File | Size | Use case |
|---|---|---|---|
| bf16 | NVIDIA-Nemotron-Nano-9B-v2-bf16.gguf | 17.79 GB | Full precision — maximum quality, needs 24 GB+ VRAM |
| Q4_K_M | NVIDIA-Nemotron-Nano-9B-v2-Q4_K_M.gguf | 6.53 GB | Fits entirely on a single 16 GB GPU with ~9 GB left for KV cache |
| Property | Value |
|---|---|
| Base model | nvidia/NVIDIA-Nemotron-Nano-9B-v2 |
| Architecture | NemotronHForCausalLM (nemotron_h) |
| Parameters | ~9B |
| Layers | 56 |
| Attention heads | 40 (8 KV heads) |
| Hidden size | 4480 |
| Context length | 131,072 |
| Vocab size | 131,072 |
| Reasoning | Yes (thinking mode, /think & /no_think controls) |
| Tool calling | Native (<tool_call> XML format) |
impacte/NVIDIA-Nemotron-Nano-9B-v2-GGUF/
├── NVIDIA-Nemotron-Nano-9B-v2-bf16.gguf # bf16 GGUF (17.79 GB)
├── NVIDIA-Nemotron-Nano-9B-v2-Q4_K_M.gguf # Q4_K_M GGUF (6.53 GB)
└── .gitattributes # LFS tracking1# bf16 (full quality, 24 GB+ VRAM)
2llama-server \
3 -m NVIDIA-Nemotron-Nano-9B-v2-bf16.gguf \
4 --ctx-size 8192 \
5 --port 8080
6
7# Q4_K_M (single 16 GB GPU)
8llama-server \
9 -m NVIDIA-Nemotron-Nano-9B-v2-Q4_K_M.gguf \
10 --ctx-size 32768 \
11 --port 80801curl http://localhost:8080/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "NVIDIA-Nemotron-Nano-9B-v2-Q4_K_M",
5 "messages": [
6 {"role": "user", "content": "Explain what a Tauri v2 app is."}
7 ]
8 }'1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="NVIDIA-Nemotron-Nano-9B-v2-Q4_K_M.gguf",
5 n_ctx=32768,
6 n_gpu_layers=-1, # offload all layers to GPU
7)NVIDIA-Nemotron-Nano-9B-v2 is a compact, instruction-tuned reasoning model in
NVIDIA's Nemotron family, trained on NVIDIA's post-training and pretraining
datasets. It supports multiple languages (en, es, fr, de, it, ja) and is
designed for efficient local deployment with a hybrid Mamba-2 + attention
architecture.nvidia/NVIDIA-Nemotron-Nano-9B-v2 — released under the
NVIDIA Open Model License. Review before commercial use.convert_hf_to_gguf.py (bf16)
and llama-quantize (Q4_K_M).Note: This is a GGUF conversion of a model under the NVIDIA Open Model License. Ensure your use complies with that license.