majentik commited on
Commit
28f0927
·
verified ·
1 Parent(s): da268df

docs: Tier 2 polish — variant matrix + quant trade-off

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -160,3 +160,38 @@ For VRAM-constrained setups, standard q8_0 KV cache quantization already halves
160
  - [TurboQuant paper (arXiv: 2504.19874)](https://arxiv.org/abs/2504.19874)
161
  - [Base model: nvidia/NVIDIA-Nemotron-3-Nano-4B-BF16](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Nano-4B-BF16)
162
  - [Nemotron-3-Nano-4B announcement](https://huggingface.co/blog/nvidia/nemotron-3-nano-4b)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  - [TurboQuant paper (arXiv: 2504.19874)](https://arxiv.org/abs/2504.19874)
161
  - [Base model: nvidia/NVIDIA-Nemotron-3-Nano-4B-BF16](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Nano-4B-BF16)
162
  - [Nemotron-3-Nano-4B announcement](https://huggingface.co/blog/nvidia/nemotron-3-nano-4b)
163
+
164
+ ## Quant trade-off (GGUF lane)
165
+
166
+ | Quant | Approx size | Use case | Recommendation |
167
+ |---|---|---|---|
168
+ | **Q2_K** | ~2.2 GB | Lossy, low-RAM CPU/edge | **Resource-constrained inference** |
169
+ | Q3_K_M | ~2.4 GB | Smaller-than-Q4, modest quality drop | Edge devices with ~16 GB RAM |
170
+ | IQ4_XS | ~2.1 GB | Importance-quant 4-bit, smaller than Q4_K_M | Best size/quality at 4-bit |
171
+ | Q4_K_M | ~3.0 GB | Balanced default | Recommended for most users |
172
+ | Q5_K_M | ~3.1 GB | Higher fidelity than Q4 | Quality-sensitive applications |
173
+ | Q6_K | ~3.6 GB | Approaching FP16 quality | High-fidelity CPU/edge |
174
+ | Q8_0 | ~4.1 GB | Near-lossless reference | Fidelity-critical work |
175
+ | MXFP4_MOE | ~2.2 GB | Microscaling FP4 (MoE-aware) | vLLM / transformers users |
176
+
177
+ (Current variant — **Q2_K** — is bolded.)
178
+
179
+ ## Variants in this family
180
+
181
+ (Showing 13 sibling variants under `majentik/nemotron3-nano-4b-*`. The current variant — `RotorQuant-GGUF-Q2_K` — is **bolded**.)
182
+
183
+ | Variant | Runtime | Approx size | Use case |
184
+ |---|---|---|---|
185
+ | [RotorQuant](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant) | runtime modifier | n/a | KV-cache root (weight-agnostic) |
186
+ | [RotorQuant-GGUF-IQ4_XS](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant-gguf-IQ4_XS) | llama.cpp | ~3.4 GB | Lossy 4-bit, low-RAM CPU/edge |
187
+ | **RotorQuant-GGUF-Q2_K** | llama.cpp | ~2.4 GB | Lossy, low-RAM CPU/edge |
188
+ | [RotorQuant-GGUF-Q3_K_M](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant-gguf-Q3_K_M) | llama.cpp | ~3.1 GB | Smaller 3-bit, CPU-friendly |
189
+ | [RotorQuant-GGUF-Q4_K_M](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant-gguf-Q4_K_M) | llama.cpp | ~4.4 GB | Balanced default |
190
+ | [RotorQuant-MLX-2bit](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant-mlx-2bit) | mlx-lm | ~1.3 GB | Apple Silicon, smallest |
191
+ | [RotorQuant-MLX-4bit](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant-mlx-4bit) | mlx-lm | ~2.5 GB | Apple Silicon balanced |
192
+ | [RotorQuant-MLX-8bit](https://huggingface.co/majentik/nemotron3-nano-4b-rotorquant-mlx-8bit) | mlx-lm | ~4.7 GB | Apple Silicon reference |
193
+ | [TurboQuant](https://huggingface.co/majentik/nemotron3-nano-4b-turboquant) | runtime modifier | n/a | KV-cache root (weight-agnostic) |
194
+ | [TurboQuant-GGUF-Q4_K_M](https://huggingface.co/majentik/nemotron3-nano-4b-turboquant-gguf-Q4_K_M) | llama.cpp | ~4.4 GB | Balanced default |
195
+ | [TurboQuant-MLX-2bit](https://huggingface.co/majentik/nemotron3-nano-4b-turboquant-mlx-2bit) | mlx-lm | ~1.3 GB | Apple Silicon, smallest |
196
+ | [TurboQuant-MLX-4bit](https://huggingface.co/majentik/nemotron3-nano-4b-turboquant-mlx-4bit) | mlx-lm | ~2.5 GB | Apple Silicon balanced |
197
+ | [TurboQuant-MLX-8bit](https://huggingface.co/majentik/nemotron3-nano-4b-turboquant-mlx-8bit) | mlx-lm | ~4.7 GB | Apple Silicon reference |