Views
No views yet
--quant-predicate mixed_4_6 --q-group-size 32. Strictly Pareto-better than the V15 Q8 production mirror: smaller, lower RSS, identical short-form accuracy, better long-form WER.| Eval set | V15 prod (Q8 g=64) | This mirror | V14 4-bit baseline |
|---|---|---|---|
| seed_v5 wild (50 rows, hard-neg discourse) | 100% | 100% | 74.1% |
| ECHO15 long-form WER vs Gemini-3.1 ref | 0.210 | 0.160 | not tested |
| Dev-corpus long-form WER vs Gemini-3.5-Flash ref | 0.141 | 0.127 | not tested |
| Disk size | 782 MB | 482 MB | 424 MB |
| Warm RSS (process) | 1573 MB | 1326 MB | ~1100 MB |
| Bits/weight (avg) | ~8.5 | {5.127} | ~4.5 |
qwen3-5-0.8b-dictation-corrector-mlx-mxfp4-g32
for the M1 8 GB (8-15 GiB unified) tier.sysctl hw.memsize:mxfp4 g=32 (this mirror, 400 MB / 1244 MB RSS)mixed46 g=32 (482 MB / 1326 MB RSS)1from mlx_lm import load, generate
2from mlx_lm.sample_utils import make_sampler
3
4model, tokenizer = load("VoiceScribe/qwen3-5-0.8b-dictation-corrector-mlx-mixed46-g32")
5
6messages = [
7 {"role": "system", "content": "Корректор русской диктовки. Убери слова-паразиты. Нормализуй IT-термины. Не меняй смысл."},
8 {"role": "user", "content": "Эм, докер мониторит, ну, бэкенд через гитхаб экшнс"},
9]
10prompt = tokenizer.apply_chat_template(
11 messages, tokenize=False, add_generation_prompt=True, enable_thinking=False
12)
13sampler = make_sampler(temp=0.0, top_p=1.0)
14out = generate(model, tokenizer, prompt=prompt, max_tokens=200, sampler=sampler)
15print(out) # → "Docker мониторит бэкенд через GitHub Actions"1python -m mlx_lm convert \
2 --hf-path /path/to/v15-r3-fused-bf16 \
3 --mlx-path ./qwen3-5-0.8b-dictation-corrector-mlx-mixed46-g32 \
4{ --quantize --q-mode affine --q-group-size 32 \
5 --quant-predicate mixed_4_6 \
6} --dtype bfloat16{mixed_4_6 predicate (sensitive layers at 6 bit, MLP at 4 bit)} keeps the high-magnitude channels (attention
output projections — where the LoRA-trained signal concentrates) at
high precision while compressing the MLP feedforward layers (which
tolerate aggressive quant). Result: 38-49% smaller disk + 16-21% lower
RSS at zero (or better) quality vs the uniform Q8 mirror.докер→Docker,
гитхаб→GitHub), preserves meaning verbatim.1@software{{voicescribe-v15-mixed46-2026,
2 title = {{Voice Scribe Russian Dictation Corrector V15 R-3 (mixed46 {Apple Silicon M2 16+ tier})}},
3 author = {{Sabynin, Andrey}},
4 year = {{2026}},
5 note = {{WP#1067 R&D + WP#1074 productisation}},
6 url = {{https://huggingface.co/VoiceScribe/qwen3-5-0.8b-dictation-corrector-mlx-mixed46-g32}}
7}}qwen3-5-0.8b-dictation-corrector-mlx-mxfp4-g32 — sibling tierdocs/wp1067-q4-rd/CYCLES_RESULTS.md (PR #148)