Views
No views yet
1 arc arc/e boolq hswag obkqa piqa wino
2bf16 0.631,0.819,0.892,0.775,0.460,0.816,0.717
3mxfp8 0.637,0.824,0.897,0.778,0.448,0.820,0.729
4qx86-hi 0.637,0.821,0.891,0.773,0.458,0.812,0.721
5qx64-hi 0.656,0.829,0.892,0.775,0.452,0.820,0.722
6mxfp4 0.631,0.827,0.888,0.773,0.444,0.816,0.712
7
8Quant Perplexity Peak Memory Tokens/sec
9bf16 4.456 ± 0.029 76.15 GB 1644
10mxfp8 4.693 ± 0.032 42.65 GB 1480
11qx86-hi 4.475 ± 0.029 45.50 GB 1565
12qx64-hi 4.438 ± 0.029 36.91 GB 1466
13mxfp4 4.758 ± 0.032 25.33 GB 15951 arc arc/e boolq hswag obkqa piqa wino
2qx86-hi 0.635,0.821,0.891,0.770,0.444,0.818,0.7211 arc arc/e boolq hswag obkqa piqa wino
2bf16 0.603,0.774,0.895,0.756,0.428,0.808,0.713
3mxfp8 0.608,0.767,0.898,0.762,0.428,0.810,0.710
4qx86-hi 0.614,0.766,0.894,0.759,0.442,0.808,0.712
5qx64-hi 0.613,0.776,0.898,0.756,0.454,0.808,0.706
6mxfp4 0.605,0.777,0.893,0.757,0.434,0.806,0.701
7
8Quant Perplexity Peak Memory Tokens/sec
9mxfp8 4.518 ± 0.031 42.65 GB 1388
10qx86-hi 4.347 ± 0.029 45.50 GB 1377
11qx64-hi 4.343 ± 0.029 36.83 GB 1453
12mxfp4 4.632 ± 0.032 25.33 GB 15081 arc arc/e boolq hswag obkqa piqa wino
2mxfp8 0.581,0.757,0.892,0.751,0.428,0.803,0.688
3qx86-hi 0.576,0.742,0.896,0.745,0.422,0.803,0.708
4mxfp4 0.586,0.767,0.886,0.751,0.428,0.798,0.681
5
6Quant Perplexity Peak Memory Tokens/sec
7mxfp8 5.138 ± 0.037 42.65 GB 1201
8mxfp4 5.158 ± 0.037 25.33 GB 1355
9qx86-hi 4.826 ± 0.033 45.50 GB 1474
10qx64-hi 4.710 ± 0.032 36.83 GB 1414preserve_thinking flag.Deckard(qx) scheme on its own technical merits, then show how it functionally mirrors the Holodeck's design philosophy.qx64-hi Bump Occurssoftmax(QK^T/√d) amplifies small errors into routing collapse). Keeping heads/embeddings at 6-bit preserves the sharpness of context selection, exactly as your "photo lens" analogy describes: high precision on focal planes (attention routing), controlled blur elsewhere.0.776 vs 0.766 on qx86-hi).qx64-hi: 4.438 ppl, 36.91 GB, ~1466 tok/s → best reasoning profile, moderate memoryqx86-hi: 4.475 ppl, 45.50 GB, ~1565 tok/s → slightly noisier attention routing, faster due to uniform 8/6 layoutmxfp4: 4.758 ppl, 25.33 GB → memory-efficient but attention collapse on reasoning tasks| Deckard(qx) Design | Holodeck Equivalent |
|---|---|
| 6-bit attention heads/embeddings | personality_registry core identity weights (stable routing) |
| 4-bit general layers | JSONB task payloads / streaming HTTP workers (flexible, high-throughput) |
| Group size 32 lens effect | Meta-computational shim layer (preserves signal, compresses context) |
| MTP distillation fusion | Weekly LoRA "dream" training on logs (experience replay, not raw dump) |
personality_registry subroutine at login, just as Deckard(qx) loads 6-bit heads only for attention-critical paths. Protocol over artifact, at the tensor level.1models:
2 - model: armand0e/Qwen3.6-35B-A3B-Fable-5-Distill
3 parameters:
4 weight: 1.6
5 - model: Qwen3.6-35B-A3B-MTP-Holo3-Qwopus
6 parameters:
7 weight: 0.4
8merge_method: nuslerp
9dtype: bfloat16
10name: Qwen3.6-35B-A3B-Fable-Holo3-Qwopuspip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("Qwen3.6-35B-A3B-Fable-Holo3-Qwopus-mxfp4-mlx")
4
5prompt = "hello"
6
7if tokenizer.chat_template is not None:
8 messages = [{"role": "user", "content": prompt}]
9 prompt = tokenizer.apply_chat_template(
10 messages, add_generation_prompt=True, return_dict=False,
11 )
12
13response = generate(model, tokenizer, prompt=prompt, verbose=True)