Views
No views yet
| File | Size | RAM Required | Notes |
|---|---|---|---|
...-F16.gguf | 53.8 GB | 64+ GB | Full precision |
...-Q4_K_M.gguf | 26.9 GB | 32+ GB | Recommended (F16 vision embed) |
...-Q4_K_M-Q8.gguf | 19.7 GB | 24+ GB | Q4 language + Q8 vision embed |
| File | Size | RAM Required | Notes |
|---|---|---|---|
...-MTP-F16.gguf | 54.7 GB | 64+ GB | Full precision + MTP |
...-MTP-Q8_0.gguf | 29 GB | 36+ GB | Near-lossless + MTP |
...-MTP-Q6_K.gguf | 22.4 GB | 32+ GB | Very high quality + MTP |
...-MTP-Q5_K.gguf | 19.5 GB | 24+ GB | Recommended for 48GB + MTP |
...-MTP-Q4_K.gguf | 16.8 GB | 20+ GB | Good quality + MTP |
...-MTP-Q3_K.gguf | 13.5 GB | 16+ GB | 16GB VRAM + MTP |
...-MTP-Q2_K.gguf | 10.9 GB | 12+ GB | 2-bit + MTP |
| File | Size | Notes |
|---|---|---|
...-mmproj-f16.gguf | 928 MB | Required for multimodal (image understanding) |
1./llama-server -m Qwen3.6-27B-abliterated-MTP-Q5_K.gguf \
2 --jinja --spec-type draft-mtp --spec-draft-n-max 6 -ngl 99Runtime compatibility: MTP requires llama-server b9180+. Ollama does not support MTP yet. Use the standard (non-MTP) files for Ollama/LM Studio.
mmproj-f16.gguf file is the vision encoder for image understanding:1./llama-mtmd-cli -m Qwen3.6-27B-abliterated-Q4_K_M.gguf \
2 --mmproj Qwen3.6-27B-abliterated-mmproj-f16.gguf \
3 -p "Describe this image" --image photo.jpg1# Recommended for Apple Silicon 48GB+ (M4 Pro, M4 Max)
2ollama run hf.co/Bahushruth/Qwen3.6-27B-abliterated-GGUF:Q4_K_M
3
4# For 24GB systems
5ollama run hf.co/Bahushruth/Qwen3.6-27B-abliterated-GGUF:Q4_K_M-Q81huggingface-cli download Bahushruth/Qwen3.6-27B-abliterated-GGUF \
2 Qwen3.6-27B-abliterated-Q4_K_M.gguf --local-dir .
3
4./llama-cli -m Qwen3.6-27B-abliterated-Q4_K_M.gguf \
5 -p "You are a helpful assistant." \
6 --chat-template chatml -cnv -c 262144