Text Generation
GGUF
llama.cpp
qwen3.6
Mixture of Experts
iq2_m
dynamic-quants
heretic
uncensored
decensored
abliterated
imatrix
conversational
Instructions to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M 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 Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M 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 Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M # Run inference directly in the terminal: llama cli -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M # Run inference directly in the terminal: llama cli -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
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 Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M # Run inference directly in the terminal: ./llama-cli -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
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 Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
Use Docker
docker model run hf.co/Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
- LM Studio
- Jan
- vLLM
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
- Ollama
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with Ollama:
ollama run hf.co/Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
- Unsloth Desktop
- Pi
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with Docker Model Runner:
docker model run hf.co/Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
- Lemonade
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M-IQ2_M
List all available models
lemonade list
- Hermes Agent
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
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 Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M
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 "Loswen/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M:IQ2_M" \ --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 ·
aadf626
0
Parent(s):
Duplicate from BlueBackup/Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M
Browse filesCo-authored-by: BlueBackup <BlueBackup@users.noreply.huggingface.co>
- .gitattributes +38 -0
- Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M.gguf +3 -0
- Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M_HQ.gguf +3 -0
- README.md +1401 -0
- mmproj-Q8_0.gguf +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.6-35B-A3B-uncensored-heretic-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M_HQ.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3fa764a801fc4e75b43315f98bd126dde733496c7457fa3d08ba23facf29514
|
| 3 |
+
size 11659239456
|
Qwen3.6-35B-A3B-uncensored-heretic-IQ2_M_HQ.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac9172ce5de28af56ad069ac3ffe527b74c181656c1f67fd92e56a83eaa2f884
|
| 3 |
+
size 12326723616
|
README.md
ADDED
|
@@ -0,0 +1,1401 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- llmfan46/Qwen3.6-35B-A3B-uncensored-heretic
|
| 5 |
+
library_name: llama.cpp
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
tags:
|
| 8 |
+
- gguf
|
| 9 |
+
- llama.cpp
|
| 10 |
+
- qwen3.6
|
| 11 |
+
- moe
|
| 12 |
+
- iq2_m
|
| 13 |
+
- dynamic-quants
|
| 14 |
+
- heretic
|
| 15 |
+
- uncensored
|
| 16 |
+
- decensored
|
| 17 |
+
- abliterated
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# Qwen3.6-35B-A3B-Uncensored-Heretic-IQ2_M (GGUF)
|
| 21 |
+
|
| 22 |
+
This repository contains an **IQ2_M GGUF** quantization of:
|
| 23 |
+
|
| 24 |
+
> **[llmfan46/Qwen3.6-35B-A3B-uncensored-heretic](https://huggingface.co/llmfan46/Qwen3.6-35B-A3B-uncensored-heretic)**
|
| 25 |
+
|
| 26 |
+
The quantization was produced using the **official llama.cpp quantizer** together with the published **Unsloth importance matrix** for the matching Qwen3.6-35B-A3B-MTP architecture.
|
| 27 |
+
|
| 28 |
+
The goal is simple:
|
| 29 |
+
|
| 30 |
+
- Keep the storage footprint small enough for local inference.
|
| 31 |
+
- Preserve as much of the original model quality as possible.
|
| 32 |
+
- Retain the refusal-reduced behavior introduced by the Heretic model.
|
| 33 |
+
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
# What is this model?
|
| 37 |
+
|
| 38 |
+
This is **not** a conventional supervised fine-tune.
|
| 39 |
+
|
| 40 |
+
The Heretic release applies an abliteration technique designed to reduce unnecessary refusals while remaining close to the original Qwen3.6-35B-A3B model.
|
| 41 |
+
|
| 42 |
+
According to the original release, only a relatively small subset of the network is modified, with the intention of preserving the underlying reasoning, coding, and language capabilities of the base model.
|
| 43 |
+
|
| 44 |
+
For details about the modification itself, please refer to the original repository.
|
| 45 |
+
|
| 46 |
+
---
|
| 47 |
+
|
| 48 |
+
# Quantization
|
| 49 |
+
|
| 50 |
+
This GGUF was produced with:
|
| 51 |
+
|
| 52 |
+
- Official **llama.cpp** quantizer
|
| 53 |
+
- **IQ2_M** quantization
|
| 54 |
+
- Matching **Unsloth MTP importance matrix**
|
| 55 |
+
- `--leave-output-tensor`
|
| 56 |
+
|
| 57 |
+
No custom tensor overrides or experimental quantization recipes were used.
|
| 58 |
+
|
| 59 |
+
The resulting file is fully compatible with current llama.cpp releases.
|
| 60 |
+
|
| 61 |
+
---
|
| 62 |
+
|
| 63 |
+
# Dynamic Quantization
|
| 64 |
+
|
| 65 |
+
IQ2_M is a **dynamic (mixed) quantization** format.
|
| 66 |
+
|
| 67 |
+
Although the model is referred to as "IQ2_M", not every tensor is stored using the same quantization type.
|
| 68 |
+
|
| 69 |
+
During quantization, llama.cpp automatically chooses different quantization formats for different tensors based on their characteristics and the supplied importance matrix.
|
| 70 |
+
|
| 71 |
+
As a result, some tensors may be stored using higher precision formats (such as IQ3 variants), while others remain IQ2, providing a better quality-to-size trade-off than uniformly quantizing every tensor.
|
| 72 |
+
|
| 73 |
+
---
|
| 74 |
+
|
| 75 |
+
# Importance Matrix
|
| 76 |
+
|
| 77 |
+
An importance matrix (imatrix) is **not** a fine-tune.
|
| 78 |
+
|
| 79 |
+
Instead, it is a calibration artifact used **only during quantization**.
|
| 80 |
+
|
| 81 |
+
Its purpose is to estimate which weights are most important so that the quantizer allocates the available bits more effectively.
|
| 82 |
+
|
| 83 |
+
For this GGUF, the published Unsloth importance matrix for **Qwen3.6-35B-A3B-MTP** was used.
|
| 84 |
+
|
| 85 |
+
This should generally produce a higher-quality quantization than quantizing without an importance matrix or with a mismatched calibration.
|
| 86 |
+
|
| 87 |
+
Since the Heretic model preserves the original architecture and modifies only a subset of weights, the matching base-model importance matrix is expected to remain a reasonable calibration choice.
|
| 88 |
+
|
| 89 |
+
---
|
| 90 |
+
|
| 91 |
+
# Why combine Heretic + Unsloth imatrix?
|
| 92 |
+
|
| 93 |
+
These two components serve different purposes.
|
| 94 |
+
|
| 95 |
+
### Heretic
|
| 96 |
+
|
| 97 |
+
- Modifies model weights.
|
| 98 |
+
- Reduces unnecessary refusals.
|
| 99 |
+
- Attempts to preserve the original model's capabilities.
|
| 100 |
+
|
| 101 |
+
### Unsloth Importance Matrix
|
| 102 |
+
|
| 103 |
+
- Does **not** modify model weights.
|
| 104 |
+
- Does **not** change the BF16 model.
|
| 105 |
+
- Helps preserve more of the original model quality during aggressive low-bit quantization.
|
| 106 |
+
|
| 107 |
+
In other words:
|
| 108 |
+
|
| 109 |
+
- Heretic affects **what the model has learned**.
|
| 110 |
+
- The importance matrix affects **how faithfully those learned weights are compressed**.
|
| 111 |
+
|
| 112 |
+
These approaches are complementary rather than overlapping.
|
| 113 |
+
|
| 114 |
+
---
|
| 115 |
+
|
| 116 |
+
# Credits
|
| 117 |
+
|
| 118 |
+
Original model:
|
| 119 |
+
|
| 120 |
+
- llmfan46/Qwen3.6-35B-A3B-uncensored-heretic
|
| 121 |
+
|
| 122 |
+
Quantization:
|
| 123 |
+
|
| 124 |
+
- ggml-org/llama.cpp
|
| 125 |
+
|
| 126 |
+
Importance Matrix:
|
| 127 |
+
|
| 128 |
+
- unsloth/Qwen3.6-35B-A3B-MTP-GGUF
|
| 129 |
+
|
| 130 |
+
---
|
| 131 |
+
|
| 132 |
+
# License
|
| 133 |
+
|
| 134 |
+
This GGUF follows the licensing of the original model.
|
| 135 |
+
|
| 136 |
+
Please refer to the upstream repository for the complete license terms.
|
| 137 |
+
|
| 138 |
+
<div style="border-left: 5px solid #3b82f6; background: rgba(59,130,246,0.08); padding: 14px 18px; margin: 20px 0; border-radius: 8px;">
|
| 139 |
+
|
| 140 |
+
<b>📚 Reference Material</b><br><br>
|
| 141 |
+
|
| 142 |
+
This repository contains only the <b>IQ2_M GGUF quantization</b> of the original model. For completeness and to preserve attribution, the model cards from the upstream repositories are included below.
|
| 143 |
+
|
| 144 |
+
</div>
|
| 145 |
+
|
| 146 |
+
-----
|
| 147 |
+
|
| 148 |
+
|
| 149 |
+
<div style="background-color: #ff4444; color: white; padding: 20px; border-radius: 10px; text-align: center; margin: 20px 0;">
|
| 150 |
+
<h2 style="color: white; margin: 0 0 10px 0;">🚨⚠️ I HAVE REACHED HUGGING FACE'S FREE STORAGE LIMIT ⚠️🚨</h2>
|
| 151 |
+
<p style="font-size: 18px; margin: 0 0 15px 0;">I can no longer upload new models unless I can cover the cost of additional storage.<br>I host <b>70+ free models</b> as an independent contributor and this work is unpaid.<br><b>Without your support, no more new models can be uploaded.</b></p>
|
| 152 |
+
<p style="font-size: 20px; margin: 0;">
|
| 153 |
+
<a href="https://patreon.com/LLMfan46" style="color: white; text-decoration: underline;">🎉 Patreon (Monthly)</a> |
|
| 154 |
+
<a href="https://ko-fi.com/llmfan46" style="color: white; text-decoration: underline;">☕ Ko-fi (One-time)</a>
|
| 155 |
+
</p>
|
| 156 |
+
<p style="font-size: 16px; margin: 10px 0 0 0;">Every contribution goes directly toward Hugging Face storage fees to keep models free for everyone.</p>
|
| 157 |
+
</div>
|
| 158 |
+
|
| 159 |
+
---
|
| 160 |
+
|
| 161 |
+
### **88% fewer refusals** (10/100 Uncensored vs 83/100 Original) while preserving model quality (0.0015 KL divergence).
|
| 162 |
+
|
| 163 |
+
## ❤️ Support My Work
|
| 164 |
+
Creating these models takes significant time, work and compute. If you find them useful consider supporting me:
|
| 165 |
+
|
| 166 |
+
| Platform | Link | What you get |
|
| 167 |
+
|----------|------|--------------|
|
| 168 |
+
| 🎉 Patreon | [Monthly support](https://patreon.com/LLMfan46) | Priority model requests |
|
| 169 |
+
| ☕ Ko-fi | [One-time tip](https://ko-fi.com/llmfan46) | My eternal gratitude |
|
| 170 |
+
|
| 171 |
+
Your help will motivate me and would go into further improving my workflow and coverings fees for storage, compute and may even help uncensoring bigger model with rental Cloud GPUs.
|
| 172 |
+
|
| 173 |
+
-----
|
| 174 |
+
|
| 175 |
+
# This is a decensored version of [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B), made using [Heretic](https://github.com/p-e-w/heretic) v1.2.0 with a variant of the [Magnitude-Preserving Orthogonal Ablation (MPOA)](https://huggingface.co/blog/grimjim/norm-preserving-biprojected-abliteration) method
|
| 176 |
+
|
| 177 |
+
## Abliteration parameters
|
| 178 |
+
|
| 179 |
+
| Parameter | Value |
|
| 180 |
+
| :-------- | :---: |
|
| 181 |
+
| **direction_index** | 19.93 |
|
| 182 |
+
| **attn.out_proj.max_weight** | 1.49 |
|
| 183 |
+
| **attn.out_proj.max_weight_position** | 23.45 |
|
| 184 |
+
| **attn.out_proj.min_weight** | 1.08 |
|
| 185 |
+
| **attn.out_proj.min_weight_distance** | 16.54 |
|
| 186 |
+
| **mlp.down_proj.max_weight** | 1.46 |
|
| 187 |
+
| **mlp.down_proj.max_weight_position** | 28.05 |
|
| 188 |
+
| **mlp.down_proj.min_weight** | 1.27 |
|
| 189 |
+
| **mlp.down_proj.min_weight_distance** | 18.79 |
|
| 190 |
+
| **attn.o_proj.max_weight** | 1.47 |
|
| 191 |
+
| **attn.o_proj.max_weight_position** | 24.35 |
|
| 192 |
+
| **attn.o_proj.min_weight** | 0.07 |
|
| 193 |
+
| **attn.o_proj.min_weight_distance** | 22.58 |
|
| 194 |
+
|
| 195 |
+
## Targeted components
|
| 196 |
+
|
| 197 |
+
* attn.o_proj
|
| 198 |
+
* attn.out_proj
|
| 199 |
+
* mlp.down_proj
|
| 200 |
+
|
| 201 |
+
## Performance
|
| 202 |
+
|
| 203 |
+
| Metric | This model | Original model ([Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B)) |
|
| 204 |
+
| :----- | :--------: | :---------------------------: |
|
| 205 |
+
| **KL divergence** | <span style="color:darkgoldenrod">0.0015</span> | 0 *(by definition)* |
|
| 206 |
+
| **Refusals** | ✅ <span style="color:darkgreen">10/100</span> | ❌ <span style="color:blue">83/100</span> |
|
| 207 |
+
|
| 208 |
+
Lower refusals indicate fewer content restrictions, while lower KL divergence indicates more closeness to the original model's baseline. Higher refusals cause more rejections, objections, pushbacks, lecturing, censorship, softening and deflections.
|
| 209 |
+
|
| 210 |
+
## MMLU test results:
|
| 211 |
+
|
| 212 |
+
<span style="color:blue">Original:</span>
|
| 213 |
+
|
| 214 |
+
============================================================
|
| 215 |
+
|
| 216 |
+
- Total questions: 7021
|
| 217 |
+
|
| 218 |
+
- Correct: 5877
|
| 219 |
+
|
| 220 |
+
- **Accuracy: 0.8371 (83.71%)**
|
| 221 |
+
|
| 222 |
+
- Parse failures: 0
|
| 223 |
+
|
| 224 |
+
============================================================
|
| 225 |
+
|
| 226 |
+
**Tested subject scores:**
|
| 227 |
+
- professional_law: 0.7121 (559/785)
|
| 228 |
+
- moral_scenarios: 0.6765 (299/442)
|
| 229 |
+
- miscellaneous: 0.9426 (361/383)
|
| 230 |
+
- professional_psychology: 0.8924 (282/316)
|
| 231 |
+
- high_school_psychology: 0.9704 (262/270)
|
| 232 |
+
- high_school_macroeconomics: 0.8985 (177/197)
|
| 233 |
+
- elementary_mathematics: 0.7826 (144/184)
|
| 234 |
+
- moral_disputes: 0.8448 (147/174)
|
| 235 |
+
- prehistory: 0.9070 (156/172)
|
| 236 |
+
- philosophy: 0.8994 (143/159)
|
| 237 |
+
- high_school_biology: 0.9605 (146/152)
|
| 238 |
+
- professional_accounting: 0.7622 (109/143)
|
| 239 |
+
- clinical_knowledge: 0.8929 (125/140)
|
| 240 |
+
- high_school_microeconomics: 0.9559 (130/136)
|
| 241 |
+
- nutrition: 0.8889 (120/135)
|
| 242 |
+
- professional_medicine: 0.9328 (125/134)
|
| 243 |
+
- conceptual_physics: 0.9219 (118/128)
|
| 244 |
+
- high_school_mathematics: 0.6142 (78/127)
|
| 245 |
+
- human_aging: 0.7931 (92/116)
|
| 246 |
+
- security_studies: 0.8661 (97/112)
|
| 247 |
+
- high_school_statistics: 0.8378 (93/111)
|
| 248 |
+
- marketing: 0.8991 (98/109)
|
| 249 |
+
- high_school_world_history: 0.8962 (95/106)
|
| 250 |
+
- sociology: 0.9320 (96/103)
|
| 251 |
+
- high_school_government_and_politics: 0.9901 (100/101)
|
| 252 |
+
- high_school_geography: 0.9495 (94/99)
|
| 253 |
+
- high_school_chemistry: 0.7732 (75/97)
|
| 254 |
+
- high_school_us_history: 0.9263 (88/95)
|
| 255 |
+
- virology: 0.5169 (46/89)
|
| 256 |
+
- college_medicine: 0.8636 (76/88)
|
| 257 |
+
- world_religions: 0.8977 (79/88)
|
| 258 |
+
- high_school_physics: 0.7857 (66/84)
|
| 259 |
+
- electrical_engineering: 0.8519 (69/81)
|
| 260 |
+
- astronomy: 0.9620 (76/79)
|
| 261 |
+
- logical_fallacies: 0.9211 (70/76)
|
| 262 |
+
- high_school_european_history: 0.8630 (63/73)
|
| 263 |
+
- anatomy: 0.9014 (64/71)
|
| 264 |
+
- college_biology: 0.9219 (59/64)
|
| 265 |
+
- human_sexuality: 0.8750 (56/64)
|
| 266 |
+
- formal_logic: 0.7500 (48/64)
|
| 267 |
+
- public_relations: 0.7377 (45/61)
|
| 268 |
+
- international_law: 0.9167 (55/60)
|
| 269 |
+
- college_physics: 0.7544 (43/57)
|
| 270 |
+
- college_mathematics: 0.6182 (34/55)
|
| 271 |
+
- econometrics: 0.7963 (43/54)
|
| 272 |
+
- jurisprudence: 0.9057 (48/53)
|
| 273 |
+
- high_school_computer_science: 0.9423 (49/52)
|
| 274 |
+
- machine_learning: 0.7692 (40/52)
|
| 275 |
+
- medical_genetics: 0.9608 (49/51)
|
| 276 |
+
- global_facts: 0.4706 (24/51)
|
| 277 |
+
- management: 0.9000 (45/50)
|
| 278 |
+
- us_foreign_policy: 0.9600 (48/50)
|
| 279 |
+
- college_chemistry: 0.6383 (30/47)
|
| 280 |
+
- abstract_algebra: 0.6383 (30/47)
|
| 281 |
+
- business_ethics: 0.8696 (40/46)
|
| 282 |
+
- college_computer_science: 0.7778 (35/45)
|
| 283 |
+
- computer_security: 0.8837 (38/43)
|
| 284 |
+
|
| 285 |
+
|
| 286 |
+
<span style="color:darkgreen">Heretic:</span>
|
| 287 |
+
|
| 288 |
+
============================================================
|
| 289 |
+
|
| 290 |
+
- Total questions: 7021
|
| 291 |
+
|
| 292 |
+
- Correct: 5843
|
| 293 |
+
|
| 294 |
+
- **Accuracy: 0.8322 (83.22%)**
|
| 295 |
+
|
| 296 |
+
- Parse failures: 0
|
| 297 |
+
|
| 298 |
+
============================================================
|
| 299 |
+
|
| 300 |
+
**Tested subject scores:**
|
| 301 |
+
- professional_law: 0.7032 (552/785)
|
| 302 |
+
- moral_scenarios: 0.6267 (277/442)
|
| 303 |
+
- miscellaneous: 0.9373 (359/383)
|
| 304 |
+
- professional_psychology: 0.8956 (283/316)
|
| 305 |
+
- high_school_psychology: 0.9704 (262/270)
|
| 306 |
+
- high_school_macroeconomics: 0.9036 (178/197)
|
| 307 |
+
- elementary_mathematics: 0.8152 (150/184)
|
| 308 |
+
- moral_disputes: 0.8563 (149/174)
|
| 309 |
+
- prehistory: 0.8779 (151/172)
|
| 310 |
+
- philosophy: 0.9057 (144/159)
|
| 311 |
+
- high_school_biology: 0.9605 (146/152)
|
| 312 |
+
- professional_accounting: 0.7483 (107/143)
|
| 313 |
+
- clinical_knowledge: 0.9000 (126/140)
|
| 314 |
+
- high_school_microeconomics: 0.9632 (131/136)
|
| 315 |
+
- nutrition: 0.8741 (118/135)
|
| 316 |
+
- professional_medicine: 0.9254 (124/134)
|
| 317 |
+
- conceptual_physics: 0.9297 (119/128)
|
| 318 |
+
- high_school_mathematics: 0.5827 (74/127)
|
| 319 |
+
- human_aging: 0.7931 (92/116)
|
| 320 |
+
- security_studies: 0.8661 (97/112)
|
| 321 |
+
- high_school_statistics: 0.8559 (95/111)
|
| 322 |
+
- marketing: 0.9083 (99/109)
|
| 323 |
+
- high_school_world_history: 0.8868 (94/106)
|
| 324 |
+
- sociology: 0.9320 (96/103)
|
| 325 |
+
- high_school_government_and_politics: 0.9901 (100/101)
|
| 326 |
+
- high_school_geography: 0.9495 (94/99)
|
| 327 |
+
- high_school_chemistry: 0.7732 (75/97)
|
| 328 |
+
- high_school_us_history: 0.9263 (88/95)
|
| 329 |
+
- virology: 0.5169 (46/89)
|
| 330 |
+
- college_medicine: 0.8636 (76/88)
|
| 331 |
+
- world_religions: 0.9091 (80/88)
|
| 332 |
+
- high_school_physics: 0.7738 (65/84)
|
| 333 |
+
- electrical_engineering: 0.8642 (70/81)
|
| 334 |
+
- astronomy: 0.9494 (75/79)
|
| 335 |
+
- logical_fallacies: 0.9474 (72/76)
|
| 336 |
+
- high_school_european_history: 0.8630 (63/73)
|
| 337 |
+
- anatomy: 0.9296 (66/71)
|
| 338 |
+
- college_biology: 0.9375 (60/64)
|
| 339 |
+
- human_sexuality: 0.9062 (58/64)
|
| 340 |
+
- formal_logic: 0.7188 (46/64)
|
| 341 |
+
- public_relations: 0.7213 (44/61)
|
| 342 |
+
- international_law: 0.9167 (55/60)
|
| 343 |
+
- college_physics: 0.7544 (43/57)
|
| 344 |
+
- college_mathematics: 0.6182 (34/55)
|
| 345 |
+
- econometrics: 0.7593 (41/54)
|
| 346 |
+
- jurisprudence: 0.8868 (47/53)
|
| 347 |
+
- high_school_computer_science: 0.9231 (48/52)
|
| 348 |
+
- machine_learning: 0.7115 (37/52)
|
| 349 |
+
- medical_genetics: 0.9216 (47/51)
|
| 350 |
+
- global_facts: 0.5294 (27/51)
|
| 351 |
+
- management: 0.9000 (45/50)
|
| 352 |
+
- us_foreign_policy: 0.9400 (47/50)
|
| 353 |
+
- college_chemistry: 0.5745 (27/47)
|
| 354 |
+
- abstract_algebra: 0.6809 (32/47)
|
| 355 |
+
- business_ethics: 0.8478 (39/46)
|
| 356 |
+
- college_computer_science: 0.7778 (35/45)
|
| 357 |
+
- computer_security: 0.8837 (38/43)
|
| 358 |
+
|
| 359 |
+
MMLU - Massive Multitask Language Understanding, multiple-choice questions across 57 subjects (math, history, law, medicine, etc.).
|
| 360 |
+
|
| 361 |
+
## GGUF Version
|
| 362 |
+
|
| 363 |
+
GGUF quantizations available here [llmfan46/Qwen3.6-35B-A3B-uncensored-heretic-GGUF](https://huggingface.co/llmfan46/Qwen3.6-35B-A3B-uncensored-heretic-GGUF).
|
| 364 |
+
|
| 365 |
+
-----
|
| 366 |
+
|
| 367 |
+
|
| 368 |
+
# Qwen3.6-35B-A3B
|
| 369 |
+
|
| 370 |
+
<img width="400px" src="https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.6/logo.png">
|
| 371 |
+
|
| 372 |
+
[](https://chat.qwen.ai)
|
| 373 |
+
|
| 374 |
+
> [!Note]
|
| 375 |
+
> This repository contains model weights and configuration files for the post-trained model in the Hugging Face Transformers format.
|
| 376 |
+
>
|
| 377 |
+
> These artifacts are compatible with Hugging Face Transformers, vLLM, SGLang, KTransformers, etc.
|
| 378 |
+
|
| 379 |
+
Following the February release of the Qwen3.5 series, we're pleased to share the first open-weight variant of Qwen3.6. Built on direct feedback from the community, Qwen3.6 prioritizes stability and real-world utility, offering developers a more intuitive, responsive, and genuinely productive coding experience.
|
| 380 |
+
|
| 381 |
+
## Qwen3.6 Highlights
|
| 382 |
+
|
| 383 |
+
This release delivers substantial upgrades, particularly in
|
| 384 |
+
|
| 385 |
+
- **Agentic Coding:** the model now handles frontend workflows and repository-level reasoning with greater fluency and precision.
|
| 386 |
+
- **Thinking Preservation:** we've introduced a new option to retain reasoning context from historical messages, streamlining iterative development and reducing overhead.
|
| 387 |
+
|
| 388 |
+

|
| 389 |
+
|
| 390 |
+
For more details, please refer to our blog post [Qwen3.6-35B-A3B](https://qwen.ai/blog?id=qwen3.6-35b-a3b).
|
| 391 |
+
|
| 392 |
+
## Model Overview
|
| 393 |
+
|
| 394 |
+
- Type: Causal Language Model with Vision Encoder
|
| 395 |
+
- Training Stage: Pre-training & Post-training
|
| 396 |
+
- Language Model
|
| 397 |
+
- Number of Parameters: 35B in total and 3B activated
|
| 398 |
+
- Hidden Dimension: 2048
|
| 399 |
+
- Token Embedding: 248320 (Padded)
|
| 400 |
+
- Number of Layers: 40
|
| 401 |
+
- Hidden Layout: 10 × (3 × (Gated DeltaNet → MoE) → 1 × (Gated Attention → MoE))
|
| 402 |
+
- Gated DeltaNet:
|
| 403 |
+
- Number of Linear Attention Heads: 32 for V and 16 for QK
|
| 404 |
+
- Head Dimension: 128
|
| 405 |
+
- Gated Attention:
|
| 406 |
+
- Number of Attention Heads: 16 for Q and 2 for KV
|
| 407 |
+
- Head Dimension: 256
|
| 408 |
+
- Rotary Position Embedding Dimension: 64
|
| 409 |
+
- Mixture Of Experts
|
| 410 |
+
- Number of Experts: 256
|
| 411 |
+
- Number of Activated Experts: 8 Routed + 1 Shared
|
| 412 |
+
- Expert Intermediate Dimension: 512
|
| 413 |
+
- LM Output: 248320 (Padded)
|
| 414 |
+
- MTP: trained with multi-steps
|
| 415 |
+
- Context Length: 262,144 natively and extensible up to 1,010,000 tokens.
|
| 416 |
+
|
| 417 |
+
|
| 418 |
+
## Benchmark Results
|
| 419 |
+
|
| 420 |
+
### Language
|
| 421 |
+
|
| 422 |
+
<div style="font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;max-width:1000px;margin:0 auto;padding:16px 0">
|
| 423 |
+
<table style="width:100%;border-collapse:collapse;font-size:13px">
|
| 424 |
+
<thead><tr>
|
| 425 |
+
<th style="padding:10px 7px;text-align:left;font-weight:600;border-bottom:2px solid #7c3aed;color:#7c3aed"></th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Qwen3.5-27B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Gemma4-31B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Qwen3.5-35BA3B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Gemma4-26BA4B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Qwen3.6-35BA3B</th></tr></thead>
|
| 426 |
+
<tbody>
|
| 427 |
+
<tr><td colspan="6" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">Coding Agent</td></tr>
|
| 428 |
+
<tr>
|
| 429 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">SWE-bench Verified</td>
|
| 430 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">75.0</td>
|
| 431 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">52.0</td>
|
| 432 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">70.0</td>
|
| 433 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">17.4</td>
|
| 434 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">73.4</td>
|
| 435 |
+
</tr>
|
| 436 |
+
<tr>
|
| 437 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">SWE-bench Multilingual</td>
|
| 438 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">69.3</td>
|
| 439 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">51.7</td>
|
| 440 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">60.3</td>
|
| 441 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">17.3</td>
|
| 442 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.2</td>
|
| 443 |
+
</tr>
|
| 444 |
+
<tr>
|
| 445 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">SWE-bench Pro</td>
|
| 446 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">51.2</td>
|
| 447 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">35.7</td>
|
| 448 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">44.6</td>
|
| 449 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">13.8</td>
|
| 450 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">49.5</td>
|
| 451 |
+
</tr>
|
| 452 |
+
<tr>
|
| 453 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">Terminal-Bench 2.0</td>
|
| 454 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">41.6</td>
|
| 455 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">42.9</td>
|
| 456 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">40.5</td>
|
| 457 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">34.2</td>
|
| 458 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">51.5</td>
|
| 459 |
+
</tr>
|
| 460 |
+
<tr>
|
| 461 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">Claw-Eval <sub><small>Avg</small></sub></td>
|
| 462 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">64.3</td>
|
| 463 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">48.5</td>
|
| 464 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">65.4</td>
|
| 465 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">58.8</td>
|
| 466 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">68.7</td>
|
| 467 |
+
</tr>
|
| 468 |
+
<tr>
|
| 469 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">Claw-Eval <sub><small>Pass^3</small></sub></td>
|
| 470 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">46.2</td>
|
| 471 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">25.0</td>
|
| 472 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">51.0</td>
|
| 473 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">28.0</td>
|
| 474 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">50.0</td>
|
| 475 |
+
</tr>
|
| 476 |
+
<tr>
|
| 477 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">SkillsBench <sub><small>Avg5</small></sub></td>
|
| 478 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">27.2</td>
|
| 479 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">23.6</td>
|
| 480 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">4.4</td>
|
| 481 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">12.3</td>
|
| 482 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">28.7</td>
|
| 483 |
+
</tr>
|
| 484 |
+
<tr>
|
| 485 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">QwenClawBench</td>
|
| 486 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">52.2</td>
|
| 487 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">41.7</td>
|
| 488 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">47.7</td>
|
| 489 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">38.7</td>
|
| 490 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">52.6</td>
|
| 491 |
+
</tr>
|
| 492 |
+
<tr>
|
| 493 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">NL2Repo</td>
|
| 494 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">27.3</td>
|
| 495 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">15.5</td>
|
| 496 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">20.5</td>
|
| 497 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">11.6</td>
|
| 498 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">29.4</td>
|
| 499 |
+
</tr>
|
| 500 |
+
<tr>
|
| 501 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">QwenWebBench</td>
|
| 502 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">1068</td>
|
| 503 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">1197</td>
|
| 504 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">978</td>
|
| 505 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">1178</td>
|
| 506 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">1397</td>
|
| 507 |
+
</tr>
|
| 508 |
+
<tr><td colspan="6" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">General Agent</td></tr>
|
| 509 |
+
<tr>
|
| 510 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">TAU3-Bench</td>
|
| 511 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">68.4</td>
|
| 512 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.5</td>
|
| 513 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">68.9</td>
|
| 514 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">59.0</td>
|
| 515 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.2</td>
|
| 516 |
+
</tr>
|
| 517 |
+
<tr>
|
| 518 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">VITA-Bench</td>
|
| 519 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">41.8</td>
|
| 520 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">43.0</td>
|
| 521 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">29.1</td>
|
| 522 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">36.9</td>
|
| 523 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">35.6</td>
|
| 524 |
+
</tr>
|
| 525 |
+
<tr>
|
| 526 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">DeepPlanning</td>
|
| 527 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">22.6</td>
|
| 528 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">24.0</td>
|
| 529 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">22.8</td>
|
| 530 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">16.2</td>
|
| 531 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">25.9</td>
|
| 532 |
+
</tr>
|
| 533 |
+
<tr>
|
| 534 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">Tool Decathlon</td>
|
| 535 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">31.5</td>
|
| 536 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">21.2</td>
|
| 537 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">28.7</td>
|
| 538 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">12.0</td>
|
| 539 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">26.9</td>
|
| 540 |
+
</tr>
|
| 541 |
+
<tr>
|
| 542 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MCPMark</td>
|
| 543 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">36.3</td>
|
| 544 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">18.1</td>
|
| 545 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">27.0</td>
|
| 546 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">14.2</td>
|
| 547 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">37.0</td>
|
| 548 |
+
</tr>
|
| 549 |
+
<tr>
|
| 550 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MCP-Atlas</td>
|
| 551 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">68.4</td>
|
| 552 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">57.2</td>
|
| 553 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">62.4</td>
|
| 554 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">50.0</td>
|
| 555 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">62.8</td>
|
| 556 |
+
</tr>
|
| 557 |
+
<tr>
|
| 558 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">WideSearch</td>
|
| 559 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">66.4</td>
|
| 560 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">35.2</td>
|
| 561 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">59.1</td>
|
| 562 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">38.3</td>
|
| 563 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">60.1</td>
|
| 564 |
+
</tr>
|
| 565 |
+
<tr><td colspan="6" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">Knowledge</td></tr>
|
| 566 |
+
<tr>
|
| 567 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MMLU-Pro</td>
|
| 568 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.1</td>
|
| 569 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.2</td>
|
| 570 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.3</td>
|
| 571 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.6</td>
|
| 572 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.2</td>
|
| 573 |
+
</tr>
|
| 574 |
+
<tr>
|
| 575 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MMLU-Redux</td>
|
| 576 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">93.2</td>
|
| 577 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">93.7</td>
|
| 578 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">93.3</td>
|
| 579 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.7</td>
|
| 580 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">93.3</td>
|
| 581 |
+
</tr>
|
| 582 |
+
<tr>
|
| 583 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">SuperGPQA</td>
|
| 584 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">65.6</td>
|
| 585 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">65.7</td>
|
| 586 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">63.4</td>
|
| 587 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">61.4</td>
|
| 588 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">64.7</td>
|
| 589 |
+
</tr>
|
| 590 |
+
<tr>
|
| 591 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">C-Eval</td>
|
| 592 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">90.5</td>
|
| 593 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.6</td>
|
| 594 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">90.2</td>
|
| 595 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.5</td>
|
| 596 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">90.0</td>
|
| 597 |
+
</tr>
|
| 598 |
+
<tr><td colspan="6" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">STEM & Reasoning</td></tr>
|
| 599 |
+
<tr>
|
| 600 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">GPQA</td>
|
| 601 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.5</td>
|
| 602 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">84.3</td>
|
| 603 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">84.2</td>
|
| 604 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.3</td>
|
| 605 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.0</td>
|
| 606 |
+
</tr>
|
| 607 |
+
<tr>
|
| 608 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">HLE</td>
|
| 609 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">24.3</td>
|
| 610 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">19.5</td>
|
| 611 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">22.4</td>
|
| 612 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">8.7</td>
|
| 613 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">21.4</td>
|
| 614 |
+
</tr>
|
| 615 |
+
<tr>
|
| 616 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">LiveCodeBench v6</td>
|
| 617 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.7</td>
|
| 618 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.0</td>
|
| 619 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.6</td>
|
| 620 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">77.1</td>
|
| 621 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.4</td>
|
| 622 |
+
</tr>
|
| 623 |
+
<tr>
|
| 624 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">HMMT Feb 25</td>
|
| 625 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.0</td>
|
| 626 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">88.7</td>
|
| 627 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.0</td>
|
| 628 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">91.7</td>
|
| 629 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">90.7</td>
|
| 630 |
+
</tr>
|
| 631 |
+
<tr>
|
| 632 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">HMMT Nov 25</td>
|
| 633 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.8</td>
|
| 634 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">87.5</td>
|
| 635 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.2</td>
|
| 636 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">87.5</td>
|
| 637 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.1</td>
|
| 638 |
+
</tr>
|
| 639 |
+
<tr>
|
| 640 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">HMMT Feb 26</td>
|
| 641 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">84.3</td>
|
| 642 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">77.2</td>
|
| 643 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">78.7</td>
|
| 644 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.0</td>
|
| 645 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">83.6</td>
|
| 646 |
+
</tr>
|
| 647 |
+
<tr>
|
| 648 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">IMOAnswerBench</td>
|
| 649 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.9</td>
|
| 650 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.5</td>
|
| 651 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">76.8</td>
|
| 652 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.3</td>
|
| 653 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">78.9</td>
|
| 654 |
+
</tr>
|
| 655 |
+
<tr>
|
| 656 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">AIME26 </td>
|
| 657 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.6</td>
|
| 658 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.2</td>
|
| 659 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">91.0</td>
|
| 660 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">88.3</td>
|
| 661 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.7</td>
|
| 662 |
+
</tr>
|
| 663 |
+
</tbody>
|
| 664 |
+
</table>
|
| 665 |
+
|
| 666 |
+
<p style="margin-top:12px;font-size:10px;opacity:0.7">
|
| 667 |
+
* SWE-Bench Series: Internal agent scaffold (bash + file-edit tools); temp=1.0, top_p=0.95, 200K context window. We correct some problematic tasks in the public set of SWE-bench Pro and evaluate all baselines on the refined benchmark.<br/>
|
| 668 |
+
* Terminal-Bench 2.0: Harbor/Terminus-2 harness; 3h timeout, 32 CPU/48 GB RAM; temp=1.0, top_p=0.95, top_k=20, max_tokens=80K, 256K ctx; avg of 5 runs.<br/>
|
| 669 |
+
* SkillsBench: Evaluated via OpenCode on 78 tasks (self-contained subset, excluding API-dependent tasks); avg of 5 runs.<br/>
|
| 670 |
+
* NL2Repo: Others are evaluated via Claude Code (temp=1.0, top_p=0.95, max_turns=900).<br/>
|
| 671 |
+
* QwenClawBench: An internal real-user-distribution Claw agent benchmark (open-sourcing soon); temp=0.6, 256K ctx.<br/>
|
| 672 |
+
* QwenWebBench: An internal front-end code generation benchmark; bilingual (EN/CN), 7 categories (Web Design, Web Apps, Games, SVG, Data Visualization, Animation, and 3D); auto-render + multimodal judge (code/visual correctness); BT/Elo rating system.<br/>
|
| 673 |
+
* TAU3-Bench: We use the official user model (gpt-5.2, low reasoning effort) + default BM25 retrieval.<br/>
|
| 674 |
+
* VITA-Bench: Avg subdomain scores; using claude-4-sonnet as judger, as the official judger (claude-3.7-sonnet) is no longer available.<br/>
|
| 675 |
+
* MCPMark: GitHub MCP v0.30.3; Playwright responses truncated at 32K tokens.<br/>
|
| 676 |
+
* MCP-Atlas: Public set score; gemini-2.5-pro judger.<br/>
|
| 677 |
+
* AIME 26: We use the full AIME 2026 (I & II), where the scores may differ from Qwen 3.5 notes.<br/>
|
| 678 |
+
</p>
|
| 679 |
+
|
| 680 |
+
</div>
|
| 681 |
+
|
| 682 |
+
|
| 683 |
+
### Vision Language
|
| 684 |
+
|
| 685 |
+
<div style="font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;max-width:1000px;margin:0 auto;padding:16px 0">
|
| 686 |
+
<table style="width:100%;border-collapse:collapse;font-size:13px">
|
| 687 |
+
<thead><tr>
|
| 688 |
+
<th style="padding:10px 7px;text-align:left;font-weight:600;border-bottom:2px solid #7c3aed;color:#7c3aed"></th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Qwen3.5-27B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Claude-Sonnet-4.5</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Gemma4-31B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Gemma4-26BA4B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Qwen3.5-35B-A3B</th><th style="padding:10px 7px;text-align:center;font-weight:500;border-bottom:2px solid #7c3aed;color:#7c3aed;font-size: 14px;">Qwen3.6-35B-A3B</th></tr></thead>
|
| 689 |
+
<tbody>
|
| 690 |
+
<tr><td colspan="7" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">STEM and Puzzle</td></tr>
|
| 691 |
+
<tr>
|
| 692 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MMMU</td>
|
| 693 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.3</td>
|
| 694 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.6</td>
|
| 695 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.4</td>
|
| 696 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">78.4</td>
|
| 697 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">81.4</td>
|
| 698 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">81.7</td>
|
| 699 |
+
</tr>
|
| 700 |
+
<tr>
|
| 701 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MMMU-Pro</td>
|
| 702 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">75.0</td>
|
| 703 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">68.4</td>
|
| 704 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">76.9*</td>
|
| 705 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">73.8*</td>
|
| 706 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">75.1</td>
|
| 707 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">75.3</td>
|
| 708 |
+
</tr>
|
| 709 |
+
<tr>
|
| 710 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">Mathvista(mini)</td>
|
| 711 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">87.8</td>
|
| 712 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.8</td>
|
| 713 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.3</td>
|
| 714 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.4</td>
|
| 715 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.2</td>
|
| 716 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.4</td>
|
| 717 |
+
</tr>
|
| 718 |
+
<tr>
|
| 719 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">ZEROBench_sub</td>
|
| 720 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">36.2</td>
|
| 721 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">26.3</td>
|
| 722 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">26.0</td>
|
| 723 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">26.3</td>
|
| 724 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">34.1</td>
|
| 725 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">34.4</td>
|
| 726 |
+
</tr>
|
| 727 |
+
<tr><td colspan="7" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">General VQA</td></tr>
|
| 728 |
+
<tr>
|
| 729 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">RealWorldQA</td>
|
| 730 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">83.7</td>
|
| 731 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">70.3</td>
|
| 732 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">72.3</td>
|
| 733 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">72.2</td>
|
| 734 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">84.1</td>
|
| 735 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.3</td>
|
| 736 |
+
</tr>
|
| 737 |
+
<tr>
|
| 738 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MMBench<sub><small>EN-DEV-v1.1</small></sub></td>
|
| 739 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.6</td>
|
| 740 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">88.3</td>
|
| 741 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">90.9</td>
|
| 742 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.0</td>
|
| 743 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">91.5</td>
|
| 744 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.8</td>
|
| 745 |
+
</tr>
|
| 746 |
+
<tr>
|
| 747 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">SimpleVQA</td>
|
| 748 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">56.0</td>
|
| 749 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">57.6</td>
|
| 750 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">52.9</td>
|
| 751 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">52.2</td>
|
| 752 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">58.3</td>
|
| 753 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">58.9</td>
|
| 754 |
+
</tr>
|
| 755 |
+
<tr>
|
| 756 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">HallusionBench</td>
|
| 757 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">70.0</td>
|
| 758 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">59.9</td>
|
| 759 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.4</td>
|
| 760 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">66.1</td>
|
| 761 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.9</td>
|
| 762 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">69.8</td>
|
| 763 |
+
</tr>
|
| 764 |
+
<tr><td colspan="7" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">Text Recognition and Document Understanding</td></tr>
|
| 765 |
+
<tr>
|
| 766 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">OmniDocBench1.5</td>
|
| 767 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">88.9</td>
|
| 768 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.8</td>
|
| 769 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.1</td>
|
| 770 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.4</td>
|
| 771 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.3</td>
|
| 772 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.9</td>
|
| 773 |
+
</tr>
|
| 774 |
+
<tr>
|
| 775 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">CharXiv(RQ)</td>
|
| 776 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">79.5</td>
|
| 777 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.2</td>
|
| 778 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.9</td>
|
| 779 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">69.0</td>
|
| 780 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">77.5</td>
|
| 781 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">78.0</td>
|
| 782 |
+
</tr>
|
| 783 |
+
<tr>
|
| 784 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">CC-OCR</td>
|
| 785 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">81.0</td>
|
| 786 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">68.1</td>
|
| 787 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">75.7</td>
|
| 788 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.5</td>
|
| 789 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.7</td>
|
| 790 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">81.9</td>
|
| 791 |
+
</tr>
|
| 792 |
+
<tr>
|
| 793 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">AI2D_TEST</td>
|
| 794 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.9</td>
|
| 795 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">87.0</td>
|
| 796 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.0</td>
|
| 797 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">88.3</td>
|
| 798 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.6</td>
|
| 799 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.7</td>
|
| 800 |
+
</tr>
|
| 801 |
+
<tr><td colspan="7" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">Spatial Intelligence</td></tr>
|
| 802 |
+
<tr>
|
| 803 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">RefCOCO(avg)</td>
|
| 804 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">90.9</td>
|
| 805 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 806 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 807 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 808 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">89.2</td>
|
| 809 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">92.0</td>
|
| 810 |
+
</tr>
|
| 811 |
+
<tr>
|
| 812 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">ODInW13</td>
|
| 813 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">41.1</td>
|
| 814 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 815 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 816 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 817 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">42.6</td>
|
| 818 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">50.8</td>
|
| 819 |
+
</tr>
|
| 820 |
+
<tr>
|
| 821 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">EmbSpatialBench</td>
|
| 822 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">84.5</td>
|
| 823 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">71.8</td>
|
| 824 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 825 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 826 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">83.1</td>
|
| 827 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">84.3</td>
|
| 828 |
+
</tr>
|
| 829 |
+
<tr>
|
| 830 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">RefSpatialBench</td>
|
| 831 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">67.7</td>
|
| 832 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 833 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 834 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 835 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">63.5</td>
|
| 836 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">64.3</td>
|
| 837 |
+
</tr>
|
| 838 |
+
<tr><td colspan="7" style="padding:8px 12px;font-weight:600;color:#7c3aed;border-bottom:1px solid rgba(124, 58, 237, 0.2);background:rgba(124, 58, 237, 0.1)">Video Understanding</td></tr>
|
| 839 |
+
<tr>
|
| 840 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">VideoMME<sub><small>(w sub.)</sub></small></td>
|
| 841 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">87.0</td>
|
| 842 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">81.1</td>
|
| 843 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 844 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 845 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.6</td>
|
| 846 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.6</td>
|
| 847 |
+
</tr>
|
| 848 |
+
<tr>
|
| 849 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">VideoMME<sub><small>(w/o sub.)</sub></small></td>
|
| 850 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.8</td>
|
| 851 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">75.3</td>
|
| 852 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 853 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 854 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.5</td>
|
| 855 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.5</td>
|
| 856 |
+
</tr>
|
| 857 |
+
<tr>
|
| 858 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">VideoMMMU</td>
|
| 859 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">82.3</td>
|
| 860 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">77.6</td>
|
| 861 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">81.6</td>
|
| 862 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">76.0</td>
|
| 863 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">80.4</td>
|
| 864 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">83.7</td>
|
| 865 |
+
</tr>
|
| 866 |
+
<tr>
|
| 867 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MLVU</td>
|
| 868 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.9</td>
|
| 869 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">72.8</td>
|
| 870 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 871 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 872 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">85.6</td>
|
| 873 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">86.2</td>
|
| 874 |
+
</tr>
|
| 875 |
+
<tr>
|
| 876 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">MVBench</td>
|
| 877 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.6</td>
|
| 878 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 879 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 880 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 881 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.8</td>
|
| 882 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">74.6</td>
|
| 883 |
+
</tr>
|
| 884 |
+
<tr>
|
| 885 |
+
<td style="padding:7px 7px;padding-left:20px;border-bottom:1px solid rgba(128, 128, 128, 0.15);">LVBench</td>
|
| 886 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">73.6</td>
|
| 887 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 888 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 889 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">--</td>
|
| 890 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">71.4</td>
|
| 891 |
+
<td style="padding:7px 7px;text-align:center;border-bottom:1px solid rgba(128, 128, 128, 0.15)">71.4</td>
|
| 892 |
+
</tr>
|
| 893 |
+
</tbody>
|
| 894 |
+
</table>
|
| 895 |
+
<p style="margin-top:12px;font-size:10px;opacity:0.7">
|
| 896 |
+
* Empty cells (--) indicate scores not available or not applicable.
|
| 897 |
+
</p>
|
| 898 |
+
</div>
|
| 899 |
+
|
| 900 |
+
## Quickstart
|
| 901 |
+
|
| 902 |
+
For streamlined integration, we recommend using Qwen3.6 via APIs. Below is a guide to use Qwen3.6 via OpenAI-compatible API.
|
| 903 |
+
|
| 904 |
+
### Serving Qwen3.6
|
| 905 |
+
|
| 906 |
+
Qwen3.6 can be served via APIs with popular inference frameworks.
|
| 907 |
+
In the following, we show example commands to launch OpenAI-Compatible API servers for Qwen3.6 models.
|
| 908 |
+
|
| 909 |
+
> [!Important]
|
| 910 |
+
> Inference efficiency and throughput vary significantly across frameworks.
|
| 911 |
+
> We recommend using the latest framework versions to ensure optimal performance and compatibility.
|
| 912 |
+
> For production workloads or high-throughput scenarios, dedicated serving engines such as SGLang, KTransformers or vLLM are strongly recommended.
|
| 913 |
+
|
| 914 |
+
> [!Important]
|
| 915 |
+
> The model has a default context length of 262,144 tokens.
|
| 916 |
+
> If you encounter out-of-memory (OOM) errors, consider reducing the context window.
|
| 917 |
+
> However, because Qwen3.6 leverages extended context for complex tasks, we advise maintaining a context length of at least 128K tokens to preserve thinking capabilities.
|
| 918 |
+
|
| 919 |
+
#### SGLang
|
| 920 |
+
|
| 921 |
+
[SGLang](https://github.com/sgl-project/sglang) is a fast serving framework for large language models and vision language models.
|
| 922 |
+
`sglang>=0.5.10` is recommended for Qwen3.6, which can be installed using the following command in a fresh environment:
|
| 923 |
+
```shell
|
| 924 |
+
uv pip install sglang[all]
|
| 925 |
+
```
|
| 926 |
+
See [its documentation](https://docs.sglang.ai/get_started/install.html) for more details.
|
| 927 |
+
|
| 928 |
+
The following will create API endpoints at `http://localhost:8000/v1`:
|
| 929 |
+
|
| 930 |
+
- **Standard Version**: The following command can be used to create an API endpoint with maximum context length 262,144 tokens using tensor parallel on 8 GPUs.
|
| 931 |
+
|
| 932 |
+
```shell
|
| 933 |
+
python -m sglang.launch_server --model-path Qwen/Qwen3.6-35B-A3B --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3
|
| 934 |
+
```
|
| 935 |
+
|
| 936 |
+
- **Tool Use**: To support tool use, you can use the following command.
|
| 937 |
+
|
| 938 |
+
```shell
|
| 939 |
+
python -m sglang.launch_server --model-path Qwen/Qwen3.6-35B-A3B --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 --tool-call-parser qwen3_coder
|
| 940 |
+
```
|
| 941 |
+
|
| 942 |
+
- **Multi-Token Prediction (MTP)**: The following command is recommended for MTP:
|
| 943 |
+
|
| 944 |
+
```shell
|
| 945 |
+
python -m sglang.launch_server --model-path Qwen/Qwen3.6-35B-A3B --port 8000 --tp-size 8 --mem-fraction-static 0.8 --context-length 262144 --reasoning-parser qwen3 --speculative-algo NEXTN --speculative-num-steps 3 --speculative-eagle-topk 1 --speculative-num-draft-tokens 4
|
| 946 |
+
```
|
| 947 |
+
|
| 948 |
+
For detailed deployment guide, see the [SGLang Qwen3.5 Cookbook](https://lmsysorg.mintlify.app/cookbook/llm/Qwen/Qwen3.5).
|
| 949 |
+
|
| 950 |
+
#### vLLM
|
| 951 |
+
|
| 952 |
+
[vLLM](https://github.com/vllm-project/vllm) is a high-throughput and memory-efficient inference and serving engine for LLMs.
|
| 953 |
+
`vllm>=0.19.0` is recommended for Qwen3.6, which can be installed using the following command in a fresh environment:
|
| 954 |
+
```shell
|
| 955 |
+
uv pip install vllm --torch-backend=auto
|
| 956 |
+
```
|
| 957 |
+
See [its documentation](https://docs.vllm.ai/en/stable/getting_started/installation/index.html) for more details.
|
| 958 |
+
|
| 959 |
+
|
| 960 |
+
The following will create API endpoints at `http://localhost:8000/v1`:
|
| 961 |
+
|
| 962 |
+
- **Standard Version**: The following command can be used to create an API endpoint with maximum context length 262,144 tokens using tensor parallel on 8 GPUs.
|
| 963 |
+
|
| 964 |
+
```shell
|
| 965 |
+
vllm serve Qwen/Qwen3.6-35B-A3B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3
|
| 966 |
+
```
|
| 967 |
+
|
| 968 |
+
- **Tool Call**: To support tool use, you can use the following command.
|
| 969 |
+
|
| 970 |
+
```shell
|
| 971 |
+
vllm serve Qwen/Qwen3.6-35B-A3B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder
|
| 972 |
+
```
|
| 973 |
+
|
| 974 |
+
- **Multi-Token Prediction (MTP)**: The following command is recommended for MTP:
|
| 975 |
+
|
| 976 |
+
```shell
|
| 977 |
+
vllm serve Qwen/Qwen3.6-35B-A3B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 --speculative-config '{"method":"qwen3_next_mtp","num_speculative_tokens":2}'
|
| 978 |
+
```
|
| 979 |
+
|
| 980 |
+
- **Text-Only**: The following command skips the vision encoder and multimodal profiling to free up memory for additional KV cache:
|
| 981 |
+
|
| 982 |
+
```shell
|
| 983 |
+
vllm serve Qwen/Qwen3.6-35B-A3B --port 8000 --tensor-parallel-size 8 --max-model-len 262144 --reasoning-parser qwen3 --language-model-only
|
| 984 |
+
```
|
| 985 |
+
|
| 986 |
+
For detailed deployment guide, see the [vLLM Qwen3.5 Recipe](https://docs.vllm.ai/projects/recipes/en/latest/Qwen/Qwen3.5.html).
|
| 987 |
+
|
| 988 |
+
#### KTransformers
|
| 989 |
+
|
| 990 |
+
[KTransformers](https://github.com/kvcache-ai/ktransformers) is a flexible framework for experiencing cutting-edge LLM inference optimizations with CPU-GPU heterogeneous computing.
|
| 991 |
+
For running Qwen3.6 with KTransformers, see the [KTransformers Deployment Guide](https://github.com/kvcache-ai/ktransformers/blob/main/doc/en/Qwen3.5.md).
|
| 992 |
+
|
| 993 |
+
#### Hugging Face Transformers
|
| 994 |
+
|
| 995 |
+
Hugging Face Transformers contains a _lightweight_ server which can be used for quick testing and moderate load deployment.
|
| 996 |
+
The latest `transformers` is required for Qwen3.6:
|
| 997 |
+
```shell
|
| 998 |
+
pip install "transformers[serving]"
|
| 999 |
+
```
|
| 1000 |
+
See [its documentation](https://huggingface.co/docs/transformers/main/serving) for more details. Please also make sure torchvision and pillow are installed.
|
| 1001 |
+
|
| 1002 |
+
Then, run `transformers serve` to launch a server with API endpoints at `http://localhost:8000/v1`; it will place the model on accelerators if available:
|
| 1003 |
+
```shell
|
| 1004 |
+
transformers serve Qwen/Qwen3.6-35B-A3B --port 8000 --continuous-batching
|
| 1005 |
+
```
|
| 1006 |
+
|
| 1007 |
+
### Using Qwen3.6 via the Chat Completions API
|
| 1008 |
+
|
| 1009 |
+
The chat completions API is accessible via standard HTTP requests or OpenAI SDKs.
|
| 1010 |
+
Here, we show examples using the OpenAI Python SDK.
|
| 1011 |
+
|
| 1012 |
+
Before starting, make sure it is installed and the API key and the API base URL is configured, e.g.:
|
| 1013 |
+
```shell
|
| 1014 |
+
pip install -U openai
|
| 1015 |
+
|
| 1016 |
+
# Set the following accordingly
|
| 1017 |
+
export OPENAI_BASE_URL="http://localhost:8000/v1"
|
| 1018 |
+
export OPENAI_API_KEY="EMPTY"
|
| 1019 |
+
```
|
| 1020 |
+
|
| 1021 |
+
> [!Tip]
|
| 1022 |
+
> We recommend using the following set of sampling parameters for generation
|
| 1023 |
+
> - Thinking mode for general tasks: `temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0`
|
| 1024 |
+
> - Thinking mode for precise coding tasks (e.g. WebDev): `temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0`
|
| 1025 |
+
> - Instruct (or non-thinking) mode for general tasks: `temperature=0.7, top_p=0.8, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0`
|
| 1026 |
+
> - Instruct (or non-thinking) mode for reasoning tasks: `temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0`
|
| 1027 |
+
>
|
| 1028 |
+
> Please note that the support for sampling parameters varies according to inference frameworks.
|
| 1029 |
+
|
| 1030 |
+
> [!Important]
|
| 1031 |
+
> Qwen3.6 models operate in thinking mode by default, generating thinking content signified by `<think>\n...</think>\n\n` before producing the final responses.
|
| 1032 |
+
> To disable thinking content and obtain direct response, refer to the examples [here](#instruct-or-non-thinking-mode).
|
| 1033 |
+
|
| 1034 |
+
|
| 1035 |
+
#### Text-Only Input
|
| 1036 |
+
|
| 1037 |
+
```python
|
| 1038 |
+
from openai import OpenAI
|
| 1039 |
+
# Configured by environment variables
|
| 1040 |
+
client = OpenAI()
|
| 1041 |
+
|
| 1042 |
+
messages = [
|
| 1043 |
+
{"role": "user", "content": "Type \"I love Qwen3.6\" backwards"},
|
| 1044 |
+
]
|
| 1045 |
+
|
| 1046 |
+
chat_response = client.chat.completions.create(
|
| 1047 |
+
model="Qwen/Qwen3.6-35B-A3B",
|
| 1048 |
+
messages=messages,
|
| 1049 |
+
max_tokens=81920,
|
| 1050 |
+
temperature=1.0,
|
| 1051 |
+
top_p=0.95,
|
| 1052 |
+
presence_penalty=1.5,
|
| 1053 |
+
extra_body={
|
| 1054 |
+
"top_k": 20,
|
| 1055 |
+
},
|
| 1056 |
+
)
|
| 1057 |
+
print("Chat response:", chat_response)
|
| 1058 |
+
```
|
| 1059 |
+
|
| 1060 |
+
|
| 1061 |
+
#### Image Input
|
| 1062 |
+
|
| 1063 |
+
```python
|
| 1064 |
+
from openai import OpenAI
|
| 1065 |
+
# Configured by environment variables
|
| 1066 |
+
client = OpenAI()
|
| 1067 |
+
|
| 1068 |
+
messages = [
|
| 1069 |
+
{
|
| 1070 |
+
"role": "user",
|
| 1071 |
+
"content": [
|
| 1072 |
+
{
|
| 1073 |
+
"type": "image_url",
|
| 1074 |
+
"image_url": {
|
| 1075 |
+
"url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/CI_Demo/mathv-1327.jpg"
|
| 1076 |
+
}
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"type": "text",
|
| 1080 |
+
"text": "The centres of the four illustrated circles are in the corners of the square. The two big circles touch each other and also the two little circles. With which factor do you have to multiply the radii of the little circles to obtain the radius of the big circles?\nChoices:\n(A) $\\frac{2}{9}$\n(B) $\\sqrt{5}$\n(C) $0.8 \\cdot \\pi$\n(D) 2.5\n(E) $1+\\sqrt{2}$"
|
| 1081 |
+
}
|
| 1082 |
+
]
|
| 1083 |
+
}
|
| 1084 |
+
]
|
| 1085 |
+
|
| 1086 |
+
response = client.chat.completions.create(
|
| 1087 |
+
model="Qwen/Qwen3.6-35B-A3B",
|
| 1088 |
+
messages=messages,
|
| 1089 |
+
max_tokens=81920,
|
| 1090 |
+
temperature=1.0,
|
| 1091 |
+
top_p=0.95,
|
| 1092 |
+
presence_penalty=1.5,
|
| 1093 |
+
extra_body={
|
| 1094 |
+
"top_k": 20,
|
| 1095 |
+
},
|
| 1096 |
+
)
|
| 1097 |
+
print("Chat response:", chat_response)
|
| 1098 |
+
```
|
| 1099 |
+
|
| 1100 |
+
#### Video Input
|
| 1101 |
+
|
| 1102 |
+
```python
|
| 1103 |
+
from openai import OpenAI
|
| 1104 |
+
# Configured by environment variables
|
| 1105 |
+
client = OpenAI()
|
| 1106 |
+
|
| 1107 |
+
messages = [
|
| 1108 |
+
{
|
| 1109 |
+
"role": "user",
|
| 1110 |
+
"content": [
|
| 1111 |
+
{
|
| 1112 |
+
"type": "video_url",
|
| 1113 |
+
"video_url": {
|
| 1114 |
+
"url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/video/N1cdUjctpG8.mp4"
|
| 1115 |
+
}
|
| 1116 |
+
},
|
| 1117 |
+
{
|
| 1118 |
+
"type": "text",
|
| 1119 |
+
"text": "How many porcelain jars were discovered in the niches located in the primary chamber of the tomb?"
|
| 1120 |
+
}
|
| 1121 |
+
]
|
| 1122 |
+
}
|
| 1123 |
+
]
|
| 1124 |
+
|
| 1125 |
+
# When vLLM is launched with `--media-io-kwargs '{"video": {"num_frames": -1}}'`,
|
| 1126 |
+
# video frame sampling can be configured via `extra_body` (e.g., by setting `fps`).
|
| 1127 |
+
# This feature is currently supported only in vLLM.
|
| 1128 |
+
#
|
| 1129 |
+
# By default, `fps=2` and `do_sample_frames=True`.
|
| 1130 |
+
# With `do_sample_frames=True`, you can customize the `fps` value to set your desired video sampling rate.
|
| 1131 |
+
response = client.chat.completions.create(
|
| 1132 |
+
model="Qwen/Qwen3.6-35B-A3B",
|
| 1133 |
+
messages=messages,
|
| 1134 |
+
max_tokens=81920,
|
| 1135 |
+
temperature=1.0,
|
| 1136 |
+
top_p=0.95,
|
| 1137 |
+
presence_penalty=1.5,
|
| 1138 |
+
extra_body={
|
| 1139 |
+
"top_k": 20,
|
| 1140 |
+
"mm_processor_kwargs": {"fps": 2, "do_sample_frames": True},
|
| 1141 |
+
},
|
| 1142 |
+
)
|
| 1143 |
+
|
| 1144 |
+
print("Chat response:", chat_response)
|
| 1145 |
+
```
|
| 1146 |
+
|
| 1147 |
+
|
| 1148 |
+
#### Instruct (or Non-Thinking) Mode
|
| 1149 |
+
|
| 1150 |
+
> [!Important]
|
| 1151 |
+
> Qwen3.6 does not officially support the soft switch of Qwen3, i.e., `/think` and `/nothink`.
|
| 1152 |
+
|
| 1153 |
+
Qwen3.6 will think by default before response.
|
| 1154 |
+
You can obtain direct response from the model without thinking by configuring the API parameters.
|
| 1155 |
+
For example,
|
| 1156 |
+
```python
|
| 1157 |
+
from openai import OpenAI
|
| 1158 |
+
# Configured by environment variables
|
| 1159 |
+
client = OpenAI()
|
| 1160 |
+
|
| 1161 |
+
messages = [
|
| 1162 |
+
{
|
| 1163 |
+
"role": "user",
|
| 1164 |
+
"content": [
|
| 1165 |
+
{
|
| 1166 |
+
"type": "image_url",
|
| 1167 |
+
"image_url": {
|
| 1168 |
+
"url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.6/demo/RealWorld/RealWorld-04.png"
|
| 1169 |
+
}
|
| 1170 |
+
},
|
| 1171 |
+
{
|
| 1172 |
+
"type": "text",
|
| 1173 |
+
"text": "Where is this?"
|
| 1174 |
+
}
|
| 1175 |
+
]
|
| 1176 |
+
}
|
| 1177 |
+
]
|
| 1178 |
+
|
| 1179 |
+
chat_response = client.chat.completions.create(
|
| 1180 |
+
model="Qwen/Qwen3.6-35B-A3B",
|
| 1181 |
+
messages=messages,
|
| 1182 |
+
max_tokens=32768,
|
| 1183 |
+
temperature=0.7,
|
| 1184 |
+
top_p=0.8,
|
| 1185 |
+
presence_penalty=1.5,
|
| 1186 |
+
extra_body={
|
| 1187 |
+
"top_k": 20,
|
| 1188 |
+
"chat_template_kwargs": {"enable_thinking": False},
|
| 1189 |
+
},
|
| 1190 |
+
)
|
| 1191 |
+
print("Chat response:", chat_response)
|
| 1192 |
+
```
|
| 1193 |
+
|
| 1194 |
+
> [!Note]
|
| 1195 |
+
> If you are using APIs from Alibaba Cloud Model Studio, in addition to changing `model`, please use `"enable_thinking": False` instead of `"chat_template_kwargs": {"enable_thinking": False}`.
|
| 1196 |
+
|
| 1197 |
+
#### Preserve Thinking
|
| 1198 |
+
|
| 1199 |
+
By default, only the thinking blocks generated in handling the latest user message is retained, resulting in a pattern commonly as interleaved thinking.
|
| 1200 |
+
Qwen3.6 has been additionally trained to preserve and leverage thinking traces from historical messages.
|
| 1201 |
+
You can enable this behavior by setting the `preserve_thinking` option:
|
| 1202 |
+
```python
|
| 1203 |
+
from openai import OpenAI
|
| 1204 |
+
# Configured by environment variables
|
| 1205 |
+
client = OpenAI()
|
| 1206 |
+
|
| 1207 |
+
messages = [...]
|
| 1208 |
+
|
| 1209 |
+
chat_response = client.chat.completions.create(
|
| 1210 |
+
model="Qwen/Qwen3.6-35B-A3B",
|
| 1211 |
+
messages=messages,
|
| 1212 |
+
max_tokens=32768,
|
| 1213 |
+
temperature=0.7,
|
| 1214 |
+
top_p=0.8,
|
| 1215 |
+
presence_penalty=1.5,
|
| 1216 |
+
extra_body={
|
| 1217 |
+
"top_k": 20,
|
| 1218 |
+
"chat_template_kwargs": {"preserve_thinking": True},
|
| 1219 |
+
},
|
| 1220 |
+
)
|
| 1221 |
+
print("Chat response:", chat_response)
|
| 1222 |
+
```
|
| 1223 |
+
|
| 1224 |
+
> [!Note]
|
| 1225 |
+
> If you are using APIs from Alibaba Cloud Model Studio, in addition to changing `model`, please use `"preserve_thinking": True` instead of `"chat_template_kwargs": {"preserve_thinking": False}`.
|
| 1226 |
+
|
| 1227 |
+
|
| 1228 |
+
This capability is particularly beneficial for agent scenarios, where maintaining full reasoning context can enhance decision consistency and, in many cases, reduce overall token consumption by minimizing redundant reasoning. Additionally, it can improve KV cache utilization, optimizing inference efficiency in both thinking and non-thinking modes.
|
| 1229 |
+
|
| 1230 |
+
|
| 1231 |
+
## Agentic Usage
|
| 1232 |
+
|
| 1233 |
+
Qwen3.6 excels in tool calling capabilities.
|
| 1234 |
+
|
| 1235 |
+
### Qwen-Agent
|
| 1236 |
+
|
| 1237 |
+
We recommend using [Qwen-Agent](https://github.com/QwenLM/Qwen-Agent) to quickly build Agent applications with Qwen3.6.
|
| 1238 |
+
|
| 1239 |
+
To define the available tools, you can use the MCP configuration file, use the integrated tool of Qwen-Agent, or integrate other tools by yourself.
|
| 1240 |
+
```python
|
| 1241 |
+
import os
|
| 1242 |
+
from qwen_agent.agents import Assistant
|
| 1243 |
+
|
| 1244 |
+
# Define LLM
|
| 1245 |
+
# Using Alibaba Cloud Model Studio
|
| 1246 |
+
llm_cfg = {
|
| 1247 |
+
# Use the OpenAI-compatible model service provided by DashScope:
|
| 1248 |
+
'model': 'Qwen3.6-35B-A3B',
|
| 1249 |
+
'model_type': 'qwenvl_oai',
|
| 1250 |
+
'model_server': 'https://dashscope.aliyuncs.com/compatible-mode/v1',
|
| 1251 |
+
'api_key': os.getenv('DASHSCOPE_API_KEY'),
|
| 1252 |
+
|
| 1253 |
+
'generate_cfg': {
|
| 1254 |
+
'use_raw_api': True,
|
| 1255 |
+
# When using Dash Scope OAI API, pass the parameter of whether to enable thinking mode in this way
|
| 1256 |
+
'extra_body': {
|
| 1257 |
+
'enable_thinking': True,
|
| 1258 |
+
'preserve_thinking': True,
|
| 1259 |
+
},
|
| 1260 |
+
},
|
| 1261 |
+
}
|
| 1262 |
+
|
| 1263 |
+
# Using OpenAI-compatible API endpoint.
|
| 1264 |
+
# functionality of the deployment frameworks and let Qwen-Agent automate the related operations.
|
| 1265 |
+
#
|
| 1266 |
+
# llm_cfg = {
|
| 1267 |
+
# # Use your own model service compatible with OpenAI API by vLLM/SGLang:
|
| 1268 |
+
# 'model': 'Qwen/Qwen3.6-35B-A3B',
|
| 1269 |
+
# 'model_type': 'qwenvl_oai',
|
| 1270 |
+
# 'model_server': 'http://localhost:8000/v1', # api_base
|
| 1271 |
+
# 'api_key': 'EMPTY',
|
| 1272 |
+
#
|
| 1273 |
+
# 'generate_cfg': {
|
| 1274 |
+
# 'use_raw_api': True,
|
| 1275 |
+
# # When using vLLM/SGLang OAI API, pass the parameter of whether to enable thinking mode in this way
|
| 1276 |
+
# 'extra_body': {
|
| 1277 |
+
# 'chat_template_kwargs': {'enable_thinking': True, 'preserve_thinking': True}
|
| 1278 |
+
# },
|
| 1279 |
+
# },
|
| 1280 |
+
# }
|
| 1281 |
+
|
| 1282 |
+
# Define Tools
|
| 1283 |
+
tools = [
|
| 1284 |
+
{'mcpServers': { # You can specify the MCP configuration file
|
| 1285 |
+
"filesystem": {
|
| 1286 |
+
"command": "npx",
|
| 1287 |
+
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/xxxx/Desktop"]
|
| 1288 |
+
}
|
| 1289 |
+
}
|
| 1290 |
+
}
|
| 1291 |
+
]
|
| 1292 |
+
|
| 1293 |
+
# Define Agent
|
| 1294 |
+
bot = Assistant(llm=llm_cfg, function_list=tools)
|
| 1295 |
+
|
| 1296 |
+
# Streaming generation
|
| 1297 |
+
messages = [{'role': 'user', 'content': 'Help me organize my desktop.'}]
|
| 1298 |
+
for responses in bot.run(messages=messages):
|
| 1299 |
+
pass
|
| 1300 |
+
print(responses)
|
| 1301 |
+
|
| 1302 |
+
# Streaming generation
|
| 1303 |
+
messages = [{'role': 'user', 'content': 'Develop a dog website and save it on the desktop'}]
|
| 1304 |
+
for responses in bot.run(messages=messages):
|
| 1305 |
+
pass
|
| 1306 |
+
print(responses)
|
| 1307 |
+
```
|
| 1308 |
+
|
| 1309 |
+
### Qwen Code
|
| 1310 |
+
|
| 1311 |
+
|
| 1312 |
+
[Qwen Code](https://github.com/QwenLM/qwen-code) is an open-source AI agent for the terminal, optimized for Qwen models. It helps you understand large codebases, automate tedious work, and ship faster.
|
| 1313 |
+
|
| 1314 |
+
For more information, please refer to [Qwen Code](https://qwenlm.github.io/qwen-code-docs/).
|
| 1315 |
+
|
| 1316 |
+
## Processing Ultra-Long Texts
|
| 1317 |
+
|
| 1318 |
+
Qwen3.6 natively supports context lengths of up to 262,144 tokens.
|
| 1319 |
+
For long-horizon tasks where the total length (including both input and output) exceeds this limit, we recommend using RoPE scaling techniques to handle long texts effectively., e.g., YaRN.
|
| 1320 |
+
|
| 1321 |
+
YaRN is currently supported by several inference frameworks, e.g., `transformers`, `vllm`, `ktransformers` and `sglang`.
|
| 1322 |
+
In general, there are two approaches to enabling YaRN for supported frameworks:
|
| 1323 |
+
|
| 1324 |
+
- Modifying the model configuration file:
|
| 1325 |
+
In the `config.json` file, change the `rope_parameters` fields in `text_config` to:
|
| 1326 |
+
```json
|
| 1327 |
+
{
|
| 1328 |
+
"mrope_interleaved": true,
|
| 1329 |
+
"mrope_section": [
|
| 1330 |
+
11,
|
| 1331 |
+
11,
|
| 1332 |
+
10
|
| 1333 |
+
],
|
| 1334 |
+
"rope_type": "yarn",
|
| 1335 |
+
"rope_theta": 10000000,
|
| 1336 |
+
"partial_rotary_factor": 0.25,
|
| 1337 |
+
"factor": 4.0,
|
| 1338 |
+
"original_max_position_embeddings": 262144,
|
| 1339 |
+
}
|
| 1340 |
+
```
|
| 1341 |
+
|
| 1342 |
+
- Passing command line arguments:
|
| 1343 |
+
|
| 1344 |
+
For `vllm`, you can use
|
| 1345 |
+
```shell
|
| 1346 |
+
VLLM_ALLOW_LONG_MAX_MODEL_LEN=1 vllm serve ... --hf-overrides '{"text_config": {"rope_parameters": {"mrope_interleaved": true, "mrope_section": [11, 11, 10], "rope_type": "yarn", "rope_theta": 10000000, "partial_rotary_factor": 0.25, "factor": 4.0, "original_max_position_embeddings": 262144}}}' --max-model-len 1010000
|
| 1347 |
+
```
|
| 1348 |
+
|
| 1349 |
+
For `sglang` and `ktransformers`, you can use
|
| 1350 |
+
```shell
|
| 1351 |
+
SGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1 python -m sglang.launch_server ... --json-model-override-args '{"text_config": {"rope_parameters": {"mrope_interleaved": true, "mrope_section": [11, 11, 10], "rope_type": "yarn", "rope_theta": 10000000, "partial_rotary_factor": 0.25, "factor": 4.0, "original_max_position_embeddings": 262144}}}' --context-length 1010000
|
| 1352 |
+
```
|
| 1353 |
+
|
| 1354 |
+
> [!NOTE]
|
| 1355 |
+
> All the notable open-source frameworks implement static YaRN, which means the scaling factor remains constant regardless of input length, **potentially impacting performance on shorter texts.**
|
| 1356 |
+
> We advise modifying the `rope_parameters` configuration only when processing long contexts is required.
|
| 1357 |
+
> It is also recommended to modify the `factor` as needed. For example, if the typical context length for your application is 524,288 tokens, it would be better to set `factor` as 2.0.
|
| 1358 |
+
|
| 1359 |
+
## Best Practices
|
| 1360 |
+
|
| 1361 |
+
To achieve optimal performance, we recommend the following settings:
|
| 1362 |
+
|
| 1363 |
+
1. **Sampling Parameters**:
|
| 1364 |
+
- We suggest using the following sets of sampling parameters depending on the mode and task type:
|
| 1365 |
+
- **Thinking mode for general tasks**:
|
| 1366 |
+
`temperature=1.0`, `top_p=0.95`, `top_k=20`, `min_p=0.0`, `presence_penalty=1.5`, `repetition_penalty=1.0`
|
| 1367 |
+
- **Thinking mode for precise coding tasks (e.g., WebDev)**:
|
| 1368 |
+
`temperature=0.6`, `top_p=0.95`, `top_k=20`, `min_p=0.0`, `presence_penalty=0.0`, `repetition_penalty=1.0`
|
| 1369 |
+
- **Instruct (or non-thinking) mode for general tasks**:
|
| 1370 |
+
`temperature=0.7`, `top_p=0.8`, `top_k=20`, `min_p=0.0`, `presence_penalty=1.5`, `repetition_penalty=1.0`
|
| 1371 |
+
- **Instruct (or non-thinking) mode for reasoning tasks**:
|
| 1372 |
+
`temperature=1.0`, `top_p=1.0`, `top_k=40`, `min_p=0.0`, `presence_penalty=2.0`, `repetition_penalty=1.0`
|
| 1373 |
+
- For supported frameworks, you can adjust the `presence_penalty` parameter between 0 and 2 to reduce endless repetitions. However, using a higher value may occasionally result in language mixing and a slight decrease in model performance.
|
| 1374 |
+
|
| 1375 |
+
2. **Adequate Output Length**: We recommend using an output length of 32,768 tokens for most queries. For benchmarking on highly complex problems, such as those found in math and programming competitions, we suggest setting the max output length to 81,920 tokens. This provides the model with sufficient space to generate detailed and comprehensive responses, thereby enhancing its overall performance.
|
| 1376 |
+
|
| 1377 |
+
3. **Standardize Output Format**: We recommend using prompts to standardize model outputs when benchmarking.
|
| 1378 |
+
- **Math Problems**: Include "Please reason step by step, and put your final answer within \boxed{}." in the prompt.
|
| 1379 |
+
- **Multiple-Choice Questions**: Add the following JSON structure to the prompt to standardize responses: "Please show your choice in the `answer` field with only the choice letter, e.g., `"answer": "C"`."
|
| 1380 |
+
|
| 1381 |
+
4. **Long Video Understanding**: To optimize inference efficiency for plain text and images, the `size` parameter in the released `video_preprocessor_config.json` is conservatively configured. It is recommended to set the `longest_edge` parameter in the video_preprocessor_config file to 469,762,048 (corresponding to 224k video tokens) to enable higher frame-rate sampling for hour-scale videos and thereby achieve superior performance. For example,
|
| 1382 |
+
```json
|
| 1383 |
+
{"longest_edge": 469762048, "shortest_edge": 4096}
|
| 1384 |
+
```
|
| 1385 |
+
|
| 1386 |
+
Alternatively, override the default values via engine startup parameters. For implementation details, refer to: [vLLM](https://github.com/vllm-project/vllm/pull/34330) / [SGLang](https://github.com/sgl-project/sglang/pull/18467).
|
| 1387 |
+
|
| 1388 |
+
|
| 1389 |
+
### Citation
|
| 1390 |
+
|
| 1391 |
+
If you find our work helpful, feel free to give us a cite.
|
| 1392 |
+
|
| 1393 |
+
```bibtex
|
| 1394 |
+
@misc{qwen36_35b_a3b,
|
| 1395 |
+
title = {{Qwen3.6-35B-A3B}: Agentic Coding Power, Now Open to All},
|
| 1396 |
+
url = {https://qwen.ai/blog?id=qwen3.6-35b-a3b},
|
| 1397 |
+
author = {{Qwen Team}},
|
| 1398 |
+
month = {April},
|
| 1399 |
+
year = {2026}
|
| 1400 |
+
}
|
| 1401 |
+
```
|
mmproj-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1118d1e1510c69c575e16ae21f0edfdbcc2b33c9bd106aa56af01d665bd3a7d9
|
| 3 |
+
size 614194400
|