hero775 commited on
Commit
0cd0345
Β·
verified Β·
1 Parent(s): 48f98a6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -4
README.md CHANGED
@@ -136,15 +136,54 @@ Only 9 of 256 experts fire per token β€” same reasoning capacity, far less compu
136
 
137
  ## On-device Benchmarks (measured)
138
 
139
- Measured tokens/s on your Mac β€” update this card with your own numbers:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
 
141
  ```bash
142
  ollama run batiai/qwen3.6-35b:iq4 --verbose "Write a haiku about Seoul in autumn."
143
  ```
144
 
145
- | Mac | IQ3_XXS | IQ4_XS |
146
- |-----|--------:|-------:|
147
- | _pending community measurements_ | β€” | β€” |
 
 
 
 
 
 
148
 
149
  ## Note on the "3.6" Naming
150
 
 
136
 
137
  ## On-device Benchmarks (measured)
138
 
139
+ Measured with BatiAI's bench harness on real Apple Silicon:
140
+
141
+ ### MacBook Pro M4 Max (128 GB RAM) β€” 100 % GPU
142
+
143
+ | Metric | IQ3_XXS | IQ4_XS |
144
+ |------------------------|--------:|-------:|
145
+ | **Gen speed (warm)** | **45.9 t/s** | **46.5 t/s** |
146
+ | Gen range (3 runs) | 45.6 – 46.2 | 45.0 – 48.2 |
147
+ | Prompt eval | 104.9 t/s | 105.0 t/s |
148
+ | Long response (300 t) | 45.2 t/s | 45.6 t/s |
149
+ | Cold-start first gen | 49.7 t/s | 51.3 t/s |
150
+ | Load time | 3.0 s | 5.3 s |
151
+ | Ollama RAM (w/ KV) | 18 GB | 23 GB |
152
+ | Korean generation | βœ… | βœ… |
153
+ | **Tool call JSON** | ❌ **fail** | βœ… pass |
154
+
155
+ ### Mac mini M4 (16 GB RAM) β€” community-reported
156
+
157
+ | Model | Gen speed |
158
+ |-------|----------:|
159
+ | **IQ3_XXS** | ~2 – 3 t/s |
160
+ | IQ4_XS | ❌ does not fit (needs 24 GB+) |
161
+
162
+ IQ3 fits in 16 GB but exercises swap β€” usable for single-turn prompts but not for streaming chat.
163
+
164
+ ### Key take-aways
165
+
166
+ - **On M4 Max, IQ3 and IQ4 are nearly identical in speed (~1 % apart)** β€” the MoE + Gated DeltaNet architecture is memory-bandwidth-bound, not compute-bound, at this quant range. Pick IQ4 unless RAM is tight.
167
+ - **~1.75Γ— faster than Qwen 3.5-35B-A3B IQ4** on the same M4 Max (46.5 vs 26.6 t/s measured previously).
168
+ - **IQ3 can fail function-call JSON** β€” quantization cost shows up on structured output first. If your workflow uses tool calling, **choose IQ4**.
169
+ - Both quants run 100 % on Apple Silicon GPU / Metal. No CPU fallback on machines that fit.
170
+ - Prompt evaluation is very fast (105 t/s) β€” long-context RAG / agent flows feel responsive.
171
+
172
+ ### Try it yourself
173
 
174
  ```bash
175
  ollama run batiai/qwen3.6-35b:iq4 --verbose "Write a haiku about Seoul in autumn."
176
  ```
177
 
178
+ Or run the full benchmark harness (cold start, 3Γ— warm runs, long response, Korean, tool call, RAM delta):
179
+
180
+ ```bash
181
+ # Single model
182
+ ./bench.sh # interactive menu β€” pick by number
183
+
184
+ # Share the JSON β€” we'll update this card
185
+ reports/bench-*.json
186
+ ```
187
 
188
  ## Note on the "3.6" Naming
189