Views
No views yet
TQ3_4S GGUF release for Qwen3.5-27B.TQ3_4S is a 3.5-bit Walsh-Hadamard-transform weight format with four per-8 scales per 32-weight block.TQ3_4S12.9 GiBllama.cppmmproj-BF16.ggufQwen3.5-27B, wiki.test.raw, c=2048:| Format | PPL | Size |
|---|---|---|
TQ3_4S | 6.8224 +/- 0.04534 | 12.9 GiB |
Q3_K_S | 6.8630 +/- 0.04583 | 11.4 GiB |
TQ3_1S | 6.9807 +/- 0.04690 | 12.9 GiB |
EXL3 3.0bpw | 7.027580 | ~13.0 GiB |
TQ3_4S and Q3_K_S are full-pass llama-perplexity results.TQ3_1S is also a full-pass llama-perplexity result at c=2048.EXL3 3.0bpw is from a local 145 x 2048 eval, not llama-perplexity.TQ3_4S works equally well on smaller dense models.1git clone https://github.com/turbo-tan/llama.cpp-tq3.git
2cd llama.cpp-tq3
3
4cmake -B build -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Release
5cmake --build build -j
6
7./build/bin/llama-server \
8 -m /path/to/Qwen_Qwen3.5-27B-TQ3_4S.gguf \
9 -ngl 99 \
10 -fa on \
11 -c 8192 \
12 -ctk q8_0 -ctv q8_0 \
13 --cache-ram 0 \
14 --no-warmup --jinja \
15 --reasoning off --reasoning-budget 0 --reasoning-format deepseek \
16 --port 80901./build/bin/llama-server \
2 -m /path/to/Qwen_Qwen3.5-27B-TQ3_4S.gguf \
3 -mm /path/to/mmproj-BF16.gguf \
4 -ngl 99 -c 8192 -np 1 \
5 -ctk q8_0 -ctv q8_0 -fa on \
6 --cache-ram 0 --no-warmup --jinja \
7 --reasoning off --reasoning-budget 0 --reasoning-format deepseek \
8 --no-mmproj-offload--mmproj.TQ3_4S release, not the private KLD-guided mixed-precision variants.