Views
No views yet
| Variant | Quant | Size | Speed | BPW |
|---|---|---|---|---|
| 2-bit | IQ1_S | 2.0 GB | 95 t/s | 2.06 |
| 5-bit (this) | Q4_K_M | 4.8 GB | 58 t/s | 3.20 |
| 5-bit | Q4_K_M | 4.8 GB | 42 t/s | 4.90 |
1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="Ontologer/NGMI-Qwen3-8B-5Bit-Heretic",
5 filename="qwen3-8b-heretic-q4_k_m.gguf",
6 n_ctx=32768,
7 n_gpu_layers=-1,
8 verbose=False
9)