GGUF
quantized
conversational
tomkay commited on
Commit
3bbba30
·
verified ·
1 Parent(s): 4e9e63c

Add model card

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: gguf
3
+ tags:
4
+ - gguf
5
+ - quantized
6
+ - mint
7
+ license: other
8
+ license_name: nvidia-open-model-license
9
+ base_model: nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16
10
+ base_model_relation: quantized
11
+ ---
12
+
13
+ <p align="center">
14
+ <img src="https://huggingface.co/spaces/baa-ai/MINT/resolve/main/baa-logo.svg" width="300" alt="baa.ai">
15
+ </p>
16
+
17
+ # Nemotron-3-Super-120B-A12B-MINT-GGUF
18
+
19
+ GGUF quantized version of [nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16) using [MINT](https://github.com/baa-ai/MINT).
20
+
21
+ > Hybrid Mamba-MoE-Attention architecture (512 experts, 22 active per token) — Q4_K_M quantized for llama.cpp.
22
+
23
+ ## Files
24
+
25
+ | File | Quant | Size |
26
+ |------|-------|------|
27
+ | `Nemotron-3-Super-120B-Q4_K_M.gguf` | Q4_K_M | 80 GB |
28
+
29
+ ## Metrics
30
+
31
+ | Metric | Value |
32
+ |--------|-------|
33
+ | **Size** | **80 GB** |
34
+ | Quantization | Q4_K_M |
35
+ | Framework | llama.cpp (GGUF) |
36
+ | Architecture | Hybrid Mamba-2 + MoE + Attention |
37
+ | Parameters | 123.6B (12B active) |
38
+
39
+ ## Usage
40
+
41
+ ```bash
42
+ llama-cli -m Nemotron-3-Super-120B-Q4_K_M.gguf \
43
+ -p "Hello!" -n 256 --threads 8
44
+ ```
45
+
46
+ ## Notes
47
+
48
+ - Requires **llama.cpp build ≥ 8500** for NemotronH MoE + latent projection support
49
+ - Peak memory: ~85 GB
50
+ - MTP (Multi-Token Prediction) layers are stripped during conversion
51
+
52
+ ## About MINT
53
+
54
+ MINT (Memory-Informed N-bit Tuning) formulates mixed-precision quantization as a budget-constrained optimization problem over per-tensor rate-distortion curves. The entire pipeline is data-free.
55
+
56
+ - [Paper](https://baa.ai/articles/24-mint-paper.html) | [Code](https://github.com/baa-ai/MINT) | [Models](https://huggingface.co/baa-ai)
57
+
58
+ ---
59
+ *Quantized by [baa.ai](https://baa.ai)*