palmfuture commited on
Commit
7e5600f
·
verified ·
1 Parent(s): b1ea1b2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3.6-35B-A3B
4
+ tags:
5
+ - qwen3_5_moe
6
+ - gptq
7
+ - 4bit
8
+ - quantized
9
+ library_name: transformers
10
+ pipeline_tag: image-text-to-text
11
+ quantized_by: palmfuture
12
+ ---
13
+
14
+ # Qwen3.6-35B-A3B-GPTQ-Int4
15
+
16
+ GPTQ-Int4 quantization of [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B).
17
+
18
+ Quantization config derived from official [Qwen/Qwen3.5-35B-A3B-GPTQ-Int4](https://huggingface.co/Qwen/Qwen3.5-35B-A3B-GPTQ-Int4). Only MoE expert weights are quantized to INT4 — attention, shared expert, MTP, vision, embeddings, and lm_head remain in bf16.
19
+
20
+ | | |
21
+ |---|---|
22
+ | Original Size | 68.97 GB |
23
+ | Quantized Size | 21.17 GB (-68.39%) |
24
+ | Method | GPTQ 4-bit, group_size=128, symmetric |
25
+ | Calibration | WikiText-2, 128 samples |
26
+ | Quantizer | GPTQModel 6.0.3 |
27
+
28
+ ## Usage
29
+
30
+ ### SGLang
31
+
32
+ ```bash
33
+ python -m sglang.launch_server \
34
+ --model-path palmfuture/Qwen3.6-35B-A3B-GPTQ-Int4 \
35
+ --port 8000 --tp-size 4 \
36
+ --mem-fraction-static 0.89 \
37
+ --context-length 262144 \
38
+ --reasoning-parser qwen3 \
39
+ --quantization moe_wna16
40
+ ```
41
+
42
+ ### vLLM
43
+
44
+ ```bash
45
+ vllm serve palmfuture/Qwen3.6-35B-A3B-GPTQ-Int4 \
46
+ --port 8000 --tensor-parallel-size 4 \
47
+ --max-model-len 262144 \
48
+ --reasoning-parser qwen3
49
+ ```
50
+
51
+ ## Acknowledgments
52
+
53
+ - [Qwen Team](https://huggingface.co/Qwen) for the original model and quantization config reference
54
+ - [GPTQModel](https://github.com/modelcloud/gptqmodel) for the quantization toolkit