leonsarmiento commited on
Commit
b21ea05
·
verified ·
1 Parent(s): 904eac5

Add standardized 'About XL Quantization' paragraph

Browse files
Files changed (1) hide show
  1. README.md +7 -0
README.md CHANGED
@@ -20,6 +20,13 @@ pipeline_tag: text-generation
20
 
21
  KAT-Coder-V2.5-Dev is a post-trained MoE built on Qwen3.6-35B-A3B via two-stage SFT (127K examples) + RL (10 epochs) with token-level consistency (TITO), truncated importance sampling (TIS), and hierarchical reward shaping from harness execution feedback. It ships **text-only weights** (no vision tower) despite the `Qwen3_5MoeForConditionalGeneration` architecture — the MLX conversion uses `mlx_vlm` with `strict=False` to skip the 333 missing `vision_tower.*` parameters.
22
 
 
 
 
 
 
 
 
23
  ## Quickstart
24
 
25
  ```bash
 
20
 
21
  KAT-Coder-V2.5-Dev is a post-trained MoE built on Qwen3.6-35B-A3B via two-stage SFT (127K examples) + RL (10 epochs) with token-level consistency (TITO), truncated importance sampling (TIS), and hierarchical reward shaping from harness execution feedback. It ships **text-only weights** (no vision tower) despite the `Qwen3_5MoeForConditionalGeneration` architecture — the MLX conversion uses `mlx_vlm` with `strict=False` to skip the 333 missing `vision_tower.*` parameters.
22
 
23
+
24
+ ## About XL Quantization
25
+
26
+ **BaseQuant_XL** is a fully **data-agnostic**, static quantization. No calibration dataset, no sensitivity analysis, no importance matrix. Precision is allocated purely by architectural role — routing-critical layers get higher precision, bulk expert parameters get lower precision. The result is a transparent, faithful capture of the source model.
27
+
28
+ Data-dependent calibration quantizations (iMatrix, AWQ, GPTQ, oQ, oQ4e, etc.) use a calibration set to guide bit allocation. This can produce a **skewed representation** of the model: domains well-represented in the calibration data (English, popular topics, public or leaked benchmarks) are preserved better, while underrepresented domains (non-English languages, niche use cases, your own data) are preserved worse. XL avoids this trade-off entirely — it generalizes honestly because it is never fit to any particular data distribution.
29
+
30
  ## Quickstart
31
 
32
  ```bash