schuttdev commited on
Commit
b1790c8
·
verified ·
1 Parent(s): 5093b42

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: Qwen/Qwen3.5-2B
4
+ tags:
5
+ - hipfire
6
+ - amd
7
+ - rdna
8
+ - quantized
9
+ - qwen3.5
10
+ library_name: hipfire
11
+ ---
12
+
13
+ # Qwen3.5-2B for hipfire
14
+
15
+ Pre-quantized **Qwen3.5-2B** (DeltaNet hybrid) for [hipfire](https://github.com/Kaden-Schutt/hipfire), a Rust-native LLM inference engine for AMD RDNA GPUs.
16
+
17
+ Quantized from [Qwen/Qwen3.5-2B](https://huggingface.co/Qwen/Qwen3.5-2B).
18
+
19
+ ## Files
20
+
21
+ | File | Quant | Size | Min VRAM | Speed (5700 XT) |
22
+ |------|-------|------|----------|-----------------|
23
+ | qwen3.5-2b.q4.hfq | HFQ4 | 1.2GB | 2GB | 141 tok/s |
24
+ | qwen3.5-2b.hfq6.hfq | HFQ6 | 1.6GB | 3GB | 127 tok/s |
25
+
26
+ ## Usage
27
+
28
+ ```bash
29
+ # Install hipfire
30
+ curl -L https://raw.githubusercontent.com/Kaden-Schutt/hipfire/master/scripts/install.sh | bash
31
+
32
+ # Pull and run
33
+ hipfire pull qwen3.5:2b
34
+ hipfire run qwen3.5:2b "Hello"
35
+ ```
36
+
37
+ ## Quantization Formats
38
+
39
+ - **HFQ4**: 4-bit, 256-weight groups (0.53 B/w). Best speed.
40
+ - **HFQ6**: 6-bit, 256-weight groups (0.78 B/w). Best quality. ~15% slower.
41
+
42
+ Both include embedded tokenizer and model config.
43
+
44
+ ## About hipfire
45
+
46
+ Rust + HIP inference engine for AMD consumer GPUs (RDNA1–RDNA4). No Python in the hot path. 9x faster than llama.cpp+ROCm on the same hardware.
47
+
48
+ - GitHub: [Kaden-Schutt/hipfire](https://github.com/Kaden-Schutt/hipfire)
49
+ - All models: [docs/MODELS.md](https://github.com/Kaden-Schutt/hipfire/blob/master/docs/MODELS.md)
50
+
51
+ ## License
52
+
53
+ Model weights subject to original [Qwen license](https://huggingface.co/Qwen/Qwen3.5-2B). hipfire engine: MIT.