Views
No views yet
Provenance, plainly. The original model and weights are by Qwen (Alibaba). The 4-bit MLX conversion is mlx-community/Qwen3.8-27B-4bit — this repo mirrors those weights byte-for-byte, it does not re-quantize them. It exists so Krill'sqwen3.8-27balias resolves to a pinned, tested blob. If you are not using Krill, prefer pulling from mlx-community directly.
qwen3_5-class hybrid, and Krill ships a from-scratch native
runtime for that architecture — the GatedDeltaNet (SSM) linear-attention
layers, the gated full-attention layers, the vision tower and the 3D
interleaved mRoPE are all Swift. No Python bridge, no mlx_vlm passthrough.reasoning_effort
control (xhigh / medium / low).1# install Krill
2brew tap srvsngh99/krill && brew install krill
3# or:
4curl -fsSL https://raw.githubusercontent.com/srvsngh99/Krill/main/install.sh | sh
5
6# run Qwen3.8-27B (pulls this repo)
7krill run qwen3.8-27b "Explain why a hybrid linear-attention decoder saves memory."
8
9# with an image
10krill run qwen3.8-27b --image diagram.png "What does this diagram show?"
11
12# dial the reasoning depth down for short answers
13KRILL_REASONING_EFFORT=low krill run qwen3.8-27b "One-line summary of RAII."1pip install -U mlx-vlm
2python -m mlx_vlm generate --model srv-sngh/Qwen3.8-27B-mlx-4bit \
3 --prompt "Describe this image." --image path/to/image.jpg --max-tokens 200| Benchmark | Qwen3.8-27B |
|---|---|
| SWE-bench Pro | 61.7 |
| QwenSWEBench | 79.0 |
| Terminal Bench 2.1 (Terminus) | 73.0 |
| CoWorkBench (long-horizon office work) | 70.7 |
| LiveCodeBench v6 | 90.3 |
| GPQA Diamond | 89.2 |
| IFBench | 79.5 |
| field | value |
|---|---|
| mode | affine |
| bits | 4 |
| group size | 64 |
| vision tower | preserved (bf16, not quantized) |
| MTP head | stripped |
| on disk | ~16.1 GiB |
temperature=1.0, top_p=0.95, top_k=20temperature=0.7, top_p=0.80, top_k=20,
presence_penalty=1.5