Instructions to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S # Run inference directly in the terminal: llama cli -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S # Run inference directly in the terminal: llama cli -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
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 rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S # Run inference directly in the terminal: ./llama-cli -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
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 rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
Use Docker
docker model run hf.co/rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
- LM Studio
- Jan
- vLLM
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rico03/Qwen3.6-35B-Opus-Reasoning-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rico03/Qwen3.6-35B-Opus-Reasoning-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
- Ollama
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with Ollama:
ollama run hf.co/rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
- Unsloth Studio
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for rico03/Qwen3.6-35B-Opus-Reasoning-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for rico03/Qwen3.6-35B-Opus-Reasoning-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for rico03/Qwen3.6-35B-Opus-Reasoning-GGUF to start chatting
- Pi
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
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 rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
Run Hermes
hermes
- OpenClaw new
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
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 "rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S" \ --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"
- Docker Model Runner
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with Docker Model Runner:
docker model run hf.co/rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
- Lemonade
How to use rico03/Qwen3.6-35B-Opus-Reasoning-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull rico03/Qwen3.6-35B-Opus-Reasoning-GGUF:Q4_K_S
Run and chat with the model
lemonade run user.Qwen3.6-35B-Opus-Reasoning-GGUF-Q4_K_S
List all available models
lemonade list
- Atomic Chat
Qwen3.6 35B A3B — Opus 4.6 Reasoning Distillation (GGUF)
Fine-tuned version of Qwen/Qwen3.6-35B-A3B — one of the strongest open-weight agentic coding models — on high-quality reasoning traces distilled from Claude Opus 4.6 at maximum reasoning effort.
Qwen3.6-35B-A3B scores 73.4% on SWE-bench Verified and 51.5% on Terminal-Bench 2.0, outperforming Gemma4-31B and Qwen3.5-35B on agentic coding tasks. This fine-tune adds structured Claude-style reasoning on top of an already exceptional base.
Why this model?
- Base model is SOTA for agentic coding — Qwen3.6 beats Gemma4-31B on SWE-bench by 21 points
- Reasoning distillation from Claude Opus 4.6 — learns explicit structured thinking before answering
- MoE efficiency — only 3B parameters active at inference, fast on consumer hardware
- Multiple quantizations — from 11GB (IQ2_M) to 25GB (Q5_K_M), imatrix-optimized
- No degradation — fine-tuning preserves base model mathematical capabilities
Benchmark Results
⚠️ These are informal benchmarks run by the author, not official evaluations. Results on 30 samples may not be representative of full dataset performance.
GSM8K (Mathematical Reasoning, 30 samples, IQ4_NL quantization)
| Model | Correct | Accuracy | Notes |
|---|---|---|---|
| Qwen3.6-35B-A3B Base | 29/30 | 96.7% | Limited by 1024 token budget |
| Qwen3.6-35B-A3B Opus (this model) | 29/30 | 96.7% | Limited by 1024 token budget |
Both models were limited by the 1024 token budget due to Qwen3.6's extended thinking mode.
The fine-tune is expected to improve on reasoning structure, multi-step planning and agentic coding tasks — areas not covered by GSM8K.
Available Quantizations
| File | Size | VRAM | Type | Quality |
|---|---|---|---|---|
Qwen3.6-35B-A3B-Opus-IQ2_M.gguf |
11.66 GB | 16GB ✅ | imatrix | ★★★☆☆ |
Qwen3.6-35B-A3B-Opus-IQ3_XXS.gguf |
13.62 GB | 16GB ✅ | imatrix | ★★★★☆ |
Qwen3.6-35B-A3B-Opus-IQ3_M.gguf |
15.44 GB | 16GB ✅ | imatrix | ★★★★☆ |
Qwen3.6-35B-A3B-Opus-IQ4_XS.gguf |
18.73 GB | 24GB | imatrix | ★★★★★ |
Qwen3.6-35B-A3B-Opus-IQ4_NL.gguf |
19.78 GB | 24GB | imatrix | ★★★★★ |
Qwen3.6-35B-A3B-Opus-Q4_K_S.gguf |
19.89 GB | 24GB | standard | ★★★★☆ |
Qwen3.6-35B-A3B-Opus-Q5_K_M.gguf |
24.73 GB | 32GB | standard | ★★★★★ |
IQ quantizations use importance matrix calibration (groups_merged.txt) for superior quality at smaller file sizes compared to standard K-quants.
Which quantization should I use?
- 16GB VRAM →
IQ3_M(best quality that fits) orIQ3_XXS(more context headroom) - 24GB VRAM →
IQ4_NL(near-lossless, recommended) orIQ4_XS(slightly smaller) - 32GB VRAM →
Q5_K_M(highest quality)
Training Details
- Base model: Qwen/Qwen3.6-35B-A3B (35B total, 3B active, MoE, 256 experts)
- Method: QLoRA (r=16, alpha=16, nf4 4-bit quantization)
- Datasets:
- Crownelius/Opus-4.6-Reasoning-3300x — ~2160 examples
- TeichAI/Claude-Opus-4.6-Reasoning-887x — ~886 examples
- Total examples: ~3046 reasoning traces from Claude Opus 4.6 at maximum reasoning effort
- Epochs: 1
- Final loss: ~0.64
- Hardware: NVIDIA H100 NVL 94GB VRAM
- Framework: HuggingFace TRL + PEFT
- Quantization: llama.cpp with imatrix calibration (groups_merged.txt)
Usage with llama-server
llama-server \
--model Qwen3.6-35B-A3B-Opus-IQ3_M.gguf \
--port 8080 \
--n-gpu-layers 99 \
--ctx-size 32768 \
--flash-attn on \
--cache-type-k q4_0 \
--cache-type-v q4_0 \
--jinja
Recommended Sampling Parameters
temperature: 1.0
top_p: 0.95
top_k: 20
What this fine-tune adds
- Structured reasoning — explicit
<think>blocks before answering, distilled from Claude Opus 4.6 style - Multi-step problem decomposition — breaks complex tasks into clear reasoning steps
- Improved mathematical reasoning — more consistent step-by-step working
- Better response consistency — more predictable output format
- No capability degradation — base model performance preserved on standard benchmarks
Full precision model
The merged BF16 safetensors (~65GB) are available at rico03/qwen36-35B-opus-reasoning-merged for those who want to run their own quantizations, use with vLLM/Transformers, or perform further fine-tuning.
License
Apache 2.0 — same as base model Qwen/Qwen3.6-35B-A3B. ```
- Downloads last month
- 924
2-bit
3-bit
4-bit
5-bit
Model tree for rico03/Qwen3.6-35B-Opus-Reasoning-GGUF
Base model
Qwen/Qwen3.6-35B-A3B