Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Qwen/Qwen3.8-27B
|
| 5 |
+
tags:
|
| 6 |
+
- autoround
|
| 7 |
+
- llm-compressor
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
<div align="center">
|
| 11 |
+
<img
|
| 12 |
+
src="https://cdn-uploads.huggingface.co/production/uploads/64b93e6bd6c468ac7536607e/mj6xac74jHGLqymiovObc.png"
|
| 13 |
+
alt="The Kaitchup -- AI on a Budget"
|
| 14 |
+
style="width: 100%; max-width: 100%; height: auto; display: inline-block; margin-bottom: 0.5em; margin-top: 0.5em;"
|
| 15 |
+
/>
|
| 16 |
+
<div style="display: flex; justify-content: center; gap: 0.5em; margin-bottom: 1em;">
|
| 17 |
+
<a href="https://kaitchup.substack.com/subscribe"><strong>Subscribe and Support</strong></a>
|
| 18 |
+
</div>
|
| 19 |
+
</div>
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
This is [Qwen/Qwen3.8-27B](https://huggingface.co/Qwen/Qwen3.8-27B) quantized with [AutoRound](https://github.com/intel/auto-round). Model packed by [llm-compressor](https://github.com/vllm-project/llm-compressor).
|
| 24 |
+
|
| 25 |
+
Quantization ("compact" settings):
|
| 26 |
+
* INT data types
|
| 27 |
+
* ~2.8 bits for linear layers
|
| 28 |
+
* 6-bit LM head
|
| 29 |
+
* BF16 MTP layers
|
| 30 |
+
* 8-bit activations
|
| 31 |
+
|
| 32 |
+
The model is compatible with vLLM (tested: v0.26+). Made and Tested with an RTX Pro 6000 (Google Colab's G4).
|
| 33 |
+
Currently under evaluation: [Subscribe](https://kaitchup.substack.com/subscribe) to be notified when I publish the results.
|
| 34 |
+
|
| 35 |
+
- **Made by:** [The Kaitchup](https://kaitchup.substack.com/)
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
## Instructions
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
```
|
| 42 |
+
vllm serve [this_model_id] \
|
| 43 |
+
--tensor-parallel-size 1 \
|
| 44 |
+
--enable-auto-tool-choice \
|
| 45 |
+
--tool-call-parser qwen3_coder \
|
| 46 |
+
--reasoning-parser qwen3
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
Add --speculative-config '{"method":"mtp","num_speculative_tokens":X}' for MTP, where good values for X are between 2 and 6 (depending on your tasks and concurrency).
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
|
| 57 |
+
|