Instructions to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AtomicChat/Qwen3-Coder-30B-A3B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AtomicChat/Qwen3-Coder-30B-A3B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
- Ollama
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with Ollama:
ollama run hf.co/AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
- Unsloth Studio
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for AtomicChat/Qwen3-Coder-30B-A3B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for AtomicChat/Qwen3-Coder-30B-A3B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AtomicChat/Qwen3-Coder-30B-A3B-GGUF to start chatting
- Pi
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with Docker Model Runner:
docker model run hf.co/AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
- Lemonade
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.Qwen3-Coder-30B-A3B-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use AtomicChat/Qwen3-Coder-30B-A3B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "AtomicChat/Qwen3-Coder-30B-A3B-GGUF:UD-Q4_K_XL" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Commit ·
b800d5d
0
Parent(s):
Duplicate from AlexAtomic/qwen3-coder-30b-a3b-GGUF
Browse files- .gitattributes +48 -0
- README.md +135 -0
- hero.png +3 -0
- pill_atomic_v3.png +0 -0
- pill_discord_v3.png +0 -0
- pill_github_v3.png +0 -0
- qwen3-coder-30b-a3b-IQ3_M.gguf +3 -0
- qwen3-coder-30b-a3b-IQ4_XS.gguf +3 -0
- qwen3-coder-30b-a3b-Q2_K.gguf +3 -0
- qwen3-coder-30b-a3b-Q3_K_L.gguf +3 -0
- qwen3-coder-30b-a3b-Q3_K_M.gguf +3 -0
- qwen3-coder-30b-a3b-Q4_K_M.gguf +3 -0
- qwen3-coder-30b-a3b-Q4_K_S.gguf +3 -0
- qwen3-coder-30b-a3b-Q5_K_M.gguf +3 -0
- qwen3-coder-30b-a3b-Q5_K_S.gguf +3 -0
- qwen3-coder-30b-a3b-Q6_K.gguf +3 -0
- qwen3-coder-30b-a3b-Q8_0.gguf +3 -0
- qwen3-coder-30b-a3b-UD-Q4_K_XL.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
qwen3-coder-30b-a3b-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
qwen3-coder-30b-a3b-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
qwen3-coder-30b-a3b-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
qwen3-coder-30b-a3b-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
qwen3-coder-30b-a3b-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
qwen3-coder-30b-a3b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
qwen3-coder-30b-a3b-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
qwen3-coder-30b-a3b-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
qwen3-coder-30b-a3b-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
qwen3-coder-30b-a3b-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
qwen3-coder-30b-a3b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
qwen3-coder-30b-a3b-UD-Q4_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
hero.png filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
license_link: https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct/blob/main/LICENSE
|
| 4 |
+
thumbnail: https://huggingface.co/AlexAtomic/qwen3-coder-30b-a3b-GGUF/resolve/main/hero.png
|
| 5 |
+
base_model:
|
| 6 |
+
- Qwen/Qwen3-Coder-30B-A3B-Instruct
|
| 7 |
+
base_model_relation: quantized
|
| 8 |
+
quantized_by: AlexAtomic
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
library_name: gguf
|
| 11 |
+
tags:
|
| 12 |
+
- atomic-chat
|
| 13 |
+
- qwen
|
| 14 |
+
- qwen3
|
| 15 |
+
- qwen3-coder
|
| 16 |
+
- gguf
|
| 17 |
+
- imatrix
|
| 18 |
+
- quantized
|
| 19 |
+
- llama.cpp
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
<center>
|
| 23 |
+
|
| 24 |
+
<div style="display:flex; justify-content:center; align-items:center; gap:10px; flex-wrap:wrap;">
|
| 25 |
+
<a href="https://atomic.chat"><img src="https://huggingface.co/AlexAtomic/qwen3-coder-30b-a3b-GGUF/resolve/main/pill_atomic_v3.png" alt="Atomic Chat" width="186"></a>
|
| 26 |
+
<a href="https://discord.gg/8wGSsvmg4V"><img src="https://huggingface.co/AlexAtomic/qwen3-coder-30b-a3b-GGUF/resolve/main/pill_discord_v3.png" alt="Join Discord" width="184"></a>
|
| 27 |
+
<a href="https://github.com/AtomicBot-ai/Atomic-Chat"><img src="https://huggingface.co/AlexAtomic/qwen3-coder-30b-a3b-GGUF/resolve/main/pill_github_v3.png" alt="GitHub" width="141"></a>
|
| 28 |
+
</div>
|
| 29 |
+
|
| 30 |
+
<br/>
|
| 31 |
+
|
| 32 |
+
<img src="https://huggingface.co/AlexAtomic/qwen3-coder-30b-a3b-GGUF/resolve/main/hero.png" alt="Qwen3 Coder 30B A3B" style="width:100%; max-width:100%; height:auto; margin-bottom:0.6em;"/>
|
| 33 |
+
|
| 34 |
+
<div style="display:flex; justify-content:center; gap:0.5em;">
|
| 35 |
+
<a href="https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct"><strong>Base model: Qwen/Qwen3-Coder-30B-A3B-Instruct</strong></a>
|
| 36 |
+
</div>
|
| 37 |
+
</center>
|
| 38 |
+
|
| 39 |
+
**Qwen3 Coder 30B A3B**, self-quantized to GGUF by [Atomic Chat](https://atomic.chat). Built straight from Qwen's original weights with a per-tensor importance matrix. Runs fully offline.
|
| 40 |
+
|
| 41 |
+
## Highlights
|
| 42 |
+
|
| 43 |
+
- **Agentic coding specialist** with significant performance among open models on agentic coding, agentic browser-use, and other foundational coding tasks.
|
| 44 |
+
- **Efficient MoE**: 30.5B total parameters, only 3.3B activated per token (128 experts, 8 activated).
|
| 45 |
+
- **256K native context** (262,144 tokens), extendable up to ~1M tokens with Yarn, optimized for repository-scale understanding.
|
| 46 |
+
- **Tool calling built in** with a specially designed function-call format, supporting platforms such as Qwen Code and CLINE.
|
| 47 |
+
- **Non-thinking mode only** — does not emit `<think></think>` blocks; no `enable_thinking` flag required.
|
| 48 |
+
- **Full quant ladder** with an importance matrix on every quant over [`calibration_datav3`](https://gist.github.com/bartowski1182/eb213dccb3571f863da82e99418f81e8).
|
| 49 |
+
|
| 50 |
+
> [!NOTE]
|
| 51 |
+
> These GGUFs are **self-quantized from the original weights**, not a repack. The importance matrix keeps low-bit quants closer to the full-precision model.
|
| 52 |
+
|
| 53 |
+
> [!IMPORTANT]
|
| 54 |
+
> Always pass `--jinja` so the **Qwen3 Coder 30B A3B chat template** is applied. Without it the model can emit malformed turns.
|
| 55 |
+
|
| 56 |
+
## Model Overview
|
| 57 |
+
|
| 58 |
+
| Property | Value |
|
| 59 |
+
|---|---|
|
| 60 |
+
| Base model | `Qwen/Qwen3-Coder-30B-A3B-Instruct` |
|
| 61 |
+
| Total / active parameters | 30.5B total, 3.3B activated (128 experts, 8 activated) |
|
| 62 |
+
| Layers | 48 |
|
| 63 |
+
| Context length | 262,144 native (extendable to ~1M with Yarn) |
|
| 64 |
+
| Architecture | Causal LM, Mixture-of-Experts; GQA (32 Q heads, 4 KV heads) |
|
| 65 |
+
| This repo | GGUF quants (imatrix) |
|
| 66 |
+
|
| 67 |
+
See the [official model card](https://huggingface.co/Qwen/Qwen3-Coder-30B-A3B-Instruct) for Qwen's published benchmark results.
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
## Choosing a quant
|
| 71 |
+
|
| 72 |
+
| Quant | Size | Notes |
|
| 73 |
+
|---|---|---|
|
| 74 |
+
| `Q2_K` | 11.3 GB | Smallest. Minimal RAM, clear quality drop. |
|
| 75 |
+
| `IQ3_M` | 13.5 GB | Beats Q3 at similar size thanks to imatrix. Best low-RAM pick. |
|
| 76 |
+
| `Q3_K_M` | 14.7 GB | Low quality but usable. |
|
| 77 |
+
| `Q3_K_L` | 15.9 GB | A step above Q3_K_M. |
|
| 78 |
+
| `IQ4_XS` | 16.4 GB | Excellent quality for size. Recommended low-bit. |
|
| 79 |
+
| `Q4_K_S` | 17.5 GB | Compact Q4, fast. |
|
| 80 |
+
| **`Q4_K_M`** | 18.6 GB | **Recommended default. Best balance of size, speed and quality.** |
|
| 81 |
+
| **`UD-Q4_K_XL`** | 18.8 GB | **Dynamic. Embeddings and output kept at Q8_0 for higher quality at a Q4 footprint.** |
|
| 82 |
+
| `Q5_K_S` | 19.7 GB | Higher quality. |
|
| 83 |
+
| `Q5_K_M` | 12.1 GB | Higher quality, low loss. |
|
| 84 |
+
| `Q6_K` | 17.4 GB | Near lossless. |
|
| 85 |
+
| `Q8_0` | 20.3 GB | Effectively lossless, reference quality. |
|
| 86 |
+
|
| 87 |
+
> [!TIP]
|
| 88 |
+
> Pick the largest file that fits your (V)RAM with room for context. `Q4_K_M` or `UD-Q4_K_XL` is the sweet spot for most setups; `Q6_K` or `Q8_0` for maximum fidelity.
|
| 89 |
+
|
| 90 |
+
## Get started
|
| 91 |
+
|
| 92 |
+
Run Qwen3 Coder 30B A3B locally with:
|
| 93 |
+
|
| 94 |
+
- **[Atomic Chat](https://atomic.chat):** the easiest path. Open the app, search `AlexAtomic/qwen3-coder-30b-a3b-GGUF`, pick a quant, hit **Use this model**.
|
| 95 |
+
- **llama.cpp:** `llama-server -hf AlexAtomic/qwen3-coder-30b-a3b-GGUF:Q4_K_M --jinja -c 8192`
|
| 96 |
+
- **Ollama:** `ollama run hf.co/AlexAtomic/qwen3-coder-30b-a3b-GGUF:Q4_K_M`
|
| 97 |
+
- **LM Studio / Jan:** search the repo id, download any quant.
|
| 98 |
+
|
| 99 |
+
## Best practices
|
| 100 |
+
|
| 101 |
+
| Parameter | Value |
|
| 102 |
+
|---|---|
|
| 103 |
+
| temperature | 0.7 |
|
| 104 |
+
| top_p | 0.8 |
|
| 105 |
+
| top_k | 20 |
|
| 106 |
+
| repetition_penalty | 1.05 |
|
| 107 |
+
|
| 108 |
+
Qwen's recommended settings for this model (non-thinking); recommended output length 65,536 tokens.
|
| 109 |
+
|
| 110 |
+
## Run in llama.cpp
|
| 111 |
+
|
| 112 |
+
```bash
|
| 113 |
+
git clone https://github.com/ggerganov/llama.cpp
|
| 114 |
+
cmake llama.cpp -B llama.cpp/build -DBUILD_SHARED_LIBS=OFF -DGGML_CUDA=ON
|
| 115 |
+
cmake --build llama.cpp/build --config Release -j --target llama-cli llama-server
|
| 116 |
+
```
|
| 117 |
+
|
| 118 |
+
```bash
|
| 119 |
+
./llama.cpp/build/bin/llama-server \
|
| 120 |
+
-hf AlexAtomic/qwen3-coder-30b-a3b-GGUF:UD-Q4_K_XL \
|
| 121 |
+
--jinja -ngl 99 -c 8192 -fa on
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
## How these were made
|
| 125 |
+
|
| 126 |
+
1. Download `Qwen/Qwen3-Coder-30B-A3B-Instruct` (original weights).
|
| 127 |
+
2. Convert to f16 GGUF with [llama.cpp](https://github.com/ggerganov/llama.cpp).
|
| 128 |
+
3. Build an importance matrix over `calibration_datav3` (100 chunks).
|
| 129 |
+
4. Quantize the full ladder with `--imatrix`.
|
| 130 |
+
5. `UD-Q4_K_XL` additionally pins the token-embedding and output tensors to `Q8_0`.
|
| 131 |
+
|
| 132 |
+
## License
|
| 133 |
+
|
| 134 |
+
Released by Qwen under the Apache 2.0 license. Quantized by Atomic Chat.
|
| 135 |
+
|
hero.png
ADDED
|
Git LFS Details
|
pill_atomic_v3.png
ADDED
|
pill_discord_v3.png
ADDED
|
pill_github_v3.png
ADDED
|
qwen3-coder-30b-a3b-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01f44ed4567a9b129398fb8111d53f622e30e2ddf139789cac63d3e68af4ca68
|
| 3 |
+
size 13513064480
|
qwen3-coder-30b-a3b-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f7ce69b74ede41880492b2765c0fdbf746e55da71b127bdb1cb1dc53086b565
|
| 3 |
+
size 16368351264
|
qwen3-coder-30b-a3b-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4e64886408921200d7ae5caf89d6a8e8cb8c695e248a425fc619b314e5e9a04
|
| 3 |
+
size 11258611744
|
qwen3-coder-30b-a3b-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8756a5593ad92532443cdc1e065e5b405f47a47eb22fa15916264784c7345509
|
| 3 |
+
size 15900672032
|
qwen3-coder-30b-a3b-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10396f4d203e3507d0e8e45a6557f7813f5e2d9ac275ba44b579663acd11a60d
|
| 3 |
+
size 14711848992
|
qwen3-coder-30b-a3b-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22e70e6305c8fa5ea0bbbdf11fa6f1779b5546b33dd38bda2c2274b5e5d574b5
|
| 3 |
+
size 18556688416
|
qwen3-coder-30b-a3b-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:218027f6bd58460fd3b948090bc67a7c14b755e5f2fbcddd76fd921cc893dfcc
|
| 3 |
+
size 17456011296
|
qwen3-coder-30b-a3b-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8bcd3c38c250898bba2cc39916efbe04334244abce1a888b79fb5bf2d9e85b66
|
| 3 |
+
size 12137205760
|
qwen3-coder-30b-a3b-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93eabfe1dfefd0764d3fb91c342a1caf95e5ccd46b172ff69ba0b64590d012b1
|
| 3 |
+
size 19654266880
|
qwen3-coder-30b-a3b-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10c33659726fcc6119f5e4c9c3034ce6bbb61e44db2b6fa538ba7e0353487c22
|
| 3 |
+
size 17428013056
|
qwen3-coder-30b-a3b-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf1c958e47881496ea5516694cfb12720fed55180b696941f16f32900fa6fd4e
|
| 3 |
+
size 20333920256
|
qwen3-coder-30b-a3b-UD-Q4_K_XL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4ed3bcbe5e7a1aeac2b912f62adaff964ea0f678bae0e3f7e5df266b4d07f8a
|
| 3 |
+
size 18787631136
|