Views
No views yet
CMKL/MANGO1.5-Qwen3.5-9B, CMKL University's dense 9B bilingual (Thai/English) fine-tune of Qwen/Qwen3.5-9B, for use with llama.cpp and any runtime built on it (Ollama, LM Studio, koboldcpp, text-generation-webui, etc.).general.architecture = qwen35).mmproj file, and these files will not do image/video input.qwen35.nextn_predict_layers = 1, 33 blocks total: 32 main + 1 MTP). Whether your runtime actually uses it for self-speculative decoding depends on that runtime's support for qwen35's NextN layer — check your llama.cpp build's release notes if in doubt.<think>/<tool_call> hybrid-reasoning template from the base model.| File | Quant | Size | Notes |
|---|---|---|---|
MANGO1.5-Qwen3.5-9B-BF16.gguf | BF16 | 18 GB | Full precision, lossless vs. source. Use as a base for your own requantization, or if you have the VRAM/RAM and want the highest fidelity. |
MANGO1.5-Qwen3.5-9B-Q8_0.gguf | Q8_0 | 9.2 GB | Near-lossless. Best choice if quality matters more than size and you have the room. |
MANGO1.5-Qwen3.5-9B-Q6_K.gguf | Q6_K | 7.1 GB | Very close to Q8_0 quality, meaningfully smaller. |
MANGO1.5-Qwen3.5-9B-Q5_K_M.gguf | Q5_K_M | 6.2 GB | Good middle ground; low measurable quality loss. |
MANGO1.5-Qwen3.5-9B-Q4_K_M.gguf | Q4_K_M | 5.4 GB | Recommended default. The community-standard balance of quality vs. size/speed; fits comfortably on 8GB-class GPUs or in ~6-8GB RAM for CPU inference. |
MANGO1.5-Qwen3.5-9B-Q4_K_S.gguf | Q4_K_S | 5.2 GB | Slightly smaller/faster than Q4_K_M at a small further quality cost. Use if you're VRAM-constrained. |
MANGO1.5-Qwen3.5-9B-IQ4_XS.gguf | IQ4_XS | 5.0 GB | Smallest 4-bit-class option here. Built without an importance matrix, so treat it as a size-first pick rather than the best-quality 4-bit option — Q4_K_S/Q4_K_M are the safer default at a similar size. |
llama-quantize; no calibration/importance-matrix data was used for any of them (including IQ4_XS), so IQ4_XS in particular may underperform its usual reputation relative to the K-quants.Q4_K_M.Q5_K_M or Q6_K.BF16.Q4_K_S, then IQ4_XS if you still need to shave more off.1# CLI, one-shot
2llama-cli -m MANGO1.5-Qwen3.5-9B-Q4_K_M.gguf -ngl 99 -p "Hello, who are you?"
3
4# OpenAI-compatible server
5llama-server -m MANGO1.5-Qwen3.5-9B-Q4_K_M.gguf -ngl 99 --port 8080-ngl 99 offloads all layers to GPU; drop it (or lower the number) for CPU-only or partial offload. The chat template is embedded, so llama-cli's interactive/conversation mode and llama-server's /v1/chat/completions endpoint will apply it automatically — no need to hand-format the bilingual system prompt from the base model card, though you're free to override it per-request.qwen35).ollama run hf.co/CMKL/MANGO1.5-Qwen3.5-9B-GGUF:Q4_K_MQ4_K_M for any other quant tag from the Files table above.Modelfile:1cat <<'EOF' > Modelfile
2FROM ./MANGO1.5-Qwen3.5-9B-Q4_K_M.gguf
3EOF
4
5ollama create mango1.5 -f Modelfile
6ollama run mango1.5TEMPLATE directive is needed in the Modelfile — Ollama reads the chat template embedded in the GGUF metadata (same one llama-cli/llama-server use) automatically.qwen35 architecture) support is recent. If your llama.cpp build (or the llama.cpp version bundled inside your Ollama install) predates it, these files will fail to load with an unknown-architecture error — update to a current build (e.g. ghcr.io/ggml-org/llama.cpp:full-cuda / server-cuda on Docker Hub / GHCR, or build from source; ollama --version / ollama pull the latest release for Ollama) before reporting a loading issue.