Views
No views yet
| Uniform Q4 | B1p (this model) | Delta | |
|---|---|---|---|
| Avg Weight Bits | 4.00 | 3.19 | -20% |
| Model Size | 14.0 GB | 15.2 GB | -- |
| MMLU-Pro | 52.2% | 49.4% | -2.8 |
| ARC-Challenge | 90.4% | 92.3% | +1.9 |
| GSM8K | 90.9% | 90.4% | -0.5 |
Layer Wt K V Risk Sinks Role
3 3 2 2 0.8 0 Pure mixer (safe to compress)
7 3 2 2 1.1 0 Pure mixer
11 3 6 4 7.2 4 Transition zone
15 4 8 4 24.6 15 CRITICAL: model's primary sink nexus
19 3 8 4 13.6 8 High sink concentration
23 3 8 4 19.4 12 Secondary sink nexus
27 3 8 4 17.1 10 High sink concentration
31 3 8 4 13.8 8 High sink concentration
35 4 8 6 11.9 7 High risk (V needs extra precision)
39 3 8 6 10.0 6 High risk (V needs extra precision)
43 4 4 3 7.0 4 Transition zone
47 4 8 4 23.6 15 CRITICAL: twin sink nexus with L15
51 4 6 4 7.5 4 Transition zone
55 4 2 2 0.7 0 Pure mixer (most compressible)
59 4 2 2 1.2 0 Pure mixer
63 4 3 3 2.9 0 Final layer, specialized behavior1import mlx_lm
2
3model, tokenizer = mlx_lm.load("Funkylazer/dm-qwen3.5-27b-b1p-knowledgecorridor")
4response = mlx_lm.generate(model, tokenizer, prompt="Explain quantum entanglement.", max_tokens=512)
5print(response)model-0000{1-4}-of-00004.safetensors -- Quantized model weights (15.2 GB total)dm_precision_map.json -- Full per-layer precision map with risk scores, sink counts, entropyconfig.json -- MLX-compatible model configurationtokenizer.json + tokenizer_config.json -- Tokenizer fileschat_template.jinja -- Chat template| Branch | Hypothesis | MMLU-Pro | ARC | GSM8K |
|---|---|---|---|---|
| B1e | Fix knowledge-critical GDN layers | 51.4% | 85.5% | 91.9% |
| B1k | Ultra-aggressive compression | 47.0% | 50.2% | 81.9% |
| B1o | Composite merge | 49.6% | 91.1% | 91.3% |
| B1p | Knowledge corridor protection | 49.4% | 92.3% | 90.4% |
1@misc{zhivelev2026dm,
2 title={Dimensional Matrixing: Non-Uniform Quantization for Hybrid Attention-SSM Architectures},
3 author={Zhivelev, Leon},
4 year={2026},
5 url={https://github.com/funkylazer/dimensional-matrixing}
6}