Instructions to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
Use Docker
docker model run hf.co/akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
- LM Studio
- Jan
- vLLM
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-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": "akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
- Ollama
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF with Ollama:
ollama run hf.co/akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
- Unsloth Studio
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF to start chatting
- Pi
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
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": "akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF with Docker Model Runner:
docker model run hf.co/akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
- Lemonade
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
Run and chat with the model
lemonade run user.qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
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 akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0
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 "akqmffl/qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored-GGUF:Q8_0" \ --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 27B Q8_0 Native MTP Claude-Opus-Reasoning Uncensored GGUF
Important runtime requirement: to reproduce the benchmark performance for this GGUF, download and configure akqmffl/llama.cpp-lemonade-Runtime-for-qwen-3.6-MTP. Benchmark settings, release downloads, launch scripts, Lemonade integration, runtime environment variables, and supported hardware notes are maintained in that GitHub repository. Visit the GitHub README and release notes for the current setup procedure and benchmark configuration.
This repository contains a Q8_0 GGUF build of
qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored.gguf. It is intended
for the custom llama.cpp / Lemonade ROCm runtime above, especially the Windows
AMD Ryzen AI Max Series APU / RDNA 3.5 / gfx1151 path documented there.
Preserved MTPs
This GGUF preserves the Native MTP tensor set. The model file was checked at the GGUF tensor table level and contains 15 MTP-related tensors:
blk.64.attn_k.weightblk.64.attn_k_norm.weightblk.64.attn_norm.weightblk.64.attn_output.weightblk.64.attn_q.weightblk.64.attn_q_norm.weightblk.64.attn_v.weightblk.64.ffn_down.weightblk.64.ffn_gate.weightblk.64.ffn_up.weightblk.64.nextn.eh_proj.weightblk.64.nextn.enorm.weightblk.64.nextn.hnorm.weightblk.64.nextn.shared_head_norm.weightblk.64.post_attention_norm.weight
The MTP component was trained and applied using target-model-aligned MTP
distillation against the qwen3.6-27b-Claude-Opus-Reasoning-uncensored
target model. In other words, the MTP path is intended to follow the target
model's next-token distribution for speculative decoding rather than behaving
as an unrelated draft model.
Model Overview
| Item | Value |
|---|---|
| Format | GGUF v3 |
| Quantization | Q8_0 |
| File | qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored.gguf |
| File size | 27.05 GiB |
| SHA-256 | BB0A4A050D598FD88D570B326B8331B9B11767ACB10E9CC8B0B899F4C3350539 |
| Tensor count | 866 |
| Metadata KV count | 40 |
| Native MTP tensor count | 15 |
| Target alignment | Target-model-aligned MTP distillation |
| Intended runtime | Custom llama.cpp / Lemonade ROCm runtime for gfx1151 |
Abliteration Parameters
This GGUF is packaged from the
qwen3.6-27b-Claude-Opus-Reasoning-uncensored target-model line. This model
card does not claim a new ablation pass or publish separate ablation parameter
values for this GGUF. The important alignment note for this upload is that the
Native MTP component was trained against that uncensored target model by
target-model-aligned MTP distillation before being applied to the Q8_0 GGUF.
Performance
The performance-sensitive path depends on both the GGUF and the custom runtime. Use the GitHub package for exact setup and benchmark reproduction:
- Runtime and setup: akqmffl/llama.cpp-lemonade-Runtime-for-qwen-3.6-MTP
- Release page: b1294
Recorded runtime-package anchors:
| Lane | Shape | Recorded result |
|---|---|---|
| n=2 production | 128K context, 4096 generated tokens, FA off | 15.131 tok/s, 92.286% acceptance |
| n=2 reasoning off | 128K context, 4096 generated tokens, FA off | 15.413 tok/s, 93.182% acceptance |
| n=3 chat stream | 8192 context, 100 generated tokens, FA off | 18.050 tok/s, 97.333% acceptance, exact at 100 tokens |
AMD Ryzen AI Max / RDNA 3.5 / gfx1151 Q8 Baselines
The comparison set below is restricted to Qwen3.6-27B-MTP-Q8 and
Qwen3.6-27B-MTP-UD-Q8_K_XL public rows on AMD Ryzen AI Max / Strix Halo /
Radeon 8060S / RDNA 3.5 / gfx1151 class hardware that report both generation
speed and MTP draft acceptance. Non-Q8 rows are intentionally excluded from this
table.
| Source | Hardware / backend | Model and runtime | Workload | tok/s | MTP acceptance | Comparison note |
|---|---|---|---|---|---|---|
| This upload, short stream | AMD Ryzen AI Max Series APU / RDNA 3.5 / gfx1151, custom ROCm runtime |
Qwen3.6 27B Q8_0 Native MTP, n=3, FA off |
8192 context, 100 generated tokens | 18.050 | 97.333%, exact at 100 tokens | Release anchor for short interactive generation. |
| This upload, long output | AMD Ryzen AI Max Series APU / RDNA 3.5 / gfx1151, custom ROCm runtime |
Qwen3.6 27B Q8_0 Native MTP, n=2, FA off |
128K context, 4096 generated tokens | 15.413 | 93.182% | Release anchor for long 128K-context output. |
| Reddit AMD ROCm Windows PR 22673 report | Ryzen AI Max+ 395, Radeon 8060S iGPU, RDNA 3.5 gfx1151, Windows 11 ROCm |
Qwen3.6-27B-MTP-UD-Q8_K_XL.gguf, PR 22673 llama.cpp build |
128K context, q8_0 KV, thinking on, draft-MTP | 12.13 tokens/sec | 64-69% | Public same-hardware UD-Q8_K_XL row with both speed and acceptance. |
| Qiita AMD Ryzen AI MAX+ 395 Qwen3.6 MTP Q8_0 run | AMD Ryzen AI MAX+ 395 / gfx1151, llama.cpp ROCm |
Qwen3.6-27B-MTP-Q8_0.gguf, draft-MTP |
8192 context, 142 output tokens, temperature 0.7, seed 42 | 10.15 tokens/sec | 60/243 = 24.7% | Public Q8_0 same-hardware row; acceptance is much lower than this release anchor. |
A static HTML comparison view is included in
assets/amd-gfx1151-benchmark-comparison.html.
These anchors are hardware- and runtime-specific. A generic llama.cpp build may load the GGUF, but it should not be expected to match the recorded MTP throughput without the runtime package and settings documented in the GitHub repository.
Files
| File | Description |
|---|---|
qwen3.6-27b-Q8_0-MTP-Claude-Opus-Reasoning-uncensored.gguf |
Q8_0 GGUF with Native MTP preserved and target-model-aligned MTP distillation applied |
Usage
- Download the GGUF from this repository.
- Download the matching runtime package from akqmffl/llama.cpp-lemonade-Runtime-for-qwen-3.6-MTP.
- Follow the GitHub README for standalone llama.cpp or Lemonade setup.
- Use this GGUF path as the model path in the GitHub package's launch scripts or Lemonade configuration.
Reference
This model-card structure was prepared after reviewing the Hugging Face GGUF reference repository llmfan46/Qwen3.6-27B-uncensored-heretic-v2-Native-MTP-Preserved-NVFP4-GGUF. Only the structure was used; benchmark/quality metrics from that repository are not copied into this card.
License
Apache-2.0 metadata is declared to match the referenced Qwen/GGUF lineage style. Users remain responsible for verifying upstream model licensing, local deployment requirements, and acceptable-use constraints for their own environment.
- Downloads last month
- 506
8-bit