majentik commited on
Commit
fdfe53f
·
verified ·
1 Parent(s): ff6cb0d

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

Browse files
Files changed (1) hide show
  1. README.md +39 -9
README.md CHANGED
@@ -6,15 +6,13 @@ license: other
6
  license_name: minimax-model-license
7
  license_link: https://huggingface.co/MiniMaxAI/MiniMax-M2.7/blob/main/LICENSE
8
  tags:
9
- - minimax
10
- - m2.7
11
- - moe
12
- - quantized
13
- - rotorquant
14
- - kv-cache-quantization
15
- - mlx
16
- language:
17
- - en
18
  ---
19
 
20
  # MiniMax-M2.7-RotorQuant-MLX-3bit
@@ -93,3 +91,35 @@ print(response)
93
  - [majentik/MiniMax-M2.7-TurboQuant-MLX-3bit](https://huggingface.co/majentik/MiniMax-M2.7-TurboQuant-MLX-3bit) -- TurboQuant MLX 3-bit
94
  - [majentik/MiniMax-M2.7-RotorQuant-MLX-4bit](https://huggingface.co/majentik/MiniMax-M2.7-RotorQuant-MLX-4bit) -- MLX 4-bit
95
  - [majentik/MiniMax-M2.7-RotorQuant-MLX-2bit](https://huggingface.co/majentik/MiniMax-M2.7-RotorQuant-MLX-2bit) -- MLX 2-bit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  license_name: minimax-model-license
7
  license_link: https://huggingface.co/MiniMaxAI/MiniMax-M2.7/blob/main/LICENSE
8
  tags:
9
+ - minimax
10
+ - m2.7
11
+ - moe
12
+ - quantized
13
+ - rotorquant
14
+ - kv-cache-quantization
15
+ - mlx
 
 
16
  ---
17
 
18
  # MiniMax-M2.7-RotorQuant-MLX-3bit
 
91
  - [majentik/MiniMax-M2.7-TurboQuant-MLX-3bit](https://huggingface.co/majentik/MiniMax-M2.7-TurboQuant-MLX-3bit) -- TurboQuant MLX 3-bit
92
  - [majentik/MiniMax-M2.7-RotorQuant-MLX-4bit](https://huggingface.co/majentik/MiniMax-M2.7-RotorQuant-MLX-4bit) -- MLX 4-bit
93
  - [majentik/MiniMax-M2.7-RotorQuant-MLX-2bit](https://huggingface.co/majentik/MiniMax-M2.7-RotorQuant-MLX-2bit) -- MLX 2-bit
94
+
95
+ ## Quant trade-off (MLX lane)
96
+
97
+ | Bits | Approx size | Use case | Recommendation |
98
+ |---|---|---|---|
99
+ | 2-bit | ~119 GB | Aggressive quantization | Very low-RAM Macs |
100
+ | **3-bit** | ~164 GB | Lossy but small | **Low-RAM Macs** |
101
+ | 4-bit | ~192 GB | Balanced default | Recommended for most Macs |
102
+ | 5-bit | ~228 GB | Higher fidelity | Quality-sensitive |
103
+ | 6-bit | ~274 GB | Approaching FP16 quality | High-fidelity |
104
+ | 8-bit | ~347 GB | Near-lossless reference | Fidelity-critical work |
105
+
106
+ (Current variant — **3bit** — is bolded.)
107
+
108
+ ## Variants in this family
109
+
110
+ (Showing 12 sibling variants under `majentik/minimax-m2.7-*`. The current variant — `RotorQuant-MLX-3bit` — is **bolded**.)
111
+
112
+ | Variant | Runtime | Approx size | Use case |
113
+ |---|---|---|---|
114
+ | [RotorQuant](https://huggingface.co/majentik/minimax-m2.7-rotorquant) | runtime modifier | n/a | KV-cache root (weight-agnostic) |
115
+ | [RotorQuant-MLX-2bit](https://huggingface.co/majentik/minimax-m2.7-rotorquant-mlx-2bit) | mlx-lm | ~885 MB | Apple Silicon, smallest |
116
+ | **RotorQuant-MLX-3bit** | mlx-lm | ~1.2 GB | Apple Silicon, small |
117
+ | [RotorQuant-MLX-4bit](https://huggingface.co/majentik/minimax-m2.7-rotorquant-mlx-4bit) | mlx-lm | ~1.7 GB | Apple Silicon balanced |
118
+ | [RotorQuant-MLX-5bit](https://huggingface.co/majentik/minimax-m2.7-rotorquant-mlx-5bit) | mlx-lm | ~2.1 GB | Apple Silicon, higher fidelity |
119
+ | [RotorQuant-MLX-8bit](https://huggingface.co/majentik/minimax-m2.7-rotorquant-mlx-8bit) | mlx-lm | ~3.2 GB | Apple Silicon reference |
120
+ | [TurboQuant](https://huggingface.co/majentik/minimax-m2.7-turboquant) | runtime modifier | n/a | KV-cache root (weight-agnostic) |
121
+ | [TurboQuant-MLX-2bit](https://huggingface.co/majentik/minimax-m2.7-turboquant-mlx-2bit) | mlx-lm | ~885 MB | Apple Silicon, smallest |
122
+ | [TurboQuant-MLX-3bit](https://huggingface.co/majentik/minimax-m2.7-turboquant-mlx-3bit) | mlx-lm | ~1.2 GB | Apple Silicon, small |
123
+ | [TurboQuant-MLX-4bit](https://huggingface.co/majentik/minimax-m2.7-turboquant-mlx-4bit) | mlx-lm | ~1.7 GB | Apple Silicon balanced |
124
+ | [TurboQuant-MLX-5bit](https://huggingface.co/majentik/minimax-m2.7-turboquant-mlx-5bit) | mlx-lm | ~2.1 GB | Apple Silicon, higher fidelity |
125
+ | [TurboQuant-MLX-8bit](https://huggingface.co/majentik/minimax-m2.7-turboquant-mlx-8bit) | mlx-lm | ~3.2 GB | Apple Silicon reference |