Text Generation
GGUF
English
Spanish
Chinese
qwen
qwen3.8
27b
q4_k_m
mtp
nextn
llama.cpp
ollama
quantized
conversational
Instructions to use Terathox-Coder/Qwen3.8-27B-MTP-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 Terathox-Coder/Qwen3.8-27B-MTP-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 Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
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 Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
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 Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Terathox-Coder/Qwen3.8-27B-MTP-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Terathox-Coder/Qwen3.8-27B-MTP-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": "Terathox-Coder/Qwen3.8-27B-MTP-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
- Ollama
How to use Terathox-Coder/Qwen3.8-27B-MTP-GGUF with Ollama:
ollama run hf.co/Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
- Unsloth Studio
How to use Terathox-Coder/Qwen3.8-27B-MTP-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 Terathox-Coder/Qwen3.8-27B-MTP-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 Terathox-Coder/Qwen3.8-27B-MTP-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Terathox-Coder/Qwen3.8-27B-MTP-GGUF to start chatting
- Pi
How to use Terathox-Coder/Qwen3.8-27B-MTP-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
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": "Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Terathox-Coder/Qwen3.8-27B-MTP-GGUF with Docker Model Runner:
docker model run hf.co/Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
- Lemonade
How to use Terathox-Coder/Qwen3.8-27B-MTP-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.8-27B-MTP-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Terathox-Coder/Qwen3.8-27B-MTP-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 Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
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 Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Terathox-Coder/Qwen3.8-27B-MTP-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M
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 "Terathox-Coder/Qwen3.8-27B-MTP-GGUF:Q4_K_M" \ --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"
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,207 +1,282 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
-
- en
|
| 5 |
-
- es
|
| 6 |
-
|
| 7 |
-
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
-
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
-
# Model Card for Model ID
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
## Model Details
|
| 21 |
-
|
| 22 |
-
### Model Description
|
| 23 |
-
|
| 24 |
-
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
|
|
|
|
| 26 |
|
|
|
|
| 27 |
|
| 28 |
-
|
| 29 |
-
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
-
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
-
- **Model type:** [More Information Needed]
|
| 32 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
-
- **License:** [More Information Needed]
|
| 34 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
|
| 36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
-
|
| 39 |
|
| 40 |
-
|
| 41 |
-
-
|
| 42 |
-
|
| 43 |
|
| 44 |
-
##
|
| 45 |
|
| 46 |
-
|
| 47 |
|
| 48 |
-
|
| 49 |
|
| 50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
-
|
| 53 |
|
| 54 |
-
|
| 55 |
|
| 56 |
-
|
| 57 |
|
| 58 |
-
|
| 59 |
|
| 60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
|
| 62 |
-
|
| 63 |
|
| 64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
-
##
|
| 67 |
|
| 68 |
-
|
| 69 |
|
| 70 |
-
|
| 71 |
|
| 72 |
-
|
|
|
|
|
|
|
| 73 |
|
| 74 |
-
|
| 75 |
|
| 76 |
-
|
|
|
|
|
|
|
| 77 |
|
| 78 |
-
|
| 79 |
|
| 80 |
-
|
|
|
|
|
|
|
| 81 |
|
| 82 |
-
|
| 83 |
|
| 84 |
-
|
| 85 |
|
| 86 |
-
|
|
|
|
|
|
|
| 87 |
|
| 88 |
-
|
| 89 |
|
| 90 |
-
|
| 91 |
|
| 92 |
-
##
|
| 93 |
|
| 94 |
-
|
| 95 |
|
| 96 |
-
|
|
|
|
|
|
|
| 97 |
|
| 98 |
-
|
| 99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 100 |
|
| 101 |
-
|
| 102 |
|
| 103 |
-
|
| 104 |
|
| 105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
|
| 107 |
-
|
| 108 |
|
| 109 |
-
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
-
##
|
| 112 |
|
| 113 |
-
|
| 114 |
|
| 115 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
|
| 117 |
-
|
| 118 |
|
| 119 |
-
|
|
|
|
|
|
|
| 120 |
|
| 121 |
-
|
| 122 |
|
| 123 |
-
|
|
|
|
|
|
|
| 124 |
|
| 125 |
-
|
| 126 |
|
| 127 |
-
|
| 128 |
|
| 129 |
-
##
|
| 130 |
|
| 131 |
-
|
| 132 |
|
| 133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
|
| 135 |
-
##
|
| 136 |
|
| 137 |
-
|
| 138 |
|
| 139 |
-
|
| 140 |
|
|
|
|
| 141 |
|
|
|
|
| 142 |
|
| 143 |
-
|
| 144 |
|
| 145 |
-
|
| 146 |
|
| 147 |
-
|
| 148 |
|
| 149 |
-
|
| 150 |
|
| 151 |
-
|
| 152 |
|
| 153 |
-
|
| 154 |
|
| 155 |
-
|
| 156 |
-
- **Hours used:** [More Information Needed]
|
| 157 |
-
- **Cloud Provider:** [More Information Needed]
|
| 158 |
-
- **Compute Region:** [More Information Needed]
|
| 159 |
-
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
|
| 161 |
-
|
|
|
|
|
|
|
| 162 |
|
| 163 |
-
|
| 164 |
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
|
| 167 |
-
##
|
| 168 |
|
| 169 |
-
|
| 170 |
|
| 171 |
-
|
| 172 |
|
| 173 |
-
|
| 174 |
|
| 175 |
-
|
| 176 |
|
| 177 |
-
|
| 178 |
|
| 179 |
-
|
| 180 |
|
| 181 |
-
|
| 182 |
|
| 183 |
-
**
|
| 184 |
|
| 185 |
-
|
| 186 |
|
| 187 |
-
|
|
|
|
|
|
|
| 188 |
|
| 189 |
-
|
| 190 |
|
| 191 |
-
|
|
|
|
|
|
|
| 192 |
|
| 193 |
-
|
| 194 |
|
| 195 |
-
|
| 196 |
|
| 197 |
-
##
|
| 198 |
|
| 199 |
-
|
| 200 |
|
| 201 |
-
|
| 202 |
|
| 203 |
-
|
| 204 |
|
| 205 |
-
|
| 206 |
|
| 207 |
-
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
+
- en
|
| 5 |
+
- es
|
| 6 |
+
- zh
|
| 7 |
+
base_model: Qwen/Qwen3.8-27B
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
+
- gguf
|
| 11 |
+
- qwen
|
| 12 |
+
- qwen3.8
|
| 13 |
+
- 27b
|
| 14 |
+
- q4_k_m
|
| 15 |
+
- mtp
|
| 16 |
+
- nextn
|
| 17 |
+
- llama.cpp
|
| 18 |
+
- ollama
|
| 19 |
+
- quantized
|
| 20 |
+
- conversational
|
| 21 |
---
|
|
|
|
| 22 |
|
| 23 |
+
# Qwen3.8-27B MTP GGUF — Q4_K_M
|
| 24 |
|
| 25 |
+
Community **GGUF Q4_K_M quantization of `Qwen/Qwen3.8-27B` with the original MTP / NextN tensors preserved**.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
This repository contains a format conversion and quantization of the original Qwen3.8-27B checkpoint.
|
| 28 |
|
| 29 |
+
**No fine-tuning or additional training has been performed.**
|
| 30 |
|
| 31 |
+
## Model Details
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
+
| Property | Value |
|
| 34 |
+
| ------------ | ------------------ |
|
| 35 |
+
| Base model | `Qwen/Qwen3.8-27B` |
|
| 36 |
+
| Parameters | 27B |
|
| 37 |
+
| Quantization | `Q4_K_M` |
|
| 38 |
+
| Format | GGUF |
|
| 39 |
+
| MTP / NextN | Preserved |
|
| 40 |
+
| File size | ~16.8 GB |
|
| 41 |
+
| Conversion | `llama.cpp` |
|
| 42 |
+
| License | Apache-2.0 |
|
| 43 |
|
| 44 |
+
### Available File
|
| 45 |
|
| 46 |
+
```text
|
| 47 |
+
Qwen3.8-27B-Q4_K_M-MTP.gguf
|
| 48 |
+
```
|
| 49 |
|
| 50 |
+
## MTP / NextN
|
| 51 |
|
| 52 |
+
The original Qwen3.8-27B checkpoint contains Multi-Token Prediction / NextN tensors.
|
| 53 |
|
| 54 |
+
During conversion:
|
| 55 |
|
| 56 |
+
```text
|
| 57 |
+
MTP enabled: 866 tensors
|
| 58 |
+
NextN disabled: 851 tensors
|
| 59 |
+
Difference: 15 MTP tensors
|
| 60 |
+
```
|
| 61 |
|
| 62 |
+
The 15 additional `mtp.*` tensors were intentionally preserved in this GGUF.
|
| 63 |
|
| 64 |
+
The current `llama.cpp` converter recognized the MTP export path and correctly mapped the NextN tensors into the additional model block.
|
| 65 |
|
| 66 |
+
## llama.cpp Validation
|
| 67 |
|
| 68 |
+
The resulting Q4_K_M GGUF was successfully loaded and executed with `llama.cpp` using:
|
| 69 |
|
| 70 |
+
```bash
|
| 71 |
+
llama-cli \
|
| 72 |
+
-m Qwen3.8-27B-Q4_K_M-MTP.gguf \
|
| 73 |
+
--spec-type draft-mtp
|
| 74 |
+
```
|
| 75 |
|
| 76 |
+
The runtime successfully:
|
| 77 |
|
| 78 |
+
* loaded the GGUF;
|
| 79 |
+
* recognized the model architecture;
|
| 80 |
+
* recognized the embedded MTP / NextN tensors;
|
| 81 |
+
* constructed the main and MTP graphs;
|
| 82 |
+
* processed the prompt;
|
| 83 |
+
* generated output through the MTP-compatible runtime path.
|
| 84 |
|
| 85 |
+
## Ollama
|
| 86 |
|
| 87 |
+
The GGUF has also been successfully imported and executed with **Ollama 0.32.9**.
|
| 88 |
|
| 89 |
+
Minimal `Modelfile`:
|
| 90 |
|
| 91 |
+
```text
|
| 92 |
+
FROM ./Qwen3.8-27B-Q4_K_M-MTP.gguf
|
| 93 |
+
```
|
| 94 |
|
| 95 |
+
Create:
|
| 96 |
|
| 97 |
+
```bash
|
| 98 |
+
ollama create qwen3.8:27b-mtp-q4_K_M -f Modelfile
|
| 99 |
+
```
|
| 100 |
|
| 101 |
+
Run:
|
| 102 |
|
| 103 |
+
```bash
|
| 104 |
+
ollama run qwen3.8:27b-mtp-q4_K_M
|
| 105 |
+
```
|
| 106 |
|
| 107 |
+
### MTP Configuration
|
| 108 |
|
| 109 |
+
For runtimes that expose MTP speculative decoding, the local TERATHOX configuration uses:
|
| 110 |
|
| 111 |
+
```text
|
| 112 |
+
draft_num_predict = 4
|
| 113 |
+
```
|
| 114 |
|
| 115 |
+
Note that **loading a GGUF containing MTP tensors does not by itself guarantee that a runtime is actively using speculative MTP decoding**.
|
| 116 |
|
| 117 |
+
Users should verify MTP support and configuration for their specific runtime version.
|
| 118 |
|
| 119 |
+
## Local TERATHOX Deployment
|
| 120 |
|
| 121 |
+
This quantization has been tested locally under the alias:
|
| 122 |
|
| 123 |
+
```text
|
| 124 |
+
Terathox-Coder:Nova
|
| 125 |
+
```
|
| 126 |
|
| 127 |
+
### Hardware
|
| 128 |
|
| 129 |
+
```text
|
| 130 |
+
NVIDIA GeForce RTX 5080 16 GB
|
| 131 |
+
NVIDIA GeForce RTX 4070 12 GB
|
| 132 |
+
NVIDIA GeForce RTX 4070 12 GB
|
| 133 |
+
```
|
| 134 |
|
| 135 |
+
Three GPUs were used for the local validation.
|
| 136 |
|
| 137 |
+
### Ollama Runtime Configuration
|
| 138 |
|
| 139 |
+
```text
|
| 140 |
+
Context: 204800
|
| 141 |
+
OLLAMA_FLASH_ATTENTION: 1
|
| 142 |
+
OLLAMA_VULKAN: false
|
| 143 |
+
OLLAMA_KV_CACHE_TYPE: q4_0
|
| 144 |
+
OLLAMA_SCHED_SPREAD: false
|
| 145 |
+
OLLAMA_GPU_OVERHEAD: 0
|
| 146 |
+
OLLAMA_NUM_PARALLEL: 1
|
| 147 |
+
OLLAMA_MAX_LOADED_MODELS: 1
|
| 148 |
+
OLLAMA_KEEP_ALIVE: -1
|
| 149 |
+
draft_num_predict: 4
|
| 150 |
+
```
|
| 151 |
|
| 152 |
+
Observed status:
|
| 153 |
|
| 154 |
+
```text
|
| 155 |
+
NAME SIZE PROCESSOR CONTEXT
|
| 156 |
+
Terathox-Coder:Nova 24 GB 100% GPU 204800
|
| 157 |
+
```
|
| 158 |
|
| 159 |
+
## Local Performance
|
| 160 |
|
| 161 |
+
Observed interactive generation performance:
|
| 162 |
|
| 163 |
+
| Run | Eval rate |
|
| 164 |
+
| --- | ----------: |
|
| 165 |
+
| 1 | 49.90 tok/s |
|
| 166 |
+
| 2 | 49.52 tok/s |
|
| 167 |
+
| 3 | 54.18 tok/s |
|
| 168 |
+
| 4 | 49.32 tok/s |
|
| 169 |
|
| 170 |
+
Typical observed generation range:
|
| 171 |
|
| 172 |
+
```text
|
| 173 |
+
~49–54 tokens/s
|
| 174 |
+
```
|
| 175 |
|
| 176 |
+
Prompt evaluation varied depending on conversation state and cached context, reaching values from approximately:
|
| 177 |
|
| 178 |
+
```text
|
| 179 |
+
51 tok/s → 263 tok/s
|
| 180 |
+
```
|
| 181 |
|
| 182 |
+
These are **local hardware measurements and not standardized model benchmarks**.
|
| 183 |
|
| 184 |
+
Performance depends on hardware, context size, GPU offload, KV-cache configuration, runtime version and MTP implementation.
|
| 185 |
|
| 186 |
+
## Intended Use
|
| 187 |
|
| 188 |
+
This GGUF is intended for:
|
| 189 |
|
| 190 |
+
* local text generation;
|
| 191 |
+
* coding and software engineering;
|
| 192 |
+
* agentic coding workflows;
|
| 193 |
+
* technical reasoning;
|
| 194 |
+
* long-context workloads;
|
| 195 |
+
* experimentation with MTP / NextN speculative decoding;
|
| 196 |
+
* local inference with `llama.cpp` or compatible GGUF runtimes.
|
| 197 |
|
| 198 |
+
## Limitations
|
| 199 |
|
| 200 |
+
This is a quantized derivative of the original model.
|
| 201 |
|
| 202 |
+
`Q4_K_M` significantly reduces memory requirements but may introduce some quality degradation compared with the original BF16 checkpoint.
|
| 203 |
|
| 204 |
+
The base model may also produce inaccurate, biased or hallucinated information. Outputs should be independently verified for high-impact or safety-critical use cases.
|
| 205 |
|
| 206 |
+
## Vision / Multimodal Support
|
| 207 |
|
| 208 |
+
The original Qwen3.8-27B model includes multimodal capabilities.
|
| 209 |
|
| 210 |
+
**This repository currently provides the GGUF language-model artifact only.**
|
| 211 |
|
| 212 |
+
No independently validated multimodal projector (`mmproj`) is currently included in this repository.
|
| 213 |
|
| 214 |
+
Therefore this release should currently be considered **text-oriented unless an appropriate multimodal projector is added and validated**.
|
| 215 |
|
| 216 |
+
## Training
|
| 217 |
|
| 218 |
+
No training or fine-tuning was performed for this repository.
|
| 219 |
|
| 220 |
+
The original weights come from:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 221 |
|
| 222 |
+
```text
|
| 223 |
+
Qwen/Qwen3.8-27B
|
| 224 |
+
```
|
| 225 |
|
| 226 |
+
This repository only performs:
|
| 227 |
|
| 228 |
+
```text
|
| 229 |
+
Original checkpoint
|
| 230 |
+
↓
|
| 231 |
+
GGUF BF16 with MTP preserved
|
| 232 |
+
↓
|
| 233 |
+
Q4_K_M quantization
|
| 234 |
+
↓
|
| 235 |
+
Qwen3.8-27B-Q4_K_M-MTP.gguf
|
| 236 |
+
```
|
| 237 |
|
| 238 |
+
## Datasets
|
| 239 |
|
| 240 |
+
No additional dataset was used.
|
| 241 |
|
| 242 |
+
This repository does not contain a fine-tuned model.
|
| 243 |
|
| 244 |
+
## Evaluation
|
| 245 |
|
| 246 |
+
No standardized quality benchmark was performed specifically on this quantization at the time of publication.
|
| 247 |
|
| 248 |
+
The performance results above measure **local inference throughput only** and should not be interpreted as accuracy or capability benchmarks.
|
| 249 |
|
| 250 |
+
For official capability benchmarks, refer to the original `Qwen/Qwen3.8-27B` model card.
|
| 251 |
|
| 252 |
+
## Attribution
|
| 253 |
|
| 254 |
+
Original foundation model developed by the **Qwen Team**.
|
| 255 |
|
| 256 |
+
Base model:
|
| 257 |
|
| 258 |
+
```text
|
| 259 |
+
Qwen/Qwen3.8-27B
|
| 260 |
+
```
|
| 261 |
|
| 262 |
+
GGUF conversion and Q4_K_M quantization:
|
| 263 |
|
| 264 |
+
```text
|
| 265 |
+
Terathox-Coder
|
| 266 |
+
```
|
| 267 |
|
| 268 |
+
The original MTP / NextN tensors were preserved during conversion.
|
| 269 |
|
| 270 |
+
**TERATHOX does not claim authorship or training of the original Qwen foundation model.**
|
| 271 |
|
| 272 |
+
## License
|
| 273 |
|
| 274 |
+
This repository follows the **Apache License 2.0** of the base model.
|
| 275 |
|
| 276 |
+
Please review the original Qwen3.8-27B repository and license for additional information.
|
| 277 |
|
| 278 |
+
## Disclaimer
|
| 279 |
|
| 280 |
+
This is a **community conversion** and is not an official Qwen release.
|
| 281 |
|
| 282 |
+
Compatibility, performance and MTP behavior may vary between versions of `llama.cpp`, Ollama and other GGUF runtimes.
|