Views
No views yet
| Component | Precision | Quantized? |
|---|---|---|
| Thinker MoE experts (gate_up_proj, down_proj) | NVFP4 packed uint8 | Yes — pre-quantized |
| Thinker attention (q/k/v/o_proj) | NVFP4 (calibrated) | Yes |
| Thinker lm_head | BF16 | No |
| Thinker MoE router gates | BF16 | No |
| Audio Encoder | BF16 | No |
| Vision Encoder | BF16 | No |
| Talker (MoE) | BF16 | No |
| Code2Wav | BF16 | No |
gate_up_proj: packed uint8 (2× FP4 values per byte)gate_up_proj_scale: float8_e4m3fn (per-block-of-16 FP8 scale)gate_up_proj_scale_2: bfloat16 (global per-tensor scale)down_proj1{
2 "quant_algo": "NVFP4",
3 "quant_method": "modelopt",
4 "group_size": 16,
5 "weights": {"num_bits": 4, "type": "float"},
6 "input_activations": {"num_bits": 8, "type": "float"},
7 "kv_cache": {"num_bits": 8, "type": "float"}
8}| Config | Checkpoint Size | Notes |
|---|---|---|
| BF16 (original) | ~60 GB | Full precision |
| FP8 (ModelOpt) | ~40 GB | Online quantization |
| NVFP4 (this model) | ~27 GB | Pre-quantized FP4 experts |
| Purpose | Hardware | Notes |
|---|---|---|
| Inference | RTX 5090, B100, B200 (Blackwell SM 100+) | Native FP4 hardware support required |
| Inference (not supported) | RTX 4090, A100, H100 | No FP4 hardware — use FP8 instead |
mtq.quantize with calibrationNVFP4QTensor.quantize() (fused expert tensors not supported by mtq.quantize)