Views
No views yet
Qwen/Qwen3.8-27B (Apache-2.0) — base modelhuihui-ai/Huihui-Qwen3.8-27B-abliterated — abliterated (uncensored) fine-tunesakamakismile/Huihui-Qwen3.8-27B-abliterated-NVFP4 — NVFP4 quantized safetensors (compressed-tensors, nvfp4-pack-quantized)convert_hf_to_gguf.py (no re-quantization, no precision loss)| File | Size | Description |
|---|---|---|
Qwen3.8-27B-huihui-NVFP4.gguf | 19.65 GB | Main model. NVFP4 MLP + attention, Q5_K embeddings, BF16 MTP head, 262K native context |
mmproj-huihui.gguf | 931 MB | BF16 vision projector (mmproj) for image input |
qwen35 (Qwen3_5ForConditionalGeneration), 64 layers + 1 MTP layer (nextn_predict_layers=1)1# llama.cpp: text-only
2llama-server \
3 -m Qwen3.8-27B-huihui-NVFP4.gguf \
4 --spec-type draft-mtp \
5 --spec-draft-n-max 2 \
6 -c 163840 \
7 -ngl 999
8
9# llama.cpp: with vision
10llama-server \
11 -m Qwen3.8-27B-huihui-NVFP4.gguf \
12 --mmproj mmproj-huihui.gguf \
13 --spec-type draft-mtp \
14 --spec-draft-n-max 2 \
15 -c 131072 \
16 -ngl 999| Content | Draft acceptance | Speed |
|---|---|---|
| Code / JSON | 80–96% | 117–129 t/s |
| Math reasoning | 71% | 114 t/s |
| Chinese / English prose | 37–48% | 88–91 t/s |
1git clone --depth 1 https://github.com/ggml-org/llama.cpp
2pip install -r requirements.txt # torch + numpy + pyyaml + transformers
3
4python convert_hf_to_gguf.py ./Huihui-Qwen3.8-27B-abliterated-NVFP4 \
5 --outfile Qwen3.8-27B-huihui-NVFP4.gguf --outtype auto
6python convert_hf_to_gguf.py ./Huihui-Qwen3.8-27B-abliterated-NVFP4 \
7 --outfile mmproj-huihui.gguf --mmproj