majentik commited on
Commit
68b984f
·
verified ·
1 Parent(s): 0297214

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

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