Instructions to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP 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 dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP 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 dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0 # Run inference directly in the terminal: llama cli -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0 # Run inference directly in the terminal: llama cli -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP: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 dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP: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 dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
Use Docker
docker model run hf.co/dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
- LM Studio
- Jan
- vLLM
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
- Ollama
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with Ollama:
ollama run hf.co/dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
- Unsloth Desktop
- Pi
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_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": "dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with Docker Model Runner:
docker model run hf.co/dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
- Lemonade
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
Run and chat with the model
lemonade run user.Qwen3.5-4B-Q8_0-FlashNgram-MTP-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP: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 dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP: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 "dburner/Qwen3.5-4B-Q8_0-FlashNgram-MTP: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"
Add merge validation report
Browse files
Qwen3.5-4B-Q8_0-FlashNgram-MTP.gguf.report.json
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base": "S:\\Proiecte\\qwen-mash\\models\\qwen35-4b-mtp\\Qwen3.5-4B-Q8_0.gguf",
|
| 3 |
+
"base_validation": {
|
| 4 |
+
"architecture": "qwen35",
|
| 5 |
+
"backbone_block_count": 32,
|
| 6 |
+
"block_indices": [
|
| 7 |
+
0,
|
| 8 |
+
1,
|
| 9 |
+
2,
|
| 10 |
+
3,
|
| 11 |
+
4,
|
| 12 |
+
5,
|
| 13 |
+
6,
|
| 14 |
+
7,
|
| 15 |
+
8,
|
| 16 |
+
9,
|
| 17 |
+
10,
|
| 18 |
+
11,
|
| 19 |
+
12,
|
| 20 |
+
13,
|
| 21 |
+
14,
|
| 22 |
+
15,
|
| 23 |
+
16,
|
| 24 |
+
17,
|
| 25 |
+
18,
|
| 26 |
+
19,
|
| 27 |
+
20,
|
| 28 |
+
21,
|
| 29 |
+
22,
|
| 30 |
+
23,
|
| 31 |
+
24,
|
| 32 |
+
25,
|
| 33 |
+
26,
|
| 34 |
+
27,
|
| 35 |
+
28,
|
| 36 |
+
29,
|
| 37 |
+
30,
|
| 38 |
+
31,
|
| 39 |
+
32
|
| 40 |
+
],
|
| 41 |
+
"hidden_size": 2560,
|
| 42 |
+
"metadata_block_count": 33,
|
| 43 |
+
"mtp_present": true,
|
| 44 |
+
"q8_tensor_count": 257,
|
| 45 |
+
"required_q8_tensors": {
|
| 46 |
+
"blk.0.attn_qkv.weight": 8,
|
| 47 |
+
"blk.0.ffn_gate.weight": 8
|
| 48 |
+
},
|
| 49 |
+
"tensor_count": 441
|
| 50 |
+
},
|
| 51 |
+
"composition": "base tensors + per_layer_token_embd.weight only",
|
| 52 |
+
"dry_run": false,
|
| 53 |
+
"flash_validation": {
|
| 54 |
+
"ignored_incompatible_ple_tensor_count": 6,
|
| 55 |
+
"ignored_incompatible_ple_tensor_names": [
|
| 56 |
+
"blk.1.ple_conv1d.weight",
|
| 57 |
+
"blk.1.ple_key.weight",
|
| 58 |
+
"blk.1.ple_norm_conv.weight",
|
| 59 |
+
"blk.1.ple_norm_key.weight",
|
| 60 |
+
"blk.1.ple_norm_query.weight",
|
| 61 |
+
"blk.1.ple_value.weight"
|
| 62 |
+
],
|
| 63 |
+
"metadata_source": "S:\\Proiecte\\qwen-mash\\models\\flash-next\\UD-Q3_K_XL\\Qwen3.8-Flash-Next-UD-Q3_K_XL-00001-of-00003.gguf",
|
| 64 |
+
"table": {
|
| 65 |
+
"ggml_type": 20,
|
| 66 |
+
"name": "per_layer_token_embd.weight",
|
| 67 |
+
"payload_bytes": 28800138240,
|
| 68 |
+
"shape": [
|
| 69 |
+
160,
|
| 70 |
+
320001536
|
| 71 |
+
]
|
| 72 |
+
},
|
| 73 |
+
"table_source": "S:\\Proiecte\\qwen-mash\\models\\flash-next\\UD-Q3_K_XL\\Qwen3.8-Flash-Next-UD-Q3_K_XL-00002-of-00003.gguf",
|
| 74 |
+
"tokenizer": {
|
| 75 |
+
"base": {
|
| 76 |
+
"bos_token_id": 248044,
|
| 77 |
+
"eos_token_id": 248046,
|
| 78 |
+
"vocab_size": 248320
|
| 79 |
+
},
|
| 80 |
+
"flash": {
|
| 81 |
+
"bos_token_id": 248044,
|
| 82 |
+
"eos_token_id": 248046,
|
| 83 |
+
"ple_eos_token_id": 248044,
|
| 84 |
+
"vocab_size": 248320
|
| 85 |
+
}
|
| 86 |
+
}
|
| 87 |
+
},
|
| 88 |
+
"metadata_added": [
|
| 89 |
+
"qwen35.ple.layers",
|
| 90 |
+
"qwen35.ple.ngram_size",
|
| 91 |
+
"qwen35.ple.heads_per_ngram",
|
| 92 |
+
"qwen35.ple.conv_kernel",
|
| 93 |
+
"qwen35.ple.eos_token_id",
|
| 94 |
+
"qwen35.embedding_length_per_layer_input",
|
| 95 |
+
"qwen35.ple.layer_multipliers",
|
| 96 |
+
"qwen35.ple.head_offsets",
|
| 97 |
+
"qwen35.ple.head_vocab_sizes",
|
| 98 |
+
"qwen35.ple.image_token_id",
|
| 99 |
+
"qwen35.ngram.gate",
|
| 100 |
+
"qwen35.ngram.layer",
|
| 101 |
+
"qwen35.ngram.source_architecture"
|
| 102 |
+
],
|
| 103 |
+
"output": "S:\\Proiecte\\qwen-mash\\models\\qwen35-4b-mtp\\Qwen3.5-4B-Q8_0-FlashNgram-MTP.gguf",
|
| 104 |
+
"output_bytes": 33410719936,
|
| 105 |
+
"output_bytes_estimate": 33410719936,
|
| 106 |
+
"output_data_start": 10970304,
|
| 107 |
+
"split": {
|
| 108 |
+
"count": 3,
|
| 109 |
+
"indices": [
|
| 110 |
+
1,
|
| 111 |
+
2,
|
| 112 |
+
3
|
| 113 |
+
],
|
| 114 |
+
"stem": "Qwen3.8-Flash-Next-UD-Q3_K_XL"
|
| 115 |
+
}
|
| 116 |
+
}
|