Views
No views yet
[!IMPORTANT] ~5.3× smaller than the original 16-bit Qwen3.8-27B, with 95.4% accuracy retention.
| file | size | full avg BPW | body BPW |
|---|---|---|---|
Qwen3.8-27B-OQ3.gguf | 10.54 GB | 3.026 | 2.967 |
mmproj-F16.gguf | 0.93 GB | — | — |
mmproj-F16.gguf is the optional vision projector for image/video input.| Model | MMLU-Pro | AIME-25 | Average | Full BPW | Body BPW | Retention |
|---|---|---|---|---|---|---|
| Qwen3.8-27B (bf16) | 76.71 | 95.83 | 86.27 | 16.00 | 16.00 | 100.0% |
| OQ3 (this repo) | 73.94 | 90.42 | 82.18 | 3.026 | 2.967 | 95.4% |
| Escha W2 | 71.24 | 87.50 | 79.37 | 3.020 | 2.485 | 92.1% |
1# OpenAI-compatible server with web UI:
2llama-server -hf oracomputing/Qwen3.8-27B-OQ3-GGUF
3
4# Chat in the terminal:
5llama-cli -hf oracomputing/Qwen3.8-27B-OQ3-GGUFllama serve -hf oracomputing/Qwen3.8-27B-OQ3-GGUF. To download the files explicitly instead:hf download oracomputing/Qwen3.8-27B-OQ3-GGUF Qwen3.8-27B-OQ3.gguf mmproj-F16.gguf --local-dir .-m Qwen3.8-27B-OQ3.gguf in place of -hf ....1llama-server -hf oracomputing/Qwen3.8-27B-OQ3-GGUF \
2 -c 131072 -ngl 999 -fa on \
3 --spec-type draft-mtp --spec-draft-n-max 3 --parallel 1--spec-draft-n-max 3 is a good default; the optimum is hardware-dependent, so try values 1–4. Measured on this file: draft acceptance ≈ 0.78. Older llama.cpp builds simply ignore the MTP tensors and run the model normally.-hf, the mmproj-F16.gguf vision projector from this repo is downloaded and paired automatically. When loading from local files, pass it explicitly:1llama-server -m Qwen3.8-27B-OQ3.gguf --mmproj mmproj-F16.gguf \
2 -c 131072 -ngl 999 -fa on --image-min-tokens 1024--image-min-tokens 1024 is recommended for grounding tasks. Vision and MTP flags can be combined.temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0presence_penalty between 0 and 2 (higher values can mix languages and slightly hurt quality).