keyuan01 commited on
Commit
8013662
·
verified ·
1 Parent(s): 801e6ae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +15 -13
README.md CHANGED
@@ -51,19 +51,21 @@ This is not a single uniform `Q4` or `Q3` file.
51
  It is a mixed-precision build where different tensor groups keep different quant types according to sensitivity and size budget.
52
 
53
  ## Mix Formula
54
- The published 13GB file is centered around this mix behavior:
55
- - main attention and core blocks are mostly kept in `Q6_K`
56
- - a large secondary block remains in `Q4_K`
57
- - selected tensors fall back to `Q5_0` and `Q4_0`
58
- - only a small compressed tail reaches `Q3_K`
59
- - one tensor remains in `Q5_K`
 
 
 
 
60
 
61
- Practical summary:
62
- - `Q6_K` is the main high-preservation part
63
- - `Q4_K` is the main compression body
64
- - `Q3_K` is only a small minority, not the center of the file
65
-
66
- So this release should not be described as a pure `Q3_K_M`, `IQ3_M`, or pure `Q4_K_M` build.
67
 
68
  ## Importance Matrix (`imatrix`)
69
  This release follows the same `imatrix`-guided quantization idea used in the 31B line.
@@ -137,4 +139,4 @@ License:
137
  Use this version if you want:
138
  - a published mixed 13GB GGUF for `Gemma 4 26B A4B it`
139
  - multimodal support preserved through the separate `mmproj`
140
- - a file whose actual mix is closer to `Q6_K + Q4_K` than to a pure `Q3` build
 
51
  It is a mixed-precision build where different tensor groups keep different quant types according to sensitivity and size budget.
52
 
53
  ## Mix Formula
54
+ This published 13GB file follows a mixed recipe in this style:
55
+ - `token_embd -> q5_k`
56
+ - `output -> q5_k`
57
+ - `router -> q8_0`
58
+ - `attn_q -> q6_k`
59
+ - `attn_k -> q6_k`
60
+ - `attn_v -> q6_k`
61
+ - `attn_output -> q6_k`
62
+ - `ffn_gate_up_exps -> mixed q4_k / q3_k`
63
+ - `ffn_down_exps -> q4_0`
64
 
65
+ Notes:
66
+ - this file is MoE, so expert tensors are not laid out like the dense 31B recipe
67
+ - `ffn_gate_up_exps` is the main mixed expert block
68
+ - the 13GB release is therefore closer to a `Q6_K + Q4_K/Q3_K` expert mix than to a `Q3-centered` dense recipe
 
 
69
 
70
  ## Importance Matrix (`imatrix`)
71
  This release follows the same `imatrix`-guided quantization idea used in the 31B line.
 
139
  Use this version if you want:
140
  - a published mixed 13GB GGUF for `Gemma 4 26B A4B it`
141
  - multimodal support preserved through the separate `mmproj`
142
+ - a MoE mixed quant release documented in recipe style instead of a generic quant summary