majentik commited on
Commit
1cb596b
·
verified ·
1 Parent(s): 2f2ec76

docs: Tier 2 polish — variant matrix + quant trade-off

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md CHANGED
@@ -140,3 +140,28 @@ If you want combined weight + KV cache compression, majentik hosts pre-quantized
140
  - [llama-cpp-turboquant fork](https://github.com/johndpope/llama-cpp-turboquant/tree/feature/planarquant-kv-cache)
141
  - [Base model: google/gemma-4-26B-A4B](https://huggingface.co/google/gemma-4-26B-A4B)
142
  - [gemma-4-26B-A4B announcement](https://blog.google/technology/developers/gemma-4/)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  - [llama-cpp-turboquant fork](https://github.com/johndpope/llama-cpp-turboquant/tree/feature/planarquant-kv-cache)
141
  - [Base model: google/gemma-4-26B-A4B](https://huggingface.co/google/gemma-4-26B-A4B)
142
  - [gemma-4-26B-A4B announcement](https://blog.google/technology/developers/gemma-4/)
143
+
144
+ ## Variants in this family
145
+
146
+ (Showing 18 sibling variants under `majentik/gemma4-26b-a4b-*`. The current variant — `TurboQuant` — is **bolded**.)
147
+
148
+ | Variant | Runtime | Approx size | Use case |
149
+ |---|---|---|---|
150
+ | [RotorQuant](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant) | runtime modifier | n/a | KV-cache root (weight-agnostic) |
151
+ | [RotorQuant-AWQ-4bit](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-awq-4bit) | transformers | ~16 GB | GPU 4-bit (AutoAWQ) |
152
+ | [RotorQuant-AWQ-8bit](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-awq-8bit) | transformers | ~29 GB | GPU 8-bit (AutoAWQ) |
153
+ | [RotorQuant-GGUF-IQ4_XS](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-gguf-IQ4_XS) | llama.cpp | ~22 GB | Lossy 4-bit, low-RAM CPU/edge |
154
+ | [RotorQuant-GGUF-Q2_K](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-gguf-Q2_K) | llama.cpp | ~16 GB | Lossy, low-RAM CPU/edge |
155
+ | [RotorQuant-GGUF-Q3_K_M](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-gguf-Q3_K_M) | llama.cpp | ~20 GB | Smaller 3-bit, CPU-friendly |
156
+ | [RotorQuant-GGUF-Q4_K_M](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-gguf-Q4_K_M) | llama.cpp | ~29 GB | Balanced default |
157
+ | [RotorQuant-GGUF-Q5_K_M](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-gguf-Q5_K_M) | llama.cpp | ~34 GB | Higher fidelity, more RAM |
158
+ | [RotorQuant-GGUF-Q8_0](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-gguf-Q8_0) | llama.cpp | ~55 GB | Near-lossless reference |
159
+ | [RotorQuant-MLX-2bit](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-mlx-2bit) | mlx-lm | ~8.3 GB | Apple Silicon, smallest |
160
+ | [RotorQuant-MLX-4bit](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-mlx-4bit) | mlx-lm | ~16 GB | Apple Silicon balanced |
161
+ | [RotorQuant-MLX-8bit](https://huggingface.co/majentik/gemma4-26b-a4b-rotorquant-mlx-8bit) | mlx-lm | ~31 GB | Apple Silicon reference |
162
+ | **TurboQuant** | runtime modifier | n/a | KV-cache root (weight-agnostic) |
163
+ | [TurboQuant-AWQ-4bit](https://huggingface.co/majentik/gemma4-26b-a4b-turboquant-awq-4bit) | transformers | ~16 GB | GPU 4-bit (AutoAWQ) |
164
+ | [TurboQuant-AWQ-8bit](https://huggingface.co/majentik/gemma4-26b-a4b-turboquant-awq-8bit) | transformers | ~29 GB | GPU 8-bit (AutoAWQ) |
165
+ | [TurboQuant-MLX-2bit](https://huggingface.co/majentik/gemma4-26b-a4b-turboquant-mlx-2bit) | mlx-lm | ~8.3 GB | Apple Silicon, smallest |
166
+ | [TurboQuant-MLX-4bit](https://huggingface.co/majentik/gemma4-26b-a4b-turboquant-mlx-4bit) | mlx-lm | ~16 GB | Apple Silicon balanced |
167
+ | [TurboQuant-MLX-8bit](https://huggingface.co/majentik/gemma4-26b-a4b-turboquant-mlx-8bit) | mlx-lm | ~31 GB | Apple Silicon reference |