Views
No views yet
Qwen/Qwen3.6-27B, built and optimized for on-device inference on iPad Pro M-series and Apple Silicon Macs via llama.cpp or apps that wrap it (e.g. Haplo).Built and quantized by jc-builds for the Haplo ecosystem. Original weights © Alibaba Cloud, redistributed under Apache 2.0 per the upstream license.
enable_thinking). 256K context. Apache 2.0 (no custom Qwen license restrictions).| File | Size | Bits/weight | Recommended use |
|---|---|---|---|
Qwen3.6-27B-Q4_K_M.gguf | 16 GB | 4.8 | Default — fits 16GB iPad Pro M-series and any Apple Silicon Mac with 16GB+ |
Qwen3.6-27B-Q8_0.gguf | 28 GB | 8.5 | Near-FP16 quality; Mac-only (24GB+ RAM recommended) |
Q5_K_M was skipped — at this size Q4 is the practical phone/tablet pick and Q8 is the practical Mac pick. The middle quant adds storage cost without meaningful capability headroom on either device class.
Q4_K_M for iPad. Pick Q8_0 only on Mac with plenty of RAM if you want near-FP16 reasoning quality.⚠️ Quality note: This Q4_K_M was built viaQ8_0 → Q4_K_Mre-quantization (with--allow-requantize) instead of the standardFP16 → Q4_K_Mpath, because the FP16 intermediate (~54 GB) didn't fit on the build machine's disk. Expect a small (1-3% measurable) quality regression vs the canonical FP16-routed Q4_K_M. If you need maximum quality and have 110+ GB free, regenerate from FP16 yourself using the recipe below.
llama-cli.| Device | RAM | Q4_K_M tok/s | Notes |
|---|---|---|---|
| iPad Pro M4 | 16 GB | ~12 tok/s | Tight on RAM — close other apps |
| iPad Pro M5 | 16 GB | ~15 tok/s | Comfortable |
| MacBook Pro M3 | 16 GB | ~22 tok/s | Solid |
| MacBook Pro M4 Max | 32 GB | ~38 tok/s | Snappy; consider Q8_0 |
This model does NOT fit on iPhone. Even iPhone 16 Pro (8 GB RAM) cannot run a 16 GB model.
https://huggingface.co/jc-builds/Qwen3.6-27B-GGUF/resolve/main/Qwen3.6-27B-Q4_K_M.gguff9cd456 (May 7, 2026) — needs the Qwen3_5ForConditionalGeneration / qwen35 arch register.1huggingface-cli download jc-builds/Qwen3.6-27B-GGUF Qwen3.6-27B-Q4_K_M.gguf --local-dir .
2
3./llama-cli \
4 -m Qwen3.6-27B-Q4_K_M.gguf \
5 -p "Prove that the square root of 2 is irrational." \
6 -n 1024 \
7 --temp 0.6 \
8 --top-p 0.95/think (or set enable_thinking=True in your chat-template renderer). For fast chat, use /no_think.1cat <<'EOF' > Modelfile
2FROM ./Qwen3.6-27B-Q4_K_M.gguf
3PARAMETER temperature 0.6
4PARAMETER top_p 0.95
5EOF
6ollama create qwen3.6-27b -f Modelfile
7ollama run qwen3.6-27btemperature=0.6, top_p=0.95 (Qwen team's recommendation).
For deterministic / structured: temperature=0.0, top_p=1.0.<|im_start|>system
{system}<|im_end|>
<|im_start|>user
{user}<|im_end|>
<|im_start|>assistant
{assistant}<|im_end|><think>\n after the assistant turn. For non-thinking mode, a pre-closed <think>\n\n</think>\n\n block. Kuzco's .qwen3 formatter handles both via the enableThinking flag.f9cd456 (May 7, 2026).Qwen/Qwen3.6-27B safetensors checkpoint (~55.6 GB BF16, 15 shards) via huggingface-cli.convert_hf_to_gguf.py --outtype q8_0 (skipping the FP16 intermediate to fit in available disk).llama-quantize --allow-requantize:
llama-quantize --allow-requantize Qwen3.6-27B-Q8_0.gguf Qwen3.6-27B-Q4_K_M.gguf Q4_K_MThe canonical recipe isFP16 → Q4_K_M. We used the requantize path because FP16 didn't fit on disk. If you have 110+ GB free, regenerate from FP16 for slightly better quality.
Qwen 3.6 by Alibaba Cloud. Licensed under Apache 2.0.