jkim96 commited on
Commit
bc5e3ab
·
verified ·
1 Parent(s): 1cf47ca

Standardize model card (DASH-Q)

Browse files
Files changed (1) hide show
  1. README.md +15 -32
README.md CHANGED
@@ -1,19 +1,23 @@
1
  ---
2
  license: apache-2.0
3
  base_model: Qwen/Qwen3.5-35B-A3B
 
4
  library_name: transformers
5
  tags:
6
  - dashq
7
  - quantized
8
  - post-training-quantization
9
- base_model_relation: quantized
10
  ---
11
 
 
 
12
  # Qwen3.5-35B-A3B-DASHQ-INT4-g128
13
 
14
- This repository contains a DASH-Q packed quantized checkpoint for `Qwen/Qwen3.5-35B-A3B`.
 
15
 
16
- DASH-Q checkpoints require the lightweight DASH-Q runtime package for loading. They are not plain Transformers checkpoints because linear layers are stored as `PackedQuantizedLinear` modules.
17
 
18
  ## Install
19
 
@@ -26,10 +30,7 @@ pip install git+https://github.com/JaeminK/dashq.git
26
  ```python
27
  from dashq import load_quantized
28
 
29
- model, tokenizer = load_quantized(
30
- "jkim96/Qwen3.5-35B-A3B-DASHQ-INT4-g128",
31
- device_map="auto",
32
- )
33
  ```
34
 
35
  ## Quantization
@@ -37,30 +38,12 @@ model, tokenizer = load_quantized(
37
  | Field | Value |
38
  | --- | --- |
39
  | Base model | `Qwen/Qwen3.5-35B-A3B` |
40
- | Bits | `4` |
41
- | Group size | `128` |
42
- | Scale/zero dtype | `float16` |
43
- | Calibration dataset | `wikitext2` |
44
- | Calibration samples | `128` |
45
- | Sequence length | `2048` |
46
- | Original size | `71.9039 GB` |
47
- | Quantized size | `20.8421 GB` |
48
-
49
- ## Evaluation
50
 
51
- | Metric | Value |
52
- | --- | ---: |
53
- | `wikitext2_ppl` | 6.6774 |
54
- | `zero-shot accuracy avg` | 70.1730 |
55
- | `arc_challenge` | 61.1775 |
56
- | `arc_easy` | 78.7879 |
57
- | `commonsense_qa` | 84.1114 |
58
- | `gsm8k_cot` | 90.9780 |
59
- | `hellaswag` | 82.0653 |
60
- | `lambada_openai` | 72.4044 |
61
- | `mmlu` | 81.6194 |
62
- | `openbookqa` | 42.6000 |
63
- | `piqa` | 82.6442 |
64
- | `truthfulqa_mc2` | 53.5757 |
65
- | `winogrande` | 74.1910 |
66
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  base_model: Qwen/Qwen3.5-35B-A3B
4
+ base_model_relation: quantized
5
  library_name: transformers
6
  tags:
7
  - dashq
8
  - quantized
9
  - post-training-quantization
10
+ - int4
11
  ---
12
 
13
+ ![DASH-Q](https://raw.githubusercontent.com/JaeminK/dashq/main/assets/dashq_banner.png)
14
+
15
  # Qwen3.5-35B-A3B-DASHQ-INT4-g128
16
 
17
+ > **DASH-Q** Diagonal-Aware Shrinkage for Robust PTQ.
18
+ > `INT4` · group size 128 · **20.8421 GB** (from 71.9039 GB — **3.4x smaller**)
19
 
20
+ DASH-Q checkpoints load with the lightweight DASH-Q runtime linear layers are packed `PackedQuantizedLinear` modules, not plain Transformers weights.
21
 
22
  ## Install
23
 
 
30
  ```python
31
  from dashq import load_quantized
32
 
33
+ model, tokenizer = load_quantized("jkim96/Qwen3.5-35B-A3B-DASHQ-INT4-g128", device_map="auto")
 
 
 
34
  ```
35
 
36
  ## Quantization
 
38
  | Field | Value |
39
  | --- | --- |
40
  | Base model | `Qwen/Qwen3.5-35B-A3B` |
41
+ | Precision | INT4, group size 128 |
42
+ | Scale / zero dtype | float16 |
43
+ | Calibration | wikitext2, 128 samples x 2048 |
44
+ | Size | 20.8421 GB · original 71.9039 GB · 3.4x compression |
 
 
 
 
 
 
45
 
46
+ ## Benchmarks
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
+ Full zero-shot / few-shot results for every DASH-Q checkpoint:
49
+ **[github.com/JaeminK/dashq#benchmarks](https://github.com/JaeminK/dashq#benchmarks)**