File size: 602 Bytes
b35788b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
base_model: Kwaipilot/KAT-Coder-V2.5-Dev
base_model_relation: quantized
license: apache-2.0
pipeline_tag: text-generation
library_name: transformers
language:
  - en
  - zh
tags:
  - code
  - agent
  - agentic-coding
  - moe
  - coding
  - quantized
---

# Quantization of KAT-Coder-V2.5-Dev to FP8 Dynamic

Quantized using llm-compressor.

```
recipe = QuantizationModifier(
    targets="Linear",
    scheme="FP8_DYNAMIC",
     ignore=[
        "re:.*lm_head",
        "re:model.visual.*",
        "re:.*mlp.gate$",
        "re:.*embed_tokens$",
        "re:.*shared_expert_gate$",
      ],
)
```