File size: 2,168 Bytes
44f8714
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
language:
- en
license: other
base_model:
- huihui-ai/Huihui-Qwen3.5-9B-abliterated
tags:
- gptq
- 4bit
- quantized
- qwen
- text-generation
- gptq-pro
pipeline_tag: text-generation
library_name: transformers
---

# Huihui-Qwen3.5-9B-abliterated GPTQ-Pro 4bit (g64)

This is a GPTQ-Pro 4-bit quantization of `huihui-ai/Huihui-Qwen3.5-9B-abliterated`.

It was quantized with group size `64` and evaluated against the original model on Wikitext-2 using a strided perplexity setup, plus KL and token-agreement checks.

## Highlights

- Base model: `huihui-ai/Huihui-Qwen3.5-9B-abliterated`
- Quantization: GPTQ-Pro, 4-bit, group size `64`
- Calibration samples: `128`
- Quantization time: about `11.1` minutes
- Quantized strided perplexity: `9.6579`
- Original strided perplexity: `9.5234`
- Perplexity degradation: `1.41%`
- Average KL divergence vs original: `0.03423`
- Top-1 agreement vs original: `91.96%`
- Top-5 agreement vs original: `99.98%`

## Quality Notes

This quantized build stays very close to the source model in language modeling quality.

- Perplexity regression is small.
- KL divergence is low.
- Top-5 next-token agreement is effectively perfect.
- In practice, this should preserve most of the original model's behavior while reducing memory use substantially.

## Files

- `model-00001-of-00002.safetensors`
- `model-00002-of-00002.safetensors`
- `quantize_config.json`
- tokenizer and config files

## Load With Transformers / GPTQModel

```python
from gptqmodel import GPTQModel

model = GPTQModel.load(
    "groxaxo/Huihui-Qwen3.5-9B-abliterated-GPTQ-Pro-4bit-g64",
    device_map="auto",
    trust_remote_code=True,
)
```

## Evaluation Summary

Measured locally:

- Quantized strided PPL: `9.6579304371`
- Original strided PPL: `9.5233634665`
- Quantized chunked PPL: `11.6689118281`
- Original chunked PPL: `11.5080707440`
- KL divergence: `0.0342324856`
- Logit cosine similarity: `0.9935612157`

## Prompting

Use the same prompting and chat template behavior as the base model.

## Disclaimer

This repo contains only the quantized checkpoint. Please review the base model card for intended use, limitations, and licensing details.