wtdcode commited on
Commit
ac8c3e5
·
verified ·
1 Parent(s): 20b862e

Add model card

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: zai-org/GLM-5.3-Flash
3
+ base_model_relation: quantized
4
+ ---
5
+
6
+ # GLM-5.3-Flash-AWQ-W4A16
7
+
8
+ Quantized version of [zai-org/GLM-5.3-Flash](https://huggingface.co/zai-org/GLM-5.3-Flash).
9
+
10
+ ## What is quantized
11
+
12
+ Weight-only INT4 (symmetric, group size 128) via AWQ, stored in the compressed-tensors `pack-quantized` format. Calibrated from the official FP8 release (dequantized to BF16 first).
13
+
14
+ **Quantized (INT4 W4A16):**
15
+ - Routed MoE experts in the 42 MoE decoder layers (layers 3-44): `mlp.experts.{0..287}.{gate_proj, up_proj, down_proj}` (~312B of the 321B parameters)
16
+
17
+ **Kept in BF16 (not quantized):**
18
+ - Token embedding (`embed_tokens`) and `lm_head`
19
+ - Linear attention / KDA (`self_attn.{q,k,v,o}_proj`, forget gate) and DSA/MLA attention (`q_a/q_b/kv_a/kv_b_proj`, indexer)
20
+ - Hyper-connections (`attn_hc.*`, `ffn_hc.*`)
21
+ - MoE router (`mlp.gate`) and shared experts (`mlp.shared_experts.*`)
22
+ - Dense MLPs of the first 3 layers
23
+ - Vision encoder (`model.visual.*`)
24
+ - NextN/MTP layer (`layers.45.*`, dequantized from the FP8 source to BF16)