voidstream commited on
Commit
4aee424
·
verified ·
1 Parent(s): 14e4162

Add native GGUF HXQ_AFFINE_6 section to model card

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -182,3 +182,17 @@ Same codec, same `pip install`, multiple architectures:
182
  ## License
183
 
184
  Apache 2.0 (inherited from [Qwen/Qwen2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct)).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  ## License
183
 
184
  Apache 2.0 (inherited from [Qwen/Qwen2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct)).
185
+
186
+
187
+ ## Native GGUF (llama.cpp)
188
+
189
+ A native GGUF HXQ_AFFINE_6 quantization is also available in this repo:
190
+
191
+ - **File:** `qwen2.5-3b-instruct-hxq-affine6.gguf` (2.3 GB, 6.28 bpw)
192
+ - **Source:** Clean F16 → HXQ single-pass quantization (no double-quant)
193
+ - **Compatibility:** Requires llama.cpp HXQ fork (`hxq-affine-type` branch)
194
+
195
+ ```bash
196
+ # With llama.cpp (HXQ fork)
197
+ ./llama-cli -m qwen2.5-3b-instruct-hxq-affine6.gguf -p "Hello:" -n 128
198
+ ```