Views
No views yet

| Property | Value |
|---|---|
| Base Model | google/gemma-4-26B-A4B-it |
| Architecture | Gemma 4 MoE (128 experts, top-8 routing) |
| Parameters | 26B total / 4B active per token |
| Quantization | PRISM-PRO-DYNAMIC-QUANT (MLX native) |
| Achieved BPW | 6.52 |
| File Size | ~20 GB |
| Context Length | 262,144 tokens |
| Modalities | Text, Image, Video |
| Runtime | mlx-vlm (Apple Silicon Metal) |
| Creator | Ex0bit |
Note: This 26B MoE variant does not include audio support. For audio, see the 31B dense variant.
config.json contains per-tensor quantization overrides that mlx-vlm loads natively — no custom runtime required. The compiled Metal kernels automatically handle mixed-precision tensors in a single forward pass at full GPU speed.1pip install mlx-vlm
2
3# Interactive chat
4mlx_vlm.chat --model Ex0bit/MYTHOS-26B-A4B-PRISM-PRO-DQ-MLX \
5 --temperature 0.7 --max-tokens 2048 --max-kv-size 8192
6
7# Vision prompt
8python -m mlx_vlm.generate \
9 --model Ex0bit/MYTHOS-26B-A4B-PRISM-PRO-DQ-MLX \
10 --image path/to/image.jpg \
11 --prompt "Describe this image in detail." \
12 --max-tokens 5001from mlx_vlm import load, generate
2from mlx_vlm.prompt_utils import apply_chat_template
3
4model, processor = load("Ex0bit/MYTHOS-26B-A4B-PRISM-PRO-DQ-MLX")
5config = model.config
6
7prompt = apply_chat_template(
8 processor, config,
9 "Describe this scene.",
10 num_images=1
11)
12response = generate(
13 model, processor, prompt,
14 image=["path/to/image.jpg"],
15 max_tokens=500, temperature=0.7
16)
17print(response)