Views
No views yet
Qwen/Qwen3.8-27B → trohrbaugh/Qwen3.8-27B-heretic-ara → this MLX build.mlx-lm converts the language tower only: the config carries no vision_config, and no
tensor belongs to the vision tower. Image and video input will not work.bfloat16, exactly as the source
had them. It is the reference point for judging quality loss in the quantized builds,
and the slowest and largest of the set. For everyday use on Apple Silicon the 4-bit
build is 3x faster and needs a third of the memory.| Build | Size | Bits/weight | Generation | Peak memory |
|---|---|---|---|---|
| 4-bit | 15.1 GB | 4.501 | 37.9 tok/s | 15.5 GB |
| 6-bit | 21.9 GB | 6.501 | 27.9 tok/s | 22.2 GB |
| 8-bit | 28.6 GB | 8.501 | 22.2 tok/s | 28.9 GB |
| bf16 | 50.0 GB | 16 | 12.7 tok/s | 54.1 GB |
mlx-lm 0.31.3,
68-token prompt, 120 generated tokens. Single run, one machine, one prompt — an
order-of-magnitude guide, not a benchmark.pip install mlx-lm1mlx_lm.generate --model donedynamics/Qwen3.8-27B-heretic-MLX-bf16 \\
2 --prompt "Introduce yourself briefly." --max-tokens 2561from mlx_lm import load, generate
2
3model, tokenizer = load("donedynamics/Qwen3.8-27B-heretic-MLX-bf16")
4messages = [{"role": "user", "content": "Introduce yourself briefly."}]
5prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True)
6print(generate(model, tokenizer, prompt=prompt, max_tokens=256))enable_thinking and reasoning_effort. Thinking is on by
default and consumes tokens before the answer begins, so a small max_tokens budget may
return reasoning only. Pass enable_thinking=False to apply_chat_template for direct
answers.1mlx_lm.convert --hf-path trohrbaugh/Qwen3.8-27B-heretic-ara \\
2 --mlx-path Qwen3.8-27B-heretic-MLX-bf16mlx-lm 0.31.3 from the bf16 weights at revision
a67ae100d933c0d17af3232bda35825979fc63ce. Before conversion the source was verified:
7 shards, 1199 tensors, all safetensors headers parsed, no missing files.trohrbaugh. This repo
contributes only the MLX conversion.