majentik commited on
Commit
13cabc6
·
verified ·
1 Parent(s): d74472f

Add model card

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: gguf
3
+ base_model: Qwen/Qwen3.5-27B
4
+ tags:
5
+ - gguf
6
+ - rotorquant
7
+ - kv-cache-quantization
8
+ - qwen
9
+ - qwen3
10
+ - moe
11
+ - thinking
12
+ - llama-cpp
13
+ - quantized
14
+ license: apache-2.0
15
+ ---
16
+
17
+ # Qwen3.5-27B-RotorQuant-GGUF-IQ4_XS
18
+
19
+ GGUF IQ4_XS weight-quantized variant of [Qwen/Qwen3.5-27B](https://huggingface.co/Qwen/Qwen3.5-27B) with **RotorQuant** KV cache compression for efficient inference with llama.cpp, Ollama, and LM Studio.
20
+
21
+ ## Overview
22
+
23
+ This model combines two compression techniques:
24
+ - **GGUF IQ4_XS weight quantization** — reduces model size from ~54GB to ~14 GB
25
+ - **RotorQuant KV cache compression** — block-diagonal rotations (Clifford algebra) for 3-bit KV cache, 5.3x faster prefill
26
+
27
+ ## Quickstart
28
+
29
+ ### llama.cpp
30
+ ```bash
31
+ llama-cli -m Qwen3.5-27B-RotorQuant-GGUF-IQ4_XS.gguf \
32
+ --cache-type-k planar3 --cache-type-v iso3 \
33
+ -p "Explain quantum computing"
34
+ ```
35
+
36
+ ### Ollama
37
+ ```bash
38
+ ollama run majentik/Qwen3.5-27B-RotorQuant-GGUF-IQ4_XS
39
+ ```
40
+
41
+ ### LM Studio
42
+ Download the GGUF file and load in LM Studio. Enable RotorQuant KV cache in advanced settings.
43
+
44
+ ## Specifications
45
+
46
+ | Property | Value |
47
+ |----------|-------|
48
+ | Base Model | Qwen/Qwen3.5-27B |
49
+ | Parameters | 27B hybrid MoE |
50
+ | Weight Quantization | GGUF IQ4_XS |
51
+ | KV Cache | RotorQuant 3-bit (planar/iso) |
52
+ | File Size | ~14 GB |
53
+ | License | Apache 2.0 |
54
+ | Compatible | llama.cpp, Ollama, LM Studio, koboldcpp |
55
+
56
+ ## What is RotorQuant?
57
+
58
+ RotorQuant applies block-diagonal rotations (Clifford algebra) for KV cache compression. When used with llama.cpp's `--cache-type-k planar3 --cache-type-v iso3` flags:
59
+
60
+ | Metric | RotorQuant | TurboQuant |
61
+ |--------|-----------|-----------|
62
+ | Prefill Speed | 3,822 tok/s | 722 tok/s |
63
+ | Decode Speed | 119 tok/s | 93 tok/s |
64
+ | Perplexity | 6.91 | 7.07 |
65
+
66
+ ## See Also
67
+
68
+ - [RotorQuant GitHub](https://github.com/scrya-com/rotorquant)
69
+ - [Base model](https://huggingface.co/Qwen/Qwen3.5-27B)
70
+ - [MLX variants](https://huggingface.co/majentik/Qwen3.5-27B-RotorQuant-MLX-4bit)