majentik commited on
Commit
ffc9922
·
verified ·
1 Parent(s): c5593d5

chore(card): add hardware compatibility section

Browse files
Files changed (1) hide show
  1. README.md +12 -9
README.md CHANGED
@@ -2,17 +2,14 @@
2
  license: apache-2.0
3
  base_model: google/gemma-4-E2B
4
  tags:
5
- - rotorquant
6
- - kv-cache-quantization
7
- - gemma
8
- - gemma4
9
- - edge
10
- - quantized
11
  library_name: transformers
12
  pipeline_tag: image-text-to-text
13
- language:
14
- - en
15
- inference: false
16
  ---
17
 
18
  # gemma-4-E2B-RotorQuant
@@ -21,6 +18,12 @@ inference: false
21
 
22
  This is a **documentation repository** that explains how to combine gemma-4-E2B's weights with RotorQuant inference-time KV cache compression. No weights are stored here — use the base model directly and apply RotorQuant via the Python package or llama.cpp fork.
23
 
 
 
 
 
 
 
24
  ## What is this?
25
 
26
  KV cache compression reduces the memory used by the attention cache during inference. Unlike weight quantization (which is baked into the GGUF/MLX file), KV cache compression is applied at runtime — so the same base weights can be used with or without compression.
 
2
  license: apache-2.0
3
  base_model: google/gemma-4-E2B
4
  tags:
5
+ - rotorquant
6
+ - kv-cache-quantization
7
+ - gemma
8
+ - gemma4
9
+ - edge
10
+ - quantized
11
  library_name: transformers
12
  pipeline_tag: image-text-to-text
 
 
 
13
  ---
14
 
15
  # gemma-4-E2B-RotorQuant
 
18
 
19
  This is a **documentation repository** that explains how to combine gemma-4-E2B's weights with RotorQuant inference-time KV cache compression. No weights are stored here — use the base model directly and apply RotorQuant via the Python package or llama.cpp fork.
20
 
21
+ ## Hardware compatibility
22
+
23
+ | Device | VRAM / RAM | Recommendation |
24
+ | --- | --- | --- |
25
+ | Any host that runs the base model | baseline + runtime savings | RotorQuant/TurboQuant is a KV-cache runtime modifier; pair with any weight variant |
26
+
27
  ## What is this?
28
 
29
  KV cache compression reduces the memory used by the attention cache during inference. Unlike weight quantization (which is baked into the GGUF/MLX file), KV cache compression is applied at runtime — so the same base weights can be used with or without compression.