LoRA distilled from Claude 4.7 Opus reasoning outputs (lordx64 dataset)
Quantization
oMLX oQ6 (mixed-precision, ~6.5 bpw average)
Modality
Text only (vision tower stripped)
Format
MLX safetensors
Model size
~27 GB
Inference memory
~28 GB (incl. KV cache and runtime overhead)
Recommended hardware
Apple Silicon M2 Max 64GB+ / M3 Max / M5 Max
🚀 Quick Start
Install
bash
1pip install mlx-lm
2# Or with uv:3uv tool install mlx-lm
Inference
bash
1mlx_lm.generate \2 --model wangkezun/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled-Text-MLX-oQ6 \3 --prompt "Explain mixture of experts in one paragraph."\4 --max-tokens 512
Drop-in compatible with OpenAI clients including Claude Code (with custom backend), AstrBot, Open WebUI, LibreChat, and Continue.dev.
📈 Measured Performance
Benchmarked on MacBook Pro M5 Max 128GB:
Metric
Value
Prompt processing
~64 tokens/s
Generation speed
~112 tokens/s
Peak memory
28.6 GB
Model load time
~10 sec
Why Text-Only?
Stripping the vision tower offers practical advantages for text-only workflows:
~10% faster generation vs the VLM equivalent (no vision compute path overhead)
~2 GB less peak memory
Simpler deployment — no need for vision processor configs or image preprocessing dependencies
If you only feed text into your model, this version is strictly better than the VLM variant.
Why oQ6?
The jump from oQ4 to oQ6 yields a meaningful improvement in retained world knowledge and entity-level recall, while remaining 8 GB smaller than oQ8 with marginal observable quality difference. For most users this is the right balance.
🧠 Model Behavior
Inherits the Claude reasoning distillation: the model uses <think>...</think> tags to structure its chain-of-thought before producing the final response.
Best for:
Coding agents and tool-use workflows
Complex reasoning tasks (math, logic, analysis)
Long-form text generation
Knowledge-intensive Q&A
Sample output structure:
<think>
1. Analyze the user's request: ...
2. Identify the key constraints: ...
3. Formulate the solution: ...
</think>
Here is my analysis: ...
This quantization by @wangkezun using oMLX on Apple Silicon
This model is not affiliated with or endorsed by Anthropic, PBC. "Claude" is a trademark of Anthropic, PBC. The use of "Claude" in this model name is purely descriptive (nominative fair use) to indicate the upstream training data lineage.
By using this model, you agree to comply with:
The Apache-2.0 license inherited from the base model
Any applicable license terms of the upstream distillation dataset
Local laws and regulations governing AI model usage in your jurisdiction
🙏 Acknowledgments
Alibaba Qwen Team — for the Qwen3.6-35B-A3B base model
lordx64 — for the reasoning-focused LoRA distillation
Jundot (oMLX team) — for the oQ mixed-precision quantization algorithm
Apple MLX team — for the MLX framework and tooling