Views
No views yet
empero-ai/Qwythos-9B-Claude-Mythos-5-1M,
a Qwen3.5-9B–based multimodal (vision + text) reasoning model with a 1M-context configuration.| Base | empero-ai/Qwythos-9B-Claude-Mythos-5-1M (Qwen3_5ForConditionalGeneration, VLM) |
| Precision | bfloat16 (no quantization) |
| Size | ~18 GB |
| Tool | mlx_vlm.convert --dtype bfloat16 (mlx-vlm 0.4.4) |
| Architecture | qwen3_5 VLM (qwen3_vl-style vision tower + linear-attention text model) |
empero-ai bf16 weights run through
🤗 transformers with its default attention path (no flash-linear-attention — the typical
out-of-the-box experience). Perplexity is on a fixed 252-token English passage.| Metric | Original (PyTorch-MPS) | This build — MLX bf16 |
|---|---|---|
| Generation | 7.4 tok/s | 14.5 tok/s (~2×) |
| Prefill | 235 tok/s | 270 tok/s |
| Peak memory | 19.1 GB | 19.1 GB (same) |
| Perplexity | 5.74 | 5.74 (identical) |
1pip install mlx-vlm
2python -m mlx_vlm generate \
3 --model BRlin/Qwythos-9B-Claude-Mythos-5-1M-MLX-bf16 \
4 --prompt "Who are you?" --max-tokens 128mlx_vlm.convert (mlx-vlm 0.4.x) accepts
this model; both are baked into this repo's config.json:text_config.rope_parameters.partial_rotary_factor — the YaRN-edited source moved this
key to the top level of text_config; mlx-vlm reads it from inside rope_parameters.
Re-added as 0.25.vision_config.model_type — source uses HF's qwen3_5_vision; mlx-vlm's VisionModel
only accepts qwen3_vl / qwen3_5 / qwen3_5_moe. Set to qwen3_5.torchvision must also be importable in the conversion env (transformers' AutoProcessor
builds Qwen3VLVideoProcessor). mlx-vlm's qwen3_5 rope does not apply YaRN scaling, so the
YaRN keys in rope_parameters are inert; max_position_embeddings is left at 1,048,576.empero-ai/Qwythos-9B-Claude-Mythos-5-1M authors). This repo only provides an MLX-format
conversion for Apple Silicon.