Views
No views yet
| Routed experts | 109–186/layer (mean 128, −50% total) |
| Active | top-8 + 1 shared |
| Healing | none (cold) |
| Format | MLX, 8-bit |
strict=Falsemlx_lm.load is strict and will fail with a shape mismatch. Load with strict=False:1from pathlib import Path
2from huggingface_hub import snapshot_download
3from mlx_lm.utils import load_model, load_tokenizer
4
5path = Path(snapshot_download("neopolita/Qwen3.6-35B-A3B-8bit-Prune-50-Adaptive"))
6model, _ = load_model(path, strict=False) # adopts the per-layer shapes
7tok = load_tokenizer(path)num_experts), so the variable model runs correctly once loaded with strict=False.| metric | base | this model |
|---|---|---|
| wikitext PPL | 7.98 | 10.93 |
| winogrande | 0.70 | 0.65 |
| hellaswag (acc_norm) | 0.555 | 0.58 |
| piqa (acc_norm) | 0.84 | 0.81 |
| gsm8k (strict) | 0.99 | 0.95 |
| ifeval (prompt-strict) | 0.86 | 0.76 |
| ifeval (inst-loose) | 0.933 | 0.847 |