Instructions to use sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
Add README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: empero-ai/Qwythos-9B-Claude-Mythos-5-1M
|
| 4 |
+
tags:
|
| 5 |
+
- mlx
|
| 6 |
+
- quantized
|
| 7 |
+
- apple-silicon
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx
|
| 11 |
+
|
| 12 |
+
MLX quantization of [empero-ai/Qwythos-9B-Claude-Mythos-5-1M](https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M) for Apple Silicon.
|
| 13 |
+
|
| 14 |
+
> **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.
|
| 15 |
+
|
| 16 |
+
**Variant**: Block float MX FP8
|
| 17 |
+
**Disk size**: 8826 MB
|
| 18 |
+
**Quantized by**: [sahilchachra](https://huggingface.co/sahilchachra)
|
| 19 |
+
|
| 20 |
+
## Benchmark results
|
| 21 |
+
|
| 22 |
+
Evaluated on Apple M5 Pro with MLX. Model loaded once; performance and quality measured in a single pass.
|
| 23 |
+
|
| 24 |
+
### Performance
|
| 25 |
+
|
| 26 |
+
| | This model | FP16 baseline |
|
| 27 |
+
|---|---:|---:|
|
| 28 |
+
| Decode tok/s (avg, long traces) | 30.67 | N/A |
|
| 29 |
+
| Peak memory (GB) | 9.599 | N/A |
|
| 30 |
+
| Disk size (MB) | 8826 | 17969 |
|
| 31 |
+
|
| 32 |
+
### Quality
|
| 33 |
+
|
| 34 |
+
| Benchmark | This model | FP16 baseline | n |
|
| 35 |
+
|---|---:|---:|---:|
|
| 36 |
+
| GSM8K (math, accuracy) | 100.0% | N/A | 50 |
|
| 37 |
+
| MMLU (knowledge, accuracy) | 80.0% | N/A | 50 |
|
| 38 |
+
|
| 39 |
+
### Context scaling (decode tok/s)
|
| 40 |
+
|
| 41 |
+
| Context length | Decode tok/s |
|
| 42 |
+
|---:|---:|
|
| 43 |
+
| ~128 tokens | 33.7 |
|
| 44 |
+
| ~256 tokens | 33.6 |
|
| 45 |
+
| ~512 tokens | 33.6 |
|
| 46 |
+
| ~1024 tokens | 33.5 |
|
| 47 |
+
|
| 48 |
+
## Usage
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
pip install mlx-lm
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
```python
|
| 55 |
+
from mlx_lm import load, generate
|
| 56 |
+
|
| 57 |
+
model, tokenizer = load("sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx")
|
| 58 |
+
response = generate(model, tokenizer, prompt="Your prompt here", max_tokens=256, verbose=True)
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
## All variants in this collection
|
| 62 |
+
|
| 63 |
+
| Model | Variant |
|
| 64 |
+
|---|---|
|
| 65 |
+
| [sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp4-mlx](https://huggingface.co/sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp4-mlx) | Block float MX FP4 |
|
| 66 |
+
| [sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx](https://huggingface.co/sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-mxfp8-mlx) | Block float MX FP8 ← this model |
|
| 67 |
+
| [sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-optiq-5bpw-mlx](https://huggingface.co/sahilchachra/Qwythos-9B-Claude-Mythos-5-1M-optiq-5bpw-mlx) | OptiQ mixed-precision (target 5.0 bpw) |
|
| 68 |
+
|
| 69 |
+
## Notes
|
| 70 |
+
|
| 71 |
+
- Requires Apple Silicon (M1 or later) with MLX
|
| 72 |
+
- Benchmarks run on Apple M5 Pro, 24 GB unified memory
|
| 73 |
+
- License: see [empero-ai/Qwythos-9B-Claude-Mythos-5-1M](https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M) for the original model's license
|
| 74 |
+
|
| 75 |
+
## Original model
|
| 76 |
+
|
| 77 |
+
See [empero-ai/Qwythos-9B-Claude-Mythos-5-1M](https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M) for full model details and intended use.
|