Update README.md
Browse files
README.md
CHANGED
@@ -1,65 +1,95 @@
|
|
1 |
-
---
|
2 |
-
base_model: second-state/Qwen3-30B-A3B-GGUF
|
3 |
-
license: other
|
4 |
-
license_name: qwen-research
|
5 |
-
license_link: https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/LICENSE
|
6 |
-
model_creator: Qwen
|
7 |
-
model_name: Qwen3-30B-A3B
|
8 |
-
quantized_by: Second State Inc.
|
9 |
-
---
|
10 |
-
|
11 |
-
<!-- header start -->
|
12 |
-
<!-- 200823 -->
|
13 |
-
<div style="width: auto; margin-left: auto; margin-right: auto">
|
14 |
-
<img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
15 |
-
</div>
|
16 |
-
<hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
|
17 |
-
<!-- header end -->
|
18 |
-
|
19 |
-
# Qwen3-30B-A3B-GGUF
|
20 |
-
|
21 |
-
## Original Model
|
22 |
-
|
23 |
-
[second-state/Qwen3-30B-A3B-GGUF](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF)
|
24 |
-
|
25 |
-
## Run with LlamaEdge
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
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 |
*Quantized with llama.cpp b5097*
|
|
|
1 |
+
---
|
2 |
+
base_model: second-state/Qwen3-30B-A3B-GGUF
|
3 |
+
license: other
|
4 |
+
license_name: qwen-research
|
5 |
+
license_link: https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/LICENSE
|
6 |
+
model_creator: Qwen
|
7 |
+
model_name: Qwen3-30B-A3B
|
8 |
+
quantized_by: Second State Inc.
|
9 |
+
---
|
10 |
+
|
11 |
+
<!-- header start -->
|
12 |
+
<!-- 200823 -->
|
13 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
14 |
+
<img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
15 |
+
</div>
|
16 |
+
<hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
|
17 |
+
<!-- header end -->
|
18 |
+
|
19 |
+
# Qwen3-30B-A3B-GGUF
|
20 |
+
|
21 |
+
## Original Model
|
22 |
+
|
23 |
+
[second-state/Qwen3-30B-A3B-GGUF](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF)
|
24 |
+
|
25 |
+
## Run with LlamaEdge
|
26 |
+
|
27 |
+
- LlamaEdge version:
|
28 |
+
|
29 |
+
- Thinking: [v0.17.0](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.17.0) and above
|
30 |
+
- No Thinking: [v0.18.2](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.18.2)
|
31 |
+
|
32 |
+
- Prompt template
|
33 |
+
|
34 |
+
- Prompt type: `chatml` (for thinking)
|
35 |
+
|
36 |
+
- Prompt string
|
37 |
+
|
38 |
+
```text
|
39 |
+
<|im_start|>system
|
40 |
+
{system_message}<|im_end|>
|
41 |
+
<|im_start|>user
|
42 |
+
{prompt}<|im_end|>
|
43 |
+
<|im_start|>assistant
|
44 |
+
```
|
45 |
+
|
46 |
+
- Prompt type: `qwen3-no-think` (for no thinking)
|
47 |
+
|
48 |
+
- Prompt string
|
49 |
+
|
50 |
+
```text
|
51 |
+
<|im_start|>system
|
52 |
+
{system_message}<|im_end|>
|
53 |
+
<|im_start|>user
|
54 |
+
{user_message_1}<|im_end|>
|
55 |
+
<|im_start|>assistant
|
56 |
+
{assistant_message_1}<|im_end|>
|
57 |
+
<|im_start|>user
|
58 |
+
{user_message_2}<|im_end|>
|
59 |
+
<|im_start|>assistant
|
60 |
+
<think>
|
61 |
+
|
62 |
+
</think>
|
63 |
+
```
|
64 |
+
|
65 |
+
- Context size: `128000`
|
66 |
+
|
67 |
+
- Run as LlamaEdge service
|
68 |
+
|
69 |
+
```bash
|
70 |
+
wasmedge --dir .:. --nn-preload default:GGML:AUTO:Qwen3-30B-A3B-Q5_K_M.gguf \
|
71 |
+
llama-api-server.wasm \
|
72 |
+
--model-name Qwen3-30B-A3B \
|
73 |
+
--prompt-template chatml \
|
74 |
+
--ctx-size 128000
|
75 |
+
```
|
76 |
+
|
77 |
+
<!-- ## Quantized GGUF Models
|
78 |
+
|
79 |
+
| Name | Quant method | Bits | Size | Use case |
|
80 |
+
| ---- | ---- | ---- | ---- | ----- |
|
81 |
+
| [Qwen3-30B-A3B-Q2_K.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q2_K.gguf) | Q2_K | 2 | 3.28 GB| smallest, significant quality loss - not recommended for most purposes |
|
82 |
+
| [Qwen3-30B-A3B-Q3_K_L.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q3_K_L.gguf) | Q3_K_L | 3 | 4.43 GB| small, substantial quality loss |
|
83 |
+
| [Qwen3-30B-A3B-Q3_K_M.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q3_K_M.gguf) | Q3_K_M | 3 | 4.12 GB| very small, high quality loss |
|
84 |
+
| [Qwen3-30B-A3B-Q3_K_S.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q3_K_S.gguf) | Q3_K_S | 3 | 3.77 GB| very small, high quality loss |
|
85 |
+
| [Qwen3-30B-A3B-Q4_0.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q4_0.gguf) | Q4_0 | 4 | 4.77 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
|
86 |
+
| [Qwen3-30B-A3B-Q4_K_M.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q4_K_M.gguf) | Q4_K_M | 4 | 5.03 GB| medium, balanced quality - recommended |
|
87 |
+
| [Qwen3-30B-A3B-Q4_K_S.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q4_K_S.gguf) | Q4_K_S | 4 | 4.80 GB| small, greater quality loss |
|
88 |
+
| [Qwen3-30B-A3B-Q5_0.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q5_0.gguf) | Q5_0 | 5 | 5.72 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
|
89 |
+
| [Qwen3-30B-A3B-Q5_K_M.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q5_K_M.gguf) | Q5_K_M | 5 | 5.85 GB| large, very low quality loss - recommended |
|
90 |
+
| [Qwen3-30B-A3B-Q5_K_S.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q5_K_S.gguf) | Q5_K_S | 5 | 5.72 GB| large, low quality loss - recommended |
|
91 |
+
| [Qwen3-30B-A3B-Q6_K.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q6_K.gguf) | Q6_K | 6 | 6.73 GB| very large, extremely low quality loss |
|
92 |
+
| [Qwen3-30B-A3B-Q8_0.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-Q8_0.gguf) | Q8_0 | 8 | 8.71 GB| very large, extremely low quality loss - not recommended |
|
93 |
+
| [Qwen3-30B-A3B-f16.gguf](https://huggingface.co/second-state/Qwen3-30B-A3B-GGUF/blob/main/Qwen3-30B-A3B-f16.gguf) | f16 | 16 | 16.4 GB| | -->
|
94 |
+
|
95 |
*Quantized with llama.cpp b5097*
|