Views
No views yet
| Metric | Value |
|---|---|
| Parameters | 27B dense |
| Disk size | ~20 GB |
| Avg bits/weight | ~6.5 |
| Peak memory | ~22 GB |
| Throughput (M3 Ultra) | 27 tok/s (oMLX), 23 tok/s (mlx_lm) |
| Quality (Phipps eval v3) | 4.45–4.47 |
| Component | Bits | Rationale |
|---|---|---|
Embeddings (embed_tokens) | 8 | Token↔continuous space mapping — errors cascade |
LM Head (lm_head) | 8 | Directly impacts output probabilities |
| GQA self-attention (q/k/v/o_proj) | 8 | Traditional softmax attention — the "precise reasoning" layers |
| DeltaNet linear attention inputs (qkv, z, b, a) | 6 | Linear recurrence is more robust to quantization noise |
| DeltaNet output projection | 8 | Last transform before residual stream |
| All MLP layers (gate/down/up_proj) | 5 | Bulk of parameters, tolerant due to element-wise nonlinearities |
1from mlx_lm import load, generate
2
3model, tokenizer = load("Phipper/qwen3.5-27b-opus-distilled-proposal-c")
4prompt = tokenizer.apply_chat_template(
5 [{"role": "user", "content": "What is a leveraged buyout?"}],
6 tokenize=False, add_generation_prompt=True
7)
8response = generate(model, tokenizer, prompt=prompt, max_tokens=512)
9print(response)