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.
| This model | FP16 baseline | |
|---|---|---|
| Decode tok/s (avg, long traces) | 60.03 | N/A |
| Peak memory (GB) | 5.245 | N/A |
| Disk size (MB) | 4557 | 17969 |
| Benchmark | This model | FP16 baseline | n |
|---|---|---|---|
| GSM8K (math, accuracy) | 92.0% | N/A | 50 |
| MMLU (knowledge, accuracy) | 74.0% | N/A | 50 |
| Context length | Decode tok/s |
|---|---|
| ~128 tokens | 60.9 |
| ~256 tokens | 60.6 |
| ~512 tokens | 60.4 |
| ~1024 tokens | 60.6 |
pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp4-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 ← this model |
| 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) |