Instructions to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-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 Cyronius/Qwen3.8-Flash-Next-131B-A6B-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 Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0 # Run inference directly in the terminal: llama cli -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0 # Run inference directly in the terminal: llama cli -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_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 Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_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 Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
Use Docker
docker model run hf.co/Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
- LM Studio
- Jan
- vLLM
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Cyronius/Qwen3.8-Flash-Next-131B-A6B-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": "Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
- Ollama
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF with Ollama:
ollama run hf.co/Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
- Unsloth Desktop
- Pi
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
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": "Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF with Docker Model Runner:
docker model run hf.co/Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
- Lemonade
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-131B-A6B-GGUF-Q4_0
List all available models
lemonade list
- Hermes Agent
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-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 Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_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 Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_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 "Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_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.8-Flash-Next-131B-A6B (n-gram table pruned, GGUF)
A 64.8 GB GGUF of Qwen/Qwen3.8-Flash-Next that scores at parity with the full 90 GB quant on tool-calling, GSM8K, and MMLU — 28% smaller, with zero training and zero transformer surgery. A 75.4 GB Q4_0 variant of the same cut is also available for older GPUs; see Files.
Qwen3.8-Flash-Next carries a 51B-parameter n-gram hash-embedding table (~29% of total weights): 16 independent hash heads, 8 per n-gram type (bigrams / trigrams), injected at layer 1. This model keeps 1 head of 8 per n-gram type and drops the other 14, exploiting the built-in redundancy of multi-head hashing (each n-gram is looked up several independent ways; a Bloom-filter-style safety margin). Every other tensor is copied byte-for-byte from unsloth's UD-Q3_K_XL dynamic quant, so unsloth's imatrix calibration is preserved exactly.
| Qwen3.8-Flash-Next (base) | this model | |
|---|---|---|
| total params | ~176B | ~131B |
| active / token | 6B | 6B |
| n-gram table | 51.2B (16 heads) | 6.4B (2 heads) |
| layers / experts | 48 / 512 | 48 / 512 (untouched) |
| UD-Q3_K_XL GGUF size | 90 GB | 64.8 GB |
Files
Same surgery, two different base quants. Pick by hardware, not by size.
| file | size | inherits | for |
|---|---|---|---|
qwen38-keep1-Q3KXL.gguf |
64.8 GB | unsloth UD-Q3_K_XL | the default — smallest, and the build all the benchmarks below were measured on |
qwen38-keep1-Q4_0.gguf |
75.4 GB | bartowski Q4_0 | older GPUs where Q4_0 is much faster than K-/IQ-quants — AMD gfx906 (MI50/MI60), NVIDIA Pascal (P40/P100) |
The Q4_0 build is bigger, not smaller. The n-gram table is what makes this model compact; Q4_0 simply stores every other tensor at more bits than Q3_K_XL does. You are buying throughput with VRAM. On gfx906 that trade is usually worth it — Q4_0 reaches llama.cpp's MMVQ path while K-quants and IQ4_NL fall through to a generic dequant path several times slower.
The Q4_0 build has not been separately benchmarked, and no one has yet reported running it. The surgery is byte-verbatim and structurally verified (dropped heads point at a shared all-zero row that decodes to exact zeros in Q4_0, kept heads are byte-identical to the source), but the numbers below come from the Q3_K_XL build and do not transfer. If you run it, please report back in the discussions.
Benchmarks
All rows measured on the same llama.cpp build (b10673, CUDA, A100), temp 0, same day. Tool-calling: 40 agentic cases scored on calling the right tool with the right arguments or correctly declining (schemas disjoint from anything the surgery could see — there is no training step). GSM8K-15 / MMLU-30 subsets, no-think mode. Perplexity: wikitext-2 test, 32×512-token chunks.
| model | size | tools | GSM8K | MMLU | ppl |
|---|---|---|---|---|---|
| base UD-Q3_K_XL | 90 GB | .900 | 1.000 | .833 | 2.40 |
| this model (2/16 heads) | 64.8 GB | 1.000 | 1.000 | .833 | 4.66 |
| table fully deleted (0/16) | 61.2 GB | .975 | 1.000 | .767 | 4.80 |
Tool accuracy has a ±3-case run-to-run band across hardware backends at temp 0 (a CPU control run scored the base at .975) — read "1.000 vs .900" as parity with base, not as beating it. The one real cost is perplexity: the n-gram table turns out to be a surface-level next-token predictor. Removing 87.5% of it doubles wikitext perplexity while leaving reasoning and tool use at baseline.
For calibration: both cheaper cuts were also tested and rejected. Removing transformer layers (the classic prune) collapsed this architecture without healing — GSM8K fell to 0.33–0.67 and perplexity hit 13+ at 53–60 GB. The n-gram cut is the only free lunch here.
Running it
Needs llama.cpp from 2026-08-27 or newer (qwen4exp support; b10673 tested). Vendor-recommended sampling: instruct temp 0.7, top_p 0.8, presence_penalty 1.5; thinking temp 1.0, top_p 0.95.
# fully offloaded (~66 GB+ VRAM for Q3_K_XL, ~77 GB+ for Q4_0)
llama-server -m qwen38-keep1-Q3KXL.gguf -ngl 99 -c 8192
# smaller GPUs: keep the (sparse-gather) n-gram table in system RAM
llama-server -m qwen38-keep1-Q3KXL.gguf -ngl 99 -c 8192 \
--override-tensor "per_layer_token_embd\.weight=CPU"
# CPU-only boxes work too (slow but correct), given free RAM to spare
# beyond the file size — ~70 GB for Q3_K_XL, ~80 GB for Q4_0
The --override-tensor flag matters more on the Q4_0 build: it moves the table (3.6 GB) to system RAM and leaves ~72 GB of transformer on the GPU, which is what makes 2×32 GB cards viable at all.
Text-only GGUF (vision tensors ship separately as unsloth's mmproj; the vision path is untested with this surgery). MTP speculative decoding is not available — upstream llama.cpp does not export or run the MTP head for this architecture yet.
Limitations
- Wikitext perplexity 4.66 vs 2.40 for the base: prose is measurably less "polished-autocomplete" even though task performance holds. If your workload is verbatim-recall-heavy (quotes, boilerplate reproduction), the missing table may show up.
- Evaluated on a small in-house benchmark (40 tool cases, GSM8K-15, MMLU-30) at ≤8K context. Long-context behavior (QSA sparse attention, 256K native) untested.
- The kept heads were chosen positionally (first of each 8), not by importance ranking. A calibrated head choice might do slightly better; nobody has measured.
- The Q4_0 build is unbenchmarked and, as of upload, unrun by anyone. It is structurally verified but not behaviourally verified — treat it as a build to test rather than a build to rely on until someone reports back.
How this model was made
Full write-up, surgery script, and raw result logs: github.com/Cyronius/qwen-prune-heal-pipeline (surgery_qwen38.py).
Short version: the GGUF's per-head hash-table layout is entirely metadata-driven (ple.head_offsets, ple.head_vocab_sizes), and llama.cpp reads the table's row count back from the tensor itself. Dropped heads get vocab_size = 1 pointing at a shared all-zero row, so they contribute nothing and cost one row of storage — no llama.cpp patch, no requantization, no training. The whole build is a streaming byte copy: ~45 minutes on an NVMe laptop, and the entire experimental campaign that selected this configuration cost $1.50 of A100 time.
The all-zero row works because it decodes to exact zeros in every quant type used here: an IQ4_NL block with zero bytes, and a Q4_0 block whose d scale is zero, both yield 0.0 for all 32 elements. That is what makes the same script reusable across base quants — it reads the table's type out of the source file and byte-slices accordingly, so producing the Q4_0 variant needed no code change at all.
License
qwen-community-1.0, inherited from Qwen/Qwen3.8-Flash-Next. Quantized weights derived from unsloth/Qwen3.8-Flash-Next-GGUF (Q3_K_XL build) and bartowski/Qwen3.8-Flash-Next-GGUF (Q4_0 build) — thanks to both for the calibrated quants these builds inherit byte-for-byte, imatrix work included.
- Downloads last month
- 18,391
4-bit
Model tree for Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF
Base model
Qwen/Qwen3.8-Flash-Next
docker model run hf.co/Cyronius/Qwen3.8-Flash-Next-131B-A6B-GGUF:Q4_0