Views
No views yet
| File | Target BPW | Size | PPL ↓ | Family |
|---|---|---|---|---|
| Qwen3-4B-Instruct-2507-MX-3.0bpw.gguf | 3.0 | 1.72 GB | 3.073 | IQ |
| Qwen3-4B-Instruct-2507-MX-3.2bpw.gguf | 3.2 | 1.79 GB | 3.034 | IQ |
| Qwen3-4B-Instruct-2507-MX-3.4bpw.gguf | 3.4 | 1.88 GB | 2.971 | IQ |
| Qwen3-4B-Instruct-2507-MX-3.6bpw.gguf | 3.6 | 2.02 GB | 2.936 | KQ |
| Qwen3-4B-Instruct-2507-MX-3.8bpw.gguf | 3.8 | 2.03 GB | 2.951 | KQ |
| Qwen3-4B-Instruct-2507-MX-4.0bpw.gguf | 4.0 | 2.01 GB | 2.928 | KQ |
| Qwen3-4B-Instruct-2507-MX-4.5bpw.gguf | 4.5 | 2.47 GB | 2.932 | KQ |
Target BPW is the planner's per-tensor bit budget (and the filename label). The actual whole-file BPW runs ~0.3–0.4 higher, because output/embedding tensors are kept at higher precision and GGUF carries metadata overhead — see the Size column for the real footprint.
| Model | BPW | Size | PPL ↓ | Source |
|---|---|---|---|---|
| ByteShape KQ 3.34 | 3.34 | 1.69 GB | 3.121 | byteshape |
| ★ Ours MX-3.0 | 3.0 | 1.72 GB | 3.073 | This repo |
| ★ Ours MX-3.2 | 3.2 | 1.79 GB | 3.034 | This repo |
| Unsloth Q3_K_S | 3.75 | 1.75 GB | 3.007 | unsloth |
| ★ Ours MX-3.4 | 3.4 | 1.88 GB | 2.971 | This repo |
| ★ Ours MX-3.6 | 3.6 | 2.02 GB | 2.936 | This repo |
| ★ Ours MX-4.0 | 4.0 | 2.01 GB | 2.928 | This repo |
| Unsloth Q4_K_M | 4.97 | 2.32 GB | 2.956 | unsloth |
| ★ Ours MX-4.5 | 4.5 | 2.47 GB | 2.932 | This repo |
1# Pick any precision level
2ollama run hf.co/sh111111111111111/Qwen3-4B-Instruct-2507-BitClass-GGUF:Qwen3-4B-Instruct-2507-MX-3.4bpw.gguf1# Chat
2llama-cli -m Qwen3-4B-Instruct-2507-MX-3.4bpw.gguf -cnv
3
4# Server (OpenAI-compatible API)
5llama-server -m Qwen3-4B-Instruct-2507-MX-3.4bpw.gguf --port 8080
6
7# Benchmark
8llama-perplexity -m Qwen3-4B-Instruct-2507-MX-3.4bpw.gguf -f your_eval_data.txt-ngl 999). Perplexity measured via llama-perplexity on a held-out evaluation set (20 chunks, 512 context). Throughput via llama-bench (512 prompt / 128 generation tokens). All models — ours, Unsloth, ByteShape — benchmarked in the same session.