Views
No views yet

| Model | Method | BPW | PPL | Size |
|---|---|---|---|---|
| Qwen3.5-0.8B | Q3_K_M | 4.96 | 12.14 | 470 MB |
| PRISM-DQ | 4.94 | 11.42 | 468 MB | |
| Q3_K_M (imatrix) | 4.96 | 11.31 | 470 MB | |
| UD-Q3_K_XL | 5.19 | 10.94 | 492 MB | |
| IQ4_XS (imatrix) | 5.20 | 10.35 | 493 MB | |
| UD-Q4_K_XL | 5.89 | 10.07 | 559 MB | |
| Qwen3.5-2B | Q3_K_M | 4.69 | 9.35 | 1107 MB |
| PRISM-DQ | 4.68 | 9.26 | 1104 MB | |
| Q3_K_M (imatrix) | 4.69 | 8.40 | 1107 MB | |
| UD-Q3_K_XL | 4.91 | 8.27 | 1159 MB | |
| IQ4_XS (imatrix) | 4.97 | 8.12 | 1173 MB | |
| UD-Q4_K_XL | 5.68 | 8.07 | 1340 MB | |
| Qwen3.5-4B | Q3_K_M | 4.36 | 6.88 | 2293 MB |
| PRISM-DQ | 4.31 | 6.82 | 2271 MB | |
| Q3_K_M (imatrix) | 4.36 | 6.62 | 2293 MB | |
| UD-Q3_K_XL | 4.63 | 6.66 | 2436 MB | |
| IQ4_XS (imatrix) | 4.70 | 6.51 | 2477 MB | |
| UD-Q4_K_XL | 5.53 | 6.56 | 2912 MB | |
| Qwen3.5-9B | Q3_K_M | 4.17 | 6.25 | 4674 MB |
| PRISM-DQ | 4.15 | 6.18 | 4652 MB | |
| Q3_K_M (imatrix) | 4.17 | 5.96 | 4674 MB | |
| UD-Q3_K_XL | 4.51 | 6.01 | 5054 MB | |
| IQ4_XS (imatrix) | 4.61 | 6.03 | 5169 MB | |
| UD-Q4_K_XL | 5.33 | 5.86 | 5966 MB |
Qwen3.5-0.8B/
Qwen3.5-0.8B-PRISM-DQ.gguf (446 MB)
mmproj-BF16.gguf
mmproj-F16.gguf
mmproj-F32.gguf
chat_template.jinja
Qwen3.5-2B/
Qwen3.5-2B-PRISM-DQ.gguf (1.0 GB)
mmproj-BF16.gguf
mmproj-F16.gguf
mmproj-F32.gguf
chat_template.jinja
Qwen3.5-4B/
Qwen3.5-4B-PRISM-DQ.gguf (2.1 GB)
mmproj-BF16.gguf
mmproj-F16.gguf
mmproj-F32.gguf
chat_template.jinja
Qwen3.5-9B/
Qwen3.5-9B-PRISM-DQ.gguf (4.3 GB)
mmproj-BF16.gguf
mmproj-F16.gguf
mmproj-F32.gguf
chat_template.jinja1# Download a model
2huggingface-cli download Ex0bit/Qwen3.5-PRISM-Dynamic-Quant-GGUF \
3 Qwen3.5-9B/Qwen3.5-9B-PRISM-DQ.gguf --local-dir .
4
5# Run with llama-cli
6llama-cli -m Qwen3.5-9B/Qwen3.5-9B-PRISM-DQ.gguf \
7 -p "You are a helpful assistant." \
8 --chat-template-file Qwen3.5-9B/chat_template.jinja \
9 -cnv1# Download model + mmproj
2huggingface-cli download Ex0bit/Qwen3.5-PRISM-Dynamic-Quant-GGUF \
3 Qwen3.5-9B/Qwen3.5-9B-PRISM-DQ.gguf \
4 Qwen3.5-9B/mmproj-BF16.gguf --local-dir .
5
6# Run with llama-mtmd-cli
7llama-mtmd-cli -m Qwen3.5-9B/Qwen3.5-9B-PRISM-DQ.gguf \
8 --mmproj Qwen3.5-9B/mmproj-BF16.gguf \
9 --chat-template-file Qwen3.5-9B/chat_template.jinja \
10 -cnv.gguf file.1llama-quantize \
2 --tensor-type "attn_gate=Q3_K" \
3 --tensor-type "attn_k=Q3_K" \
4 --tensor-type "attn_output=IQ4_XS" \
5 --tensor-type "attn_q=Q3_K" \
6 --tensor-type "attn_qkv=Q3_K" \
7 --tensor-type "attn_v=Q4_K" \
8 --tensor-type "ffn_down=Q3_K" \
9 --tensor-type "ffn_gate=Q3_K" \
10 --tensor-type "ffn_up=Q3_K" \
11 --tensor-type "ssm_alpha=Q3_K" \
12 --tensor-type "ssm_beta=IQ4_XS" \
13 --tensor-type "ssm_out=IQ4_XS" \
14 --tensor-type "token_embd=Q3_K" \
15 --tensor-type "blk\.(4)\.ssm_beta=Q4_K" \
16 --tensor-type "blk\.(18)\.ssm_out=Q4_K" \
17 input.gguf output.gguf Q3_K1llama-quantize \
2 --tensor-type "attn_gate=Q3_K" \
3 --tensor-type "attn_k=Q4_K" \
4 --tensor-type "attn_output=Q4_K" \
5 --tensor-type "attn_q=Q4_K" \
6 --tensor-type "attn_qkv=Q3_K" \
7 --tensor-type "attn_v=Q4_K" \
8 --tensor-type "ffn_down=Q3_K" \
9 --tensor-type "ffn_gate=Q3_K" \
10 --tensor-type "ffn_up=Q3_K" \
11 --tensor-type "ssm_alpha=Q4_K" \
12 --tensor-type "ssm_beta=Q4_K" \
13 --tensor-type "ssm_out=Q3_K" \
14 --tensor-type "token_embd=Q3_K" \
15 input.gguf output.gguf Q3_K1llama-quantize \
2 --tensor-type "attn_gate=Q3_K" \
3 --tensor-type "attn_k=Q4_K" \
4 --tensor-type "attn_output=Q5_K" \
5 --tensor-type "attn_q=Q3_K" \
6 --tensor-type "attn_qkv=Q3_K" \
7 --tensor-type "attn_v=Q4_K" \
8 --tensor-type "ffn_down=Q3_K" \
9 --tensor-type "ffn_gate=Q3_K" \
10 --tensor-type "ffn_up=Q3_K" \
11 --tensor-type "ssm_alpha=Q4_K" \
12 --tensor-type "ssm_beta=Q4_K" \
13 --tensor-type "ssm_out=Q3_K" \
14 --tensor-type "token_embd=Q3_K" \
15 input.gguf output.gguf Q3_K1llama-quantize \
2 --tensor-type "attn_gate=Q3_K" \
3 --tensor-type "attn_k=Q4_K" \
4 --tensor-type "attn_output=IQ4_XS" \
5 --tensor-type "attn_q=Q4_K" \
6 --tensor-type "attn_qkv=Q3_K" \
7 --tensor-type "attn_v=Q4_K" \
8 --tensor-type "ffn_down=Q3_K" \
9 --tensor-type "ffn_gate=Q3_K" \
10 --tensor-type "ffn_up=Q3_K" \
11 --tensor-type "output=Q3_K" \
12 --tensor-type "ssm_alpha=Q4_K" \
13 --tensor-type "ssm_beta=Q4_K" \
14 --tensor-type "ssm_out=Q3_K" \
15 --tensor-type "token_embd=Q3_K" \
16 input.gguf output.gguf Q3_K