Instructions to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-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 deucebucket/Qwen3.5-122B-A10B-Cerebellum-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 deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS # Run inference directly in the terminal: llama cli -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS # Run inference directly in the terminal: llama cli -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
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 deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS # Run inference directly in the terminal: ./llama-cli -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
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 deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS # Run inference directly in the terminal: ./build/bin/llama-cli -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
Use Docker
docker model run hf.co/deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
- LM Studio
- Jan
- vLLM
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "deucebucket/Qwen3.5-122B-A10B-Cerebellum-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": "deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
- Ollama
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF with Ollama:
ollama run hf.co/deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
- Unsloth Desktop
- Pi
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
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": "deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF with Docker Model Runner:
docker model run hf.co/deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
- Lemonade
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
Run and chat with the model
lemonade run user.Qwen3.5-122B-A10B-Cerebellum-GGUF-IQ2_XXS
List all available models
lemonade list
- Hermes Agent
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-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 deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
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 deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS
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 "deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS" \ --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"
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 "deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS" \
--custom-provider-id llama-cpp \
--custom-compatibility openai \
--custom-text-input \
--accept-risk \
--skip-healthRun OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Qwen3.5-122B-A10B-Cerebellum
Sensitivity-guided mixed-precision quantization of Qwen/Qwen3.5-122B-A10B. 122 billion parameters, 10 billion active per token. Hybrid SSM/attention MoE architecture with 256 experts per layer, 8 active.
Compressed from 228 GB (BF16) to 32.7 GB at 2.30 bits per weight. Runs on a single RTX 3090 (24 GB VRAM + 34 GB system RAM) at 25 tokens/second.
Quantization Strategy
Single-pass from BF16 safetensors using llama.cpp llama-quantize:
- Base: IQ2_XXS across all tensors
- Promotion:
ffn_down_expselevated to Q2_K (these carry the actual expert computation) - No demotions — IQ1_S on expert weights destroys MoE routing quality
This targets the projection weights that matter most for output quality while keeping the model small enough for consumer hardware.
Benchmarks
Measured directly on this GGUF with llama.cpp on RTX 3090. The model-index metadata in this card's frontmatter mirrors these numbers.
| Benchmark | Score |
|---|---|
| Perplexity (wikitext-2, 2048 ctx) | 6.73 |
| HellaSwag | 92.04% |
| ARC-Challenge | 95.56% |
| EvalPlus HumanEval (base) | 59.8% |
| EvalPlus HumanEval+ | 54.9% |
Unquantized Qwen 3.5 122B-A10B baseline for comparison: HellaSwag ~95%, ARC ~97% (estimated from Qwen's published results on similar benchmarks). Reasoning capability is well-preserved; code generation takes the expected hit at 2-bit precision.
Recommended Settings
Temperature: 0.6 for general use, 0.0 for benchmarks and deterministic tasks.
Thinking mode: This model supports Qwen's thinking/reasoning mode. For general chat, leave it enabled. For structured tasks (benchmarks, classification, code completion), disable it:
--chat-template-kwargs '{"enable_thinking":false}' --reasoning off
Running on RTX 3090 (25 tok/s)
llama-server \
--model Qwen3.5-122B-A10B-Cerebellum.gguf \
--port 8084 \
--n-gpu-layers 48 \
--override-tensor ".*ffn_gate_exps.*=CPU,.*ffn_up_exps.*=CPU" \
--cache-type-k q4_0 \
--cache-type-v q4_0 \
--flash-attn on \
--parallel 4
This keeps KV cache and attention layers on GPU while offloading the large expert gate/up matrices to system RAM. The 10B active parameters per token means only a fraction of the 122B total moves through the GPU each forward pass.
Memory usage: ~18 GB VRAM, ~34 GB system RAM.
Hardware requirements:
- Minimum: 24 GB VRAM GPU + 40 GB RAM
- Recommended: RTX 3090/4090 + 64 GB RAM for comfortable headroom
Build History
This is the result of iterative experimentation on this architecture:
- v1 — Uniform IQ2_XXS baseline (34 GB). Functional but no targeted optimization.
- v3 — Attempted IQ1_S demotions on gate/up expert weights. PPL exploded to 8.02. Proved that MoE expert weights cannot survive sub-2-bit quantization.
- v4 (this release) — Promoted
ffn_down_expsto Q2_K, no demotions. 32.7 GB, strong reasoning scores, best balance of size and quality.
Key insight: MoE models are fragile in the opposite way from dense models. In dense architectures, FFN gate weights can be crushed freely. In MoE, the expert weights carry everything — crush those and routing falls apart.
About Cerebellum
Cerebellum is a sensitivity-guided quantization methodology. Instead of uniform compression, it measures which weight groups survive extreme quantization and which need protection, then allocates precision accordingly. The goal is making large models accessible on consumer hardware without destroying the capabilities that make them worth running.
More models: huggingface.co/deucebucket
License
Same as the base model: Apache 2.0
- Downloads last month
- 106
2-bit
Model tree for deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF
Base model
Qwen/Qwen3.5-122B-A10BEvaluation results
- normalized accuracy on AI2 Reasoning Challengetest set Local benchmark run (RTX 3090, llama.cpp)0.956
- accuracy on HellaSwagvalidation set Local benchmark run (RTX 3090, llama.cpp)0.920
- pass@1 on HumanEval+ (pass@1)test set Local benchmark run (RTX 3090, llama.cpp)0.549
- perplexity on WikiText-2 Perplexitytest set Local benchmark run (RTX 3090, llama.cpp)6.730
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama serve -hf deucebucket/Qwen3.5-122B-A10B-Cerebellum-GGUF:IQ2_XXS