Instructions to use Myric/Qwen3.6-35B-A3B-APEX-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 Myric/Qwen3.6-35B-A3B-APEX-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 Myric/Qwen3.6-35B-A3B-APEX-GGUF # Run inference directly in the terminal: llama cli -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF # Run inference directly in the terminal: llama cli -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF
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 Myric/Qwen3.6-35B-A3B-APEX-GGUF # Run inference directly in the terminal: ./llama-cli -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF
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 Myric/Qwen3.6-35B-A3B-APEX-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF
Use Docker
docker model run hf.co/Myric/Qwen3.6-35B-A3B-APEX-GGUF
- LM Studio
- Jan
- vLLM
How to use Myric/Qwen3.6-35B-A3B-APEX-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Myric/Qwen3.6-35B-A3B-APEX-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": "Myric/Qwen3.6-35B-A3B-APEX-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Myric/Qwen3.6-35B-A3B-APEX-GGUF
- Ollama
How to use Myric/Qwen3.6-35B-A3B-APEX-GGUF with Ollama:
ollama run hf.co/Myric/Qwen3.6-35B-A3B-APEX-GGUF
- Unsloth Studio
How to use Myric/Qwen3.6-35B-A3B-APEX-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 Myric/Qwen3.6-35B-A3B-APEX-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 Myric/Qwen3.6-35B-A3B-APEX-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Myric/Qwen3.6-35B-A3B-APEX-GGUF to start chatting
- Pi
How to use Myric/Qwen3.6-35B-A3B-APEX-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF
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": "Myric/Qwen3.6-35B-A3B-APEX-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Myric/Qwen3.6-35B-A3B-APEX-GGUF with Docker Model Runner:
docker model run hf.co/Myric/Qwen3.6-35B-A3B-APEX-GGUF
- Lemonade
How to use Myric/Qwen3.6-35B-A3B-APEX-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Myric/Qwen3.6-35B-A3B-APEX-GGUF
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-APEX-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use Myric/Qwen3.6-35B-A3B-APEX-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 Myric/Qwen3.6-35B-A3B-APEX-GGUF
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 Myric/Qwen3.6-35B-A3B-APEX-GGUF
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Myric/Qwen3.6-35B-A3B-APEX-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Myric/Qwen3.6-35B-A3B-APEX-GGUF
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 "Myric/Qwen3.6-35B-A3B-APEX-GGUF" \ --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"
Qwen3.6-35B-A3B — APEX GGUF (torch imatrix)
MoE-aware, mixed-precision APEX quantization of
Qwen/Qwen3.6-35B-A3B — architecturally
identical to Qwen3.5-35B-A3B (same qwen3_5_moe: 40 layers, 256 routed + 1 shared
expert, hybrid GatedDeltaNet + periodic full attention, NextN/MTP head).
The importance matrix here is generated with a PyTorch band-serialized generator
rather than llama-imatrix, for two concrete reasons on this architecture:
- llama.cpp's imatrix tool is impractical for
qwen35moe. The GatedDeltaNet linear-attention is a serial state-space recurrence; the imatrix collection callback breaks the GPU path that makes normal inference fast, so it falls back to a single CPU thread that no thread count can parallelize. - The torch generator covers the MTP/NextN head (
blk.40.*) thatllama-imatrixdoes not. On Qwen3.6 the MTP head is a full MoE decoder layer with fused experts; both the GGUF converter and the imatrix generator handle that layout.
The -torch imatrix — what it is
Qwen3.6-35B-A3B-torch.imatrix is a standard GGUF-format importance matrix
(in_sum2 + counts per tensor), bit-compatible with llama-quantize --imatrix.
Generated from the HF safetensors with a band-serialized PyTorch forward on a general
text corpus, covering all 40 transformer layers plus the NextN/MTP head.
Validation vs a reference llama.cpp imatrix
No public llama-imatrix exists for Qwen3.6 (and it is impractical to compute locally,
see above). Since the imatrix's per-channel importance is largely architecture-driven,
we validate per-tensor against
bartowski's canonical Qwen3.5 llama.cpp imatrix
(same arch):
| Metric | Value |
|---|---|
| Tensors covered (torch) | 523 (incl. 13 MTP-head tensors) |
| Per-tensor correlation (median) | 0.956 |
| Per-tensor correlation (mean) | 0.861 |
| Lowest-correlation tensors | blk.*.ssm_out.weight only |
Median 0.956 against an independently-computed imatrix of the same architecture
(different fine-tune and different calibration data) confirms the mapping/values;
the only weakly-correlated tensors are ssm_out (post-nonlinearity, does not affect
quantization quality). Torch coverage is a strict superset (only-real = []).
PPL parity (measured on Qwen3.5, same architecture)
The torch-vs-llama.cpp PPL parity was measured on the sibling Qwen3.5 (identical
qwen3_5_moe architecture): i-compact quantized with each imatrix, perplexity over
200×512-token wikitext-2 windows —
| i-compact quantized with | PPL | Δ vs bf16 |
|---|---|---|
| bf16 (reference) | 6.620 | — |
| bartowski llama.cpp imatrix | 6.756 | +2.05% |
| torch imatrix | 6.775 | +2.34% |
The torch and llama.cpp quants differ by 0.02 PPL — inside the ±0.073 error bars (statistically indistinguishable). Since Qwen3.6 shares the architecture and the torch imatrix correlates at 0.956 here, the same parity holds.
Confirmed on a diverse code-heavy corpus (HumanEval + MBPP + GSM8K + prose, 342 windows), on the sibling Qwen3.5 i-compact: bf16 2.247 · llama.cpp-imatrix 2.310 · torch-imatrix 2.318 — parity holds (Δ0.008, inside ±0.014). The imatrix records per-channel activation magnitudes, so the method is domain-agnostic.
Calibration used the diverse
calibration_datav3(prose + code + multilingual), so these quants are not domain-handicapped. The imatrix's calibration corpus is a knob: a code-weighted calibration would favor coding channels further, at a small cost elsewhere — useful if you're specializing for a single domain.
Files
Qwen3.6-35B-A3B-torch.imatrix— the PyTorch-generated importance matrix (this repo).Qwen3.6-35B-A3B-APEX-i-quality-torch.gguf(23.5 GB) — largest/highest-fidelity tier.Qwen3.6-35B-A3B-APEX-i-compact-torch.gguf(17.4 GB) — smaller, more aggressive tier.- llama.cpp reference imatrix — not re-hosted; see bartowski/Qwen_Qwen3.5-35B-A3B-GGUF.
Attribution
- Base model: Qwen — Qwen/Qwen3.6-35B-A3B.
- Reference imatrix for validation: bartowski — Qwen_Qwen3.5-35B-A3B-GGUF.
- APEX recipe & toolkit: LocalAI — localai-org/apex-quant.
- Quantization engine: llama.cpp (ggml-org).
Unofficial community quantization; not affiliated with or endorsed by Qwen.
- Downloads last month
- 2,228
We're not able to determine the quantization variants.
Model tree for Myric/Qwen3.6-35B-A3B-APEX-GGUF
Base model
Qwen/Qwen3.6-35B-A3B