LoRA distilled from Claude 4.7 Opus reasoning outputs (lordx64 dataset)
Quantization
oMLX oQ8 (mixed-precision, ~8.7 bpw average)
Modality
Text only (vision tower stripped)
Format
MLX safetensors
Model size
~34 GB
Inference memory
~37 GB (incl. KV cache and runtime overhead)
Recommended hardware
Apple Silicon M2 Ultra 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-oQ8 \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
~58 tokens/s
Generation speed
~103 tokens/s
Peak memory
36.9 GB
Model load time
~12 sec
When to Choose oQ8 over oQ6
oQ8 retains slightly more precision than oQ6, but the observable quality difference is small for most tasks. Use oQ8 when:
You need the absolute highest fidelity quantization
Running quality benchmarks against the BF16 reference
Memory budget is generous (37+ GB free)
For most users, Text-oQ6 is the better choice — comparable quality at 7 GB less footprint.
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.
🧠 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)
Quality-sensitive applications where size is not a constraint
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