Views
No views yet
attn_qkv layer to pure IQ4_XS. Furthermore, we introduce a novel hybrid precision quantization strategy: the FFN layer uses IQ3_S, which achieves significantly smaller file sizes while maintaining core inference capabilities through support from TurboQuant KV caching. Additionally, we use AEON-7's AEON-ULTIMATE-UNCENSORED abliterated version of the base model for quantization, making it convenient for users to conduct in-depth research.llama.cpp quantization heuristics upgrade attn_qkv layers to q5_K under certain conditions (e.g., n_gqa >= 4), causing noticeable file bloat. cHunter789's fix restores attn_qkv to pure IQ4_XS, saving ~375 MiB.IQ4_XS to IQ3_S is a natural next step — it yields substantial size reduction with minimal quality impact, especially when attention layers (which dominate inference quality) remain at IQ4_XS.attn_qkv, attn_k, attn_v, attn_output, output: IQ4_XSffn_down, ffn_up, ffn_gate: IQ3_SIQ4_XS1llama-quantize.exe ^
2 --imatrix Qwen3.8-27B-heretic-ara.imatrix.gguf ^
3 Qwen3.8-27B-heretic-ara-BF16.gguf ^
4 Qwen3.8-27B-heretic-IQ4_XXS.gguf ^
5 IQ4_XS 8 ^
6 --tensor-type "blk.*.ffn_down" iq3_s ^
7 --tensor-type "blk.*.ffn_up" iq3_s ^
8 --tensor-type "blk.*.ffn_gate" iq3_sNote on TurboQuant: This model is recommended to be used with llama.cpp (https://github.com/TheTom/llama-cpp-turboquant) that supports TurboQuant KV caching (release tqp-v0.3.0). TurboQuant allows the KV cache to use a separate, more compact quantization format (turbo4 / turbo3), dramatically reducing memory usage even when the model weights themselves remain at IQ4_XS. Of course, it is also possible to use vllm or other inference frameworks that support TurboQuant technology, but the author used llama.cpp for the test.
| Version | Context | KV Cache | VRAM Usage |
|---|---|---|---|
IQ4_XXS (baseline) | 100K-110K | turbo4 | 15.1-15.3 GB |
IQ4_XXS + MTP | 80K | turbo4 | ~15.3 GB |
draft-mtp): ~80K context, higher throughput thanks to multi-token prediction| Scenario | Speed |
|---|---|
| IQ4_XXS | 20 tokens/s |
IQ4_XXS + MTP | 30 tokens/s |
mmproj-BF16.gguf). If you load the vision module, the available context window will be reduced by approximately 20K to accommodate the vision encoder's memory footprint.Note: This model is quantized from an abliterated / uncensored (AEON-ULTIMATE-UNCENSORED) base model (AEON-7/Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-BF16). The base model removes content restrictions for research and development purposes.
1
2set TURBO_AUTO_ASYMMETRIC=0
3
4llama-turboquant-3.0\llama-server.exe -m Qwen3.8-27B-uncensored-abliterated-heretic-IQ4-GGUF-16G.gguf -b 2048 -ub 2048 -c 102400 -ngl 999 --flash-attn on -ctk turbo4 -ctv turbo4 --chat-template-file chat_template.jinja --host 0.0.0.0 --port 1234
5Note: You must first use set TURBO-AUTO_SYMETRIC=0, otherwise KV will automatically increase to Q8_0.
Note: For visual support, please refer to the loading command in Qwen3.6 27B, but the context needs to be reduced by 20K.
llama-turboquant-3.0\llama-server.exe -m Qwen3.8-27B-uncensored-abliterated-heretic-IQ4-GGUF-16G.gguf -b 2048 -ub 2048 --parallel 1 --spec-type draft-mtp --spec-draft-n-max 2 -c 81920 -ngl 999 --flash-attn on -ctk turbo4 -ctv turbo4 --chat-template-file chat_template.jinja --host 0.0.0.0 --port 1234About MTP: Enabling--spec-type draft-mtp --spec-draft-n-max 2turns on multi-token prediction (speculative decoding) for higher throughput. Because the draft model shares part of the KV cache budget, the usable context window is reduced to ~80K (-c 81920) on a 16GB GPU.
Qwen3.8-27B-AEON-ULTIMATE-UNCENSORED-BF16 uncensored / abliterated base model