Views
No views yet
Note — text tower only. The source model is a Qwen3.5-VL multimodal model (Qwen3_5ForConditionalGeneration, with a vision encoder). This MLX conversion contains only the text/language tower — the vision encoder weights are not included, so this is a text-only model and does not accept image or video input. The text reasoning the original is benchmarked for (GSM8K, MMLU) is unaffected.It loads via the standard MLX LLM path (mlx-lm, LM Studio). For LM Studio compatibility the config carriespartial_rotary_factorinsiderope_parameters(LM Studio's engine hard-indexes that key, unlike mlx-lm which defaults it); the config is also tagged as a causal LM (architectures: ["Qwen3_5ForCausalLM"], vision/image/video token ids removed) to reflect that it is text-only.
lm_head, and a few middle blocks) get more bits; layers that tolerate aggressive quantization get fewer.optiq_mixed_precision (mlx-optiq)lm_head (≈2B params over a 248k-token vocab, with tie_word_embeddings=false) are kept in bf16, which raises the whole-model average and is why the on-disk size (6621 MB) exceeds what a uniform 5-bit model would be.uniform_4bit| Bits | Components | Share |
|---|---|---|
| 8-bit | 56 | 22.6% |
| 6-bit | 111 | 44.8% |
| 4-bit | 81 | 32.7% |
| Total | 248 | 100.0% |
| This model | FP16 baseline | |
|---|---|---|
| Decode tok/s (avg, long traces) | 43.67 | N/A |
| Peak memory (GB) | 7.367 | N/A |
| Disk size (MB) | 6621 | 17969 |
| Benchmark | This model | FP16 baseline | n |
|---|---|---|---|
| GSM8K (math, accuracy) | 94.0% | N/A | 50 |
| MMLU (knowledge, accuracy) | 80.0% | N/A | 50 |
| Context length | Decode tok/s |
|---|---|
| ~128 tokens | 44.9 |
| ~256 tokens | 45.0 |
| ~512 tokens | 44.9 |
| ~1024 tokens | 44.9 |
pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-optiq-5bpw-mlx")
4response = generate(model, tokenizer, prompt="Your prompt here", max_tokens=256, verbose=True)| Model | Variant |
|---|---|
| sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp4-mlx | Block float MX FP4 |
| sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx | Block float MX FP8 |
| sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-optiq-5bpw-mlx | OptiQ mixed-precision (target 5.0 bpw) ← this model |