GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE β†’
Model Intelligence Sheet

khoin68/qwen3.5-9B-super-coder-Q3KM-GGUF overview

πŸš€ Qwen 3.5 9B Super Coder Phase 4 Specialized GGUF Quantized GGUF weights of jica98/qwen3.5 9b phase4 specialize lora merged directly with Qwen/Qwen3.5 9B Bas…

ggufqwenqwen3.5codecodingagentictool-callingllama.cppunslothsuper-coderfullstacktext-generationenvibase_model:Qwen/Qwen3.5-9B-Basebase_model:quantized:Qwen/Qwen3.5-9B-Baselicense:apache-2.0region:usconversational

Runs locally from ~3.56 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
text-generation
Author

Repository Files & Downloads

3 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
qwen3.5-9B-super-coder.Q2_K.ggufGGUFGGUF3.56 GBDownload
qwen3.5-9B-super-coder.Q3_K_M.ggufGGUFGGUF4.31 GBDownload
qwen3.5-9B-super-coder.Q3_K_S.ggufGGUFGGUF3.97 GBDownload

Model Details

Model IDkhoin68/qwen3.5-9B-super-coder-Q3KM-GGUF
Authorkhoin68
Pipelinetext-generation
Licenseapache-2.0
Base modelQwen/Qwen3.5-9B-Base
Last modified2026-08-18T13:10:30.000Z

Model README

---

language:

- en

- vi

license: apache-2.0

tags:

- qwen

- qwen3.5

- code

- coding

- agentic

- tool-calling

- gguf

- llama.cpp

- unsloth

- super-coder

- fullstack

base_model: Qwen/Qwen3.5-9B-Base

pipeline_tag: text-generation

inference: false

---

πŸš€ Qwen 3.5 9B Super-Coder (Phase 4 Specialized - GGUF)

Quantized GGUF weights of jica98/qwen3.5-9b-phase4-specialize-lora merged directly with Qwen/Qwen3.5-9B-Base in full FP16 precision, then quantized via llama.cpp K-Quants.

Specialized for Fullstack Software Engineering, Autonomous Agentic Tool Calling, and Complex Code Reasoning.

---

🌟 Model Highlights

  • 🧠 9-Billion Parameter Intelligence: Powered by Phase 4 specialization, Claude distillation, and Fable reasoning traces for deep architectural and algorithmic tasks.
  • ⚑ Next-Gen Hybrid Architecture: Built on Qwen 3.5's Gated DeltaNet SSM + Gated Attention, providing blazing fast inference and linear memory scaling.
  • πŸ›‘οΈ 1-Pass Clean Quantization: Merged directly in FP16 to prevent double-quantization degradation and eliminate repetition loops on DeltaNet SSM tensors.
  • 🧰 Native Agentic Tool Calling: Highly attuned for OpenAI-compatible function calling (write_file, replace_lines, run_terminal_command).
  • 🌐 Multilingual & Fullstack Mastery: TypeScript, React, Next.js, Python, Rust, Go, C++, SQL, and Shell scripting.

---

πŸ“Š Quantization Breakdown & Hardware Compatibility

| File Name | Quant Type | File Size | Recommended VRAM | Ideal Context Window | Best For |

| :--- | :--- | :--- | :--- | :--- | :--- |

| qwen3.5-9B-super-coder.Q3_K_M.gguf | Q3_K_M | 4.62 GB | 6 GB - 8 GB | 16,000 - 24,000 tokens | πŸ† Recommended: Best balance of reasoning depth & memory efficiency. |

| qwen3.5-9B-super-coder.Q3_K_S.gguf | Q3_K_S | 4.26 GB | 6 GB | 20,000 - 26,000 tokens | High context with low VRAM footprint. |

| qwen3.5-9B-super-coder.Q2_K.gguf | Q2_K | 3.83 GB | 4 GB - 6 GB | 24,000 - 32,000 tokens | Ultra-lightweight execution on consumer GPUs. |

> [!NOTE]

> Standard K-Quants (Q3_K_M, Q3_K_S, Q2_K) are used instead of legacy IQ quants to ensure 100% stability across Qwen 3.5's hybrid DeltaNet state-space layers.

---

πŸ’» Quickstart & How to Run

1. In Unsloth Studio / Desktop

  1. Open Unsloth Studio $\to$ Navigate to Model Hub.
  2. Search for khoin68/qwen3.5-9B-super-coder-Q3KM-GGUF.
  3. Select your preferred quant (e.g. Q3_K_M) and click Download $\to$ Load.

2. In LM Studio

  1. Search khoin68/qwen3.5-9B-super-coder-Q3KM-GGUF.
  2. Download the .gguf file and start the local server on port 1234 or 8888.

3. In llama.cpp CLI / Server

# Run local OpenAI-compatible inference server
llama-server -m qwen3.5-9B-super-coder.Q3_K_M.gguf -c 24000 --port 8888 -ngl 99
  1. In Python via llama-cpp-python


from llama_cpp import Llama
llm = Llama(
    model_path="qwen3.5-9B-super-coder.Q3_K_M.gguf",
    n_ctx=24000,
    n_gpu_layers=-1, # Offload all layers to GPU
    verbose=False
)
response = llm.create_chat_completion(
    messages=[
        {"role": "system", "content": "You are an expert software engineer."},
        {"role": "user", "content": "Write a clean TypeScript debounce utility with cancel support."}
    ]
)
print(response["choices"][0]["message"]["content"])

πŸ“ Prompt Format (ChatML)



<|im_start|>system
You are an autonomous AI coding assistant.<|im_end|>
<|im_start|>user
{prompt}<|im_end|>
<|im_start|>assistant

πŸ“œ Credits & Acknowledgements

Base Architecture: Alibaba Cloud Qwen Team (Qwen/Qwen3.5-9B-Base)

Phase 4 LoRA Specialization: @jica98 (jica98/qwen3.5-9b-phase4-specialize-lora)

FP16 Clean Merge & GGUF Quantization: @khoin68

Run khoin68/qwen3.5-9B-super-coder-Q3KM-GGUF with guIDE

Download guIDE β€” the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE β†’ Β· Browse 524k+ models Β· Compare models

Source: Hugging Face Β· Compare models