hermitdave commited on
Commit
fefceb8
·
verified ·
1 Parent(s): f56df8c

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +47 -0
  2. sensitivity_v2.0.0.json +2619 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Qwen 3.8 27B Layer-wise Sensitivity Map
2
+
3
+ Per-layer quantization sensitivity for Qwen/Qwen3.8-27B, measured via weight distribution statistics (kurtosis, variance, outlier fraction) as a proxy for KL divergence.
4
+
5
+ **Key finding**: Early layers (0-4) and late layers (62-63) are most sensitive. Middle layers (40-61) are most compressible.
6
+
7
+ ## Usage
8
+
9
+ ```python
10
+ import json
11
+
12
+ with open("sensitivity_v1.0.0.json") as f:
13
+ data = json.load(f)
14
+
15
+ # Get optimal allocation for a target bitrate
16
+ alloc = data["allocations"]["3.5"]
17
+ print(f"Target: 3.5 bpw → Actual: {alloc['average_bpw']} bpw, {alloc['total_size_gb']} GB")
18
+
19
+ # Per-layer precision
20
+ for layer_idx, bits in alloc["layers"].items():
21
+ print(f"Layer {layer_idx}: Q{bits}")
22
+ ```
23
+
24
+ ## Schema
25
+
26
+ - `layers[].sensitivity.Q2/Q3/Q4/Q5`: estimated KL divergence from FP16 reference
27
+ - `layers[].weight_stats`: kurtosis, variance, outlier_fraction
28
+ - `layers[].bits_for_threshold`: min bits to stay under KL threshold
29
+ - `allocations`: pre-computed at 2.5, 3.0, 3.5, 4.0 bpw targets
30
+
31
+ ## Method
32
+
33
+ 1. Load Qwen3.8-27B (FP16)
34
+ 2. Compute weight distribution statistics per layer
35
+ 3. Derive sensitivity score: 0.4·kurtosis + 0.4·variance + 0.2·outlier_fraction
36
+ 4. Greedy bit-budget allocation from Q2 baseline, upgrading most sensitive layers first
37
+
38
+ ## Citation
39
+
40
+ ```bibtex
41
+ @misc{qwen3.8-27b-sensitivity,
42
+ title={Qwen 3.8 27B Layer-wise Sensitivity Map for Mixed-Precision Quantization},
43
+ author={hermitdave},
44
+ year={2026},
45
+ howpublished={HuggingFace Dataset}
46
+ }
47
+ ```
sensitivity_v2.0.0.json ADDED
@@ -0,0 +1,2619 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": "2.0.0-streaming",
3
+ "created_at": "2026-09-05T23:00:08Z",
4
+ "model": {
5
+ "name": "Qwen/Qwen3.8-27B",
6
+ "architecture": "qwen3_5",
7
+ "num_layers": 64,
8
+ "total_params": 27300000000
9
+ },
10
+ "analysis_method": "weight_statistics_streaming",
11
+ "analysis_details": {
12
+ "features": [
13
+ "kurtosis",
14
+ "variance",
15
+ "outlier_fraction"
16
+ ],
17
+ "streaming": true,
18
+ "peak_memory_gb": "~3 (one shard at a time)",
19
+ "tensors_analyzed": 503,
20
+ "elapsed_seconds": 290.8522319793701
21
+ },
22
+ "layers": [
23
+ {
24
+ "index": 0,
25
+ "type": "linear_attention",
26
+ "is_first": true,
27
+ "is_last": false,
28
+ "sensitivity": {
29
+ "Q2": 0.008600255470976627,
30
+ "Q3": 0.0052163186245086385,
31
+ "Q4": 0.0031638571765945215,
32
+ "Q5": 0.0019189763805564247
33
+ },
34
+ "sensitivity_score": 0.22407543275269254,
35
+ "bits_for_threshold": {
36
+ "0.001": 5,
37
+ "0.0005": 5,
38
+ "0.0001": 5,
39
+ "1e-05": 5
40
+ },
41
+ "weight_stats": {
42
+ "avg_kurtosis": 13.121335649490357,
43
+ "avg_variance": 0.00025658251737089205,
44
+ "avg_outlier_fraction": 0.006125112570968329,
45
+ "num_tensors": 15,
46
+ "total_params": 755466240,
47
+ "projections": {
48
+ "linear_attn.in_proj_a": 0.06024805668586771,
49
+ "linear_attn.in_proj_b": 0.04649428490764226,
50
+ "linear_attn.in_proj_qkv": 0.08472324284091512,
51
+ "linear_attn.in_proj_z": 0.028803331170657327,
52
+ "linear_attn.out_proj": 0.41172825084803627,
53
+ "mlp.down_proj": 0.17550891081898412,
54
+ "mlp.gate_proj": 0.05707896277792106,
55
+ "mlp.up_proj": 0.044113535713813726,
56
+ "self_attn.k_proj": 0.11652366383024582,
57
+ "self_attn.o_proj": 0.22355161185274977,
58
+ "self_attn.q_proj": 0.16844460170627304,
59
+ "self_attn.v_proj": 0.06560525138227616
60
+ }
61
+ }
62
+ },
63
+ {
64
+ "index": 1,
65
+ "type": "linear_attention",
66
+ "is_first": false,
67
+ "is_last": false,
68
+ "sensitivity": {
69
+ "Q2": 0.00811208511582446,
70
+ "Q3": 0.0049202283369460436,
71
+ "Q4": 0.0029842693391446775,
72
+ "Q5": 0.0018100508510316058
73
+ },
74
+ "sensitivity_score": 0.21316516207663397,
75
+ "bits_for_threshold": {
76
+ "0.001": 5,
77
+ "0.0005": 5,
78
+ "0.0001": 5,
79
+ "1e-05": 5
80
+ },
81
+ "weight_stats": {
82
+ "avg_kurtosis": 11.788941770792007,
83
+ "avg_variance": 0.00026199179046670906,
84
+ "avg_outlier_fraction": 0.004634106953938802,
85
+ "num_tensors": 8,
86
+ "total_params": 383221760,
87
+ "projections": {
88
+ "linear_attn.in_proj_a": 0.09402923274208924,
89
+ "linear_attn.in_proj_b": 0.11580585753462368,
90
+ "linear_attn.in_proj_qkv": 0.026658542642319955,
91
+ "linear_attn.in_proj_z": 0.02791274557129913,
92
+ "linear_attn.out_proj": 0.36639146783238774,
93
+ "mlp.down_proj": 0.07597986664244893,
94
+ "mlp.gate_proj": 0.019653055589585636,
95
+ "mlp.up_proj": 0.013602346803413382
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "index": 2,
101
+ "type": "linear_attention",
102
+ "is_first": false,
103
+ "is_last": false,
104
+ "sensitivity": {
105
+ "Q2": 0.00539271004915197,
106
+ "Q3": 0.003270843983751092,
107
+ "Q4": 0.0019838671592816485,
108
+ "Q5": 0.0012032762569013263
109
+ },
110
+ "sensitivity_score": 0.1442173965493334,
111
+ "bits_for_threshold": {
112
+ "0.001": 5,
113
+ "0.0005": 5,
114
+ "0.0001": 5,
115
+ "1e-05": 5
116
+ },
117
+ "weight_stats": {
118
+ "avg_kurtosis": 4.404523521661758,
119
+ "avg_variance": 0.0002543822110965266,
120
+ "avg_outlier_fraction": 0.004614159593395159,
121
+ "num_tensors": 8,
122
+ "total_params": 383221760,
123
+ "projections": {
124
+ "linear_attn.in_proj_a": 0.10643111755011234,
125
+ "linear_attn.in_proj_b": 0.1212896412807558,
126
+ "linear_attn.in_proj_qkv": 0.02112181045944273,
127
+ "linear_attn.in_proj_z": 0.02190357842620244,
128
+ "linear_attn.out_proj": 0.275724233962562,
129
+ "mlp.down_proj": 0.10182722888844303,
130
+ "mlp.gate_proj": 0.015723512963612435,
131
+ "mlp.up_proj": 0.010947771839759222
132
+ }
133
+ }
134
+ },
135
+ {
136
+ "index": 3,
137
+ "type": "full_attention",
138
+ "is_first": false,
139
+ "is_last": false,
140
+ "sensitivity": {
141
+ "Q2": 0.010837129613625537,
142
+ "Q3": 0.006573051373943613,
143
+ "Q4": 0.003986757186163052,
144
+ "Q5": 0.002418090466237558
145
+ },
146
+ "sensitivity_score": 0.24882671296004144,
147
+ "bits_for_threshold": {
148
+ "0.001": 5,
149
+ "0.0005": 5,
150
+ "0.0001": 5,
151
+ "1e-05": 5
152
+ },
153
+ "weight_stats": {
154
+ "avg_kurtosis": 19.252364124570573,
155
+ "avg_variance": 0.00020600837680311606,
156
+ "avg_outlier_fraction": 0.004078375391599511,
157
+ "num_tensors": 7,
158
+ "total_params": 372244480,
159
+ "projections": {
160
+ "mlp.down_proj": 0.04847584486493976,
161
+ "mlp.gate_proj": 0.011672405615597048,
162
+ "mlp.up_proj": 0.010050562785909507,
163
+ "self_attn.k_proj": 0.05412810942994482,
164
+ "self_attn.o_proj": 0.3979963720482833,
165
+ "self_attn.q_proj": 0.05153889036006741,
166
+ "self_attn.v_proj": 0.039196207946000095
167
+ }
168
+ }
169
+ },
170
+ {
171
+ "index": 4,
172
+ "type": "linear_attention",
173
+ "is_first": false,
174
+ "is_last": false,
175
+ "sensitivity": {
176
+ "Q2": 0.005755779933481459,
177
+ "Q3": 0.0034910570002152463,
178
+ "Q4": 0.0021174331054349604,
179
+ "Q5": 0.0012842880983368367
180
+ },
181
+ "sensitivity_score": 0.15743299003713096,
182
+ "bits_for_threshold": {
183
+ "0.001": 5,
184
+ "0.0005": 5,
185
+ "0.0001": 5,
186
+ "1e-05": 5
187
+ },
188
+ "weight_stats": {
189
+ "avg_kurtosis": 5.372411161661148,
190
+ "avg_variance": 0.00027342084013071144,
191
+ "avg_outlier_fraction": 0.004631910698086608,
192
+ "num_tensors": 8,
193
+ "total_params": 383221760,
194
+ "projections": {
195
+ "linear_attn.in_proj_a": 0.10700369192455456,
196
+ "linear_attn.in_proj_b": 0.1372961592592174,
197
+ "linear_attn.in_proj_qkv": 0.020838178592373725,
198
+ "linear_attn.in_proj_z": 0.02306225332011041,
199
+ "linear_attn.out_proj": 0.2973762891214484,
200
+ "mlp.down_proj": 0.016850571334396866,
201
+ "mlp.gate_proj": 0.015185839481074045,
202
+ "mlp.up_proj": 0.011322972609644433
203
+ }
204
+ }
205
+ },
206
+ {
207
+ "index": 5,
208
+ "type": "linear_attention",
209
+ "is_first": false,
210
+ "is_last": false,
211
+ "sensitivity": {
212
+ "Q2": 0.005109538011264207,
213
+ "Q3": 0.0030990914607988565,
214
+ "Q4": 0.0018796939882281196,
215
+ "Q5": 0.0011400920347378724
216
+ },
217
+ "sensitivity_score": 0.1320234953594664,
218
+ "bits_for_threshold": {
219
+ "0.001": 5,
220
+ "0.0005": 5,
221
+ "0.0001": 5,
222
+ "1e-05": 5
223
+ },
224
+ "weight_stats": {
225
+ "avg_kurtosis": 3.644553393125534,
226
+ "avg_variance": 0.0002446109347147285,
227
+ "avg_outlier_fraction": 0.004579047268512202,
228
+ "num_tensors": 8,
229
+ "total_params": 383221760,
230
+ "projections": {
231
+ "linear_attn.in_proj_a": 0.10110007169750969,
232
+ "linear_attn.in_proj_b": 0.12471412441186719,
233
+ "linear_attn.in_proj_qkv": 0.023176343013717505,
234
+ "linear_attn.in_proj_z": 0.02351780186507507,
235
+ "linear_attn.out_proj": 0.26324155109755304,
236
+ "mlp.down_proj": 0.025563197581558367,
237
+ "mlp.gate_proj": 0.01259216946747636,
238
+ "mlp.up_proj": 0.011108441112449872
239
+ }
240
+ }
241
+ },
242
+ {
243
+ "index": 6,
244
+ "type": "linear_attention",
245
+ "is_first": false,
246
+ "is_last": false,
247
+ "sensitivity": {
248
+ "Q2": 0.005081564368010991,
249
+ "Q3": 0.0030821245885019172,
250
+ "Q4": 0.0018694030599805968,
251
+ "Q5": 0.001133850271238847
252
+ },
253
+ "sensitivity_score": 0.13140093333272798,
254
+ "bits_for_threshold": {
255
+ "0.001": 5,
256
+ "0.0005": 5,
257
+ "0.0001": 5,
258
+ "1e-05": 5
259
+ },
260
+ "weight_stats": {
261
+ "avg_kurtosis": 3.579756438732147,
262
+ "avg_variance": 0.00023336764297710033,
263
+ "avg_outlier_fraction": 0.004829967162188361,
264
+ "num_tensors": 8,
265
+ "total_params": 383221760,
266
+ "projections": {
267
+ "linear_attn.in_proj_a": 0.09158124570018274,
268
+ "linear_attn.in_proj_b": 0.14280646473631983,
269
+ "linear_attn.in_proj_qkv": 0.025278877218287026,
270
+ "linear_attn.in_proj_z": 0.028807318062192184,
271
+ "linear_attn.out_proj": 0.25326387820185814,
272
+ "mlp.down_proj": 0.09189913254602636,
273
+ "mlp.gate_proj": 0.026758526259452752,
274
+ "mlp.up_proj": 0.019151425625434548
275
+ }
276
+ }
277
+ },
278
+ {
279
+ "index": 7,
280
+ "type": "full_attention",
281
+ "is_first": false,
282
+ "is_last": false,
283
+ "sensitivity": {
284
+ "Q2": 0.005369692535199495,
285
+ "Q3": 0.0032568831558285522,
286
+ "Q4": 0.0019753994891116558,
287
+ "Q5": 0.0011981403553268915
288
+ },
289
+ "sensitivity_score": 0.1434038315999315,
290
+ "bits_for_threshold": {
291
+ "0.001": 5,
292
+ "0.0005": 5,
293
+ "0.0001": 5,
294
+ "1e-05": 5
295
+ },
296
+ "weight_stats": {
297
+ "avg_kurtosis": 4.402101618903024,
298
+ "avg_variance": 0.0001942360239419421,
299
+ "avg_outlier_fraction": 0.004226508795046339,
300
+ "num_tensors": 7,
301
+ "total_params": 372244480,
302
+ "projections": {
303
+ "mlp.down_proj": 0.0188793992657207,
304
+ "mlp.gate_proj": 0.014716886132471598,
305
+ "mlp.up_proj": 0.012060730100106751,
306
+ "self_attn.k_proj": 0.066045344704877,
307
+ "self_attn.o_proj": 0.27849277764933755,
308
+ "self_attn.q_proj": 0.04580753318624271,
309
+ "self_attn.v_proj": 0.041653755954880786
310
+ }
311
+ }
312
+ },
313
+ {
314
+ "index": 8,
315
+ "type": "linear_attention",
316
+ "is_first": false,
317
+ "is_last": false,
318
+ "sensitivity": {
319
+ "Q2": 0.004881640533955573,
320
+ "Q3": 0.0029608646535400057,
321
+ "Q4": 0.0017958551916314378,
322
+ "Q5": 0.0010892412341285736
323
+ },
324
+ "sensitivity_score": 0.12085477297705989,
325
+ "bits_for_threshold": {
326
+ "0.001": 5,
327
+ "0.0005": 5,
328
+ "0.0001": 5,
329
+ "1e-05": 5
330
+ },
331
+ "weight_stats": {
332
+ "avg_kurtosis": 3.0469337105751038,
333
+ "avg_variance": 0.00022274104594544042,
334
+ "avg_outlier_fraction": 0.004504552728989545,
335
+ "num_tensors": 8,
336
+ "total_params": 383221760,
337
+ "projections": {
338
+ "linear_attn.in_proj_a": 0.10605049973430579,
339
+ "linear_attn.in_proj_b": 0.13051511477962222,
340
+ "linear_attn.in_proj_qkv": 0.023324090532809677,
341
+ "linear_attn.in_proj_z": 0.023844535034619013,
342
+ "linear_attn.out_proj": 0.2438697341499565,
343
+ "mlp.down_proj": 0.022167733310705415,
344
+ "mlp.gate_proj": 0.012902148583221194,
345
+ "mlp.up_proj": 0.010805754637628204
346
+ }
347
+ }
348
+ },
349
+ {
350
+ "index": 9,
351
+ "type": "linear_attention",
352
+ "is_first": false,
353
+ "is_last": false,
354
+ "sensitivity": {
355
+ "Q2": 0.0047114973463755275,
356
+ "Q3": 0.0028576675937314706,
357
+ "Q4": 0.0017332630108653627,
358
+ "Q5": 0.0010512771574356736
359
+ },
360
+ "sensitivity_score": 0.11128002077450051,
361
+ "bits_for_threshold": {
362
+ "0.001": 5,
363
+ "0.0005": 5,
364
+ "0.0001": 5,
365
+ "1e-05": 5
366
+ },
367
+ "weight_stats": {
368
+ "avg_kurtosis": 2.5733006596565247,
369
+ "avg_variance": 0.00023387696182908257,
370
+ "avg_outlier_fraction": 0.004695744467716591,
371
+ "num_tensors": 8,
372
+ "total_params": 383221760,
373
+ "projections": {
374
+ "linear_attn.in_proj_a": 0.0992592564290225,
375
+ "linear_attn.in_proj_b": 0.13974170068767228,
376
+ "linear_attn.in_proj_qkv": 0.02169976397970314,
377
+ "linear_attn.in_proj_z": 0.022266509430795542,
378
+ "linear_attn.out_proj": 0.2261608371829631,
379
+ "mlp.down_proj": 0.020849574105490612,
380
+ "mlp.gate_proj": 0.013738306555675279,
381
+ "mlp.up_proj": 0.010873539484991597
382
+ }
383
+ }
384
+ },
385
+ {
386
+ "index": 10,
387
+ "type": "linear_attention",
388
+ "is_first": false,
389
+ "is_last": false,
390
+ "sensitivity": {
391
+ "Q2": 0.0044915019393199605,
392
+ "Q3": 0.002724233634356308,
393
+ "Q4": 0.0016523312234574769,
394
+ "Q5": 0.001002189547027446
395
+ },
396
+ "sensitivity_score": 0.09673496933176429,
397
+ "bits_for_threshold": {
398
+ "0.001": 5,
399
+ "0.0005": 5,
400
+ "0.0001": 5,
401
+ "1e-05": 5
402
+ },
403
+ "weight_stats": {
404
+ "avg_kurtosis": 1.9842613339424133,
405
+ "avg_variance": 0.00022490677019959548,
406
+ "avg_outlier_fraction": 0.004628896760005576,
407
+ "num_tensors": 8,
408
+ "total_params": 383221760,
409
+ "projections": {
410
+ "linear_attn.in_proj_a": 0.08929078929792421,
411
+ "linear_attn.in_proj_b": 0.12779836922050802,
412
+ "linear_attn.in_proj_qkv": 0.024162223561523585,
413
+ "linear_attn.in_proj_z": 0.02293726095827909,
414
+ "linear_attn.out_proj": 0.2028423239917651,
415
+ "mlp.down_proj": 0.01959124429271592,
416
+ "mlp.gate_proj": 0.020369040853206316,
417
+ "mlp.up_proj": 0.012048050303280322
418
+ }
419
+ }
420
+ },
421
+ {
422
+ "index": 11,
423
+ "type": "full_attention",
424
+ "is_first": false,
425
+ "is_last": false,
426
+ "sensitivity": {
427
+ "Q2": 0.004813567299127634,
428
+ "Q3": 0.002919576149511043,
429
+ "Q4": 0.0017708124480442032,
430
+ "Q5": 0.0010740520423395939
431
+ },
432
+ "sensitivity_score": 0.11701098748425766,
433
+ "bits_for_threshold": {
434
+ "0.001": 5,
435
+ "0.0005": 5,
436
+ "0.0001": 5,
437
+ "1e-05": 5
438
+ },
439
+ "weight_stats": {
440
+ "avg_kurtosis": 2.890007972717285,
441
+ "avg_variance": 0.00019462454656604677,
442
+ "avg_outlier_fraction": 0.004165153343136571,
443
+ "num_tensors": 7,
444
+ "total_params": 372244480,
445
+ "projections": {
446
+ "mlp.down_proj": 0.02701653613154103,
447
+ "mlp.gate_proj": 0.016756394434203885,
448
+ "mlp.up_proj": 0.011328305202734158,
449
+ "self_attn.k_proj": 0.06431299395657057,
450
+ "self_attn.o_proj": 0.24086804091638234,
451
+ "self_attn.q_proj": 0.06253661449499337,
452
+ "self_attn.v_proj": 0.03988814186464776
453
+ }
454
+ }
455
+ },
456
+ {
457
+ "index": 12,
458
+ "type": "linear_attention",
459
+ "is_first": false,
460
+ "is_last": false,
461
+ "sensitivity": {
462
+ "Q2": 0.004326982296828233,
463
+ "Q3": 0.002624447427060114,
464
+ "Q4": 0.0015918078293158946,
465
+ "Q5": 0.0009654802528507045
466
+ },
467
+ "sensitivity_score": 0.08372515169856842,
468
+ "bits_for_threshold": {
469
+ "0.001": 5,
470
+ "0.0005": 5,
471
+ "0.0001": 5,
472
+ "1e-05": 5
473
+ },
474
+ "weight_stats": {
475
+ "avg_kurtosis": 1.5345645546913147,
476
+ "avg_variance": 0.00022739279484085273,
477
+ "avg_outlier_fraction": 0.004657154550739363,
478
+ "num_tensors": 8,
479
+ "total_params": 383221760,
480
+ "projections": {
481
+ "linear_attn.in_proj_a": 0.08069225544005945,
482
+ "linear_attn.in_proj_b": 0.12246967562447197,
483
+ "linear_attn.in_proj_qkv": 0.025981045698368607,
484
+ "linear_attn.in_proj_z": 0.02378292412576589,
485
+ "linear_attn.out_proj": 0.1789304860250034,
486
+ "mlp.down_proj": 0.015853891752294274,
487
+ "mlp.gate_proj": 0.015263689012231735,
488
+ "mlp.up_proj": 0.010857886861953731
489
+ }
490
+ }
491
+ },
492
+ {
493
+ "index": 13,
494
+ "type": "linear_attention",
495
+ "is_first": false,
496
+ "is_last": false,
497
+ "sensitivity": {
498
+ "Q2": 0.004147679035388727,
499
+ "Q3": 0.0025156945016105835,
500
+ "Q4": 0.001525845845697312,
501
+ "Q5": 0.0009254722874105717
502
+ },
503
+ "sensitivity_score": 0.06658778912944008,
504
+ "bits_for_threshold": {
505
+ "0.001": 5,
506
+ "0.0005": 5,
507
+ "0.0001": 5,
508
+ "1e-05": 5
509
+ },
510
+ "weight_stats": {
511
+ "avg_kurtosis": 1.0524270832538605,
512
+ "avg_variance": 0.00022213346892385744,
513
+ "avg_outlier_fraction": 0.004528530952977199,
514
+ "num_tensors": 8,
515
+ "total_params": 383221760,
516
+ "projections": {
517
+ "linear_attn.in_proj_a": 0.09687919729018711,
518
+ "linear_attn.in_proj_b": 0.11923873162733983,
519
+ "linear_attn.in_proj_qkv": 0.01863662563190624,
520
+ "linear_attn.in_proj_z": 0.02095282753368273,
521
+ "linear_attn.out_proj": 0.12635808698941553,
522
+ "mlp.down_proj": 0.01491377650472515,
523
+ "mlp.gate_proj": 0.013390944426536839,
524
+ "mlp.up_proj": 0.011022053915253752
525
+ }
526
+ }
527
+ },
528
+ {
529
+ "index": 14,
530
+ "type": "linear_attention",
531
+ "is_first": false,
532
+ "is_last": false,
533
+ "sensitivity": {
534
+ "Q2": 0.004292108069899868,
535
+ "Q3": 0.0026032951391942844,
536
+ "Q4": 0.0015789783182022015,
537
+ "Q5": 0.0009576987610111256
538
+ },
539
+ "sensitivity_score": 0.08053076909330656,
540
+ "bits_for_threshold": {
541
+ "0.001": 5,
542
+ "0.0005": 5,
543
+ "0.0001": 5,
544
+ "1e-05": 5
545
+ },
546
+ "weight_stats": {
547
+ "avg_kurtosis": 1.4482307434082031,
548
+ "avg_variance": 0.00021892862878303276,
549
+ "avg_outlier_fraction": 0.0044463817278544105,
550
+ "num_tensors": 8,
551
+ "total_params": 383221760,
552
+ "projections": {
553
+ "linear_attn.in_proj_a": 0.08079639755411652,
554
+ "linear_attn.in_proj_b": 0.11375820634628461,
555
+ "linear_attn.in_proj_qkv": 0.026932290408579453,
556
+ "linear_attn.in_proj_z": 0.022079692648283987,
557
+ "linear_attn.out_proj": 0.17557339533743282,
558
+ "mlp.down_proj": 0.015040234290901545,
559
+ "mlp.gate_proj": 0.012543150221757705,
560
+ "mlp.up_proj": 0.011137091474571925
561
+ }
562
+ }
563
+ },
564
+ {
565
+ "index": 15,
566
+ "type": "full_attention",
567
+ "is_first": false,
568
+ "is_last": false,
569
+ "sensitivity": {
570
+ "Q2": 0.003984512092279185,
571
+ "Q3": 0.0024167287479630595,
572
+ "Q4": 0.0014658200818485213,
573
+ "Q5": 0.0008890648212636099
574
+ },
575
+ "sensitivity_score": 0.04706536246905264,
576
+ "bits_for_threshold": {
577
+ "0.001": 5,
578
+ "0.0005": 5,
579
+ "0.0001": 5,
580
+ "1e-05": 5
581
+ },
582
+ "weight_stats": {
583
+ "avg_kurtosis": 0.6344356536865234,
584
+ "avg_variance": 0.00019659116203131686,
585
+ "avg_outlier_fraction": 0.0038768466447247846,
586
+ "num_tensors": 7,
587
+ "total_params": 372244480,
588
+ "projections": {
589
+ "mlp.gate_proj": 0.013479267087921428,
590
+ "mlp.down_proj": 0.016276499558682198,
591
+ "mlp.up_proj": 0.011752285964353596,
592
+ "self_attn.k_proj": 0.06229390742230427,
593
+ "self_attn.o_proj": 0.11288231401394391,
594
+ "self_attn.q_proj": 0.029745487283713394,
595
+ "self_attn.v_proj": 0.024401662649980116
596
+ }
597
+ }
598
+ },
599
+ {
600
+ "index": 16,
601
+ "type": "linear_attention",
602
+ "is_first": false,
603
+ "is_last": false,
604
+ "sensitivity": {
605
+ "Q2": 0.004197842895767816,
606
+ "Q3": 0.0025461204209400448,
607
+ "Q4": 0.0015443000986205735,
608
+ "Q5": 0.0009366653576106213
609
+ },
610
+ "sensitivity_score": 0.07191491285334732,
611
+ "bits_for_threshold": {
612
+ "0.001": 5,
613
+ "0.0005": 5,
614
+ "0.0001": 5,
615
+ "1e-05": 5
616
+ },
617
+ "weight_stats": {
618
+ "avg_kurtosis": 1.1935931146144867,
619
+ "avg_variance": 0.00021732694767706562,
620
+ "avg_outlier_fraction": 0.004531474721197989,
621
+ "num_tensors": 8,
622
+ "total_params": 383221760,
623
+ "projections": {
624
+ "linear_attn.in_proj_a": 0.06807790544063178,
625
+ "linear_attn.in_proj_b": 0.11676945262687412,
626
+ "linear_attn.in_proj_qkv": 0.02388847205859711,
627
+ "linear_attn.in_proj_z": 0.023498337604237376,
628
+ "linear_attn.out_proj": 0.15423067814041258,
629
+ "mlp.down_proj": 0.01971542829141544,
630
+ "mlp.gate_proj": 0.01594272517182841,
631
+ "mlp.up_proj": 0.012841251309423837
632
+ }
633
+ }
634
+ },
635
+ {
636
+ "index": 17,
637
+ "type": "linear_attention",
638
+ "is_first": false,
639
+ "is_last": false,
640
+ "sensitivity": {
641
+ "Q2": 0.004097063123831622,
642
+ "Q3": 0.002484994399381896,
643
+ "Q4": 0.001507225292439301,
644
+ "Q5": 0.0009141783509587759
645
+ },
646
+ "sensitivity_score": 0.06122008207995245,
647
+ "bits_for_threshold": {
648
+ "0.001": 5,
649
+ "0.0005": 5,
650
+ "0.0001": 5,
651
+ "1e-05": 5
652
+ },
653
+ "weight_stats": {
654
+ "avg_kurtosis": 0.9207834899425507,
655
+ "avg_variance": 0.00021618874961859547,
656
+ "avg_outlier_fraction": 0.004496390913047042,
657
+ "num_tensors": 8,
658
+ "total_params": 383221760,
659
+ "projections": {
660
+ "linear_attn.in_proj_a": 0.07470978145115156,
661
+ "linear_attn.in_proj_b": 0.1152286658426401,
662
+ "linear_attn.in_proj_qkv": 0.0239734198966825,
663
+ "linear_attn.in_proj_z": 0.024433562474454336,
664
+ "linear_attn.out_proj": 0.11549428602890442,
665
+ "mlp.down_proj": 0.020526027272781928,
666
+ "mlp.gate_proj": 0.017832910337902175,
667
+ "mlp.up_proj": 0.01456132791402758
668
+ }
669
+ }
670
+ },
671
+ {
672
+ "index": 18,
673
+ "type": "linear_attention",
674
+ "is_first": false,
675
+ "is_last": false,
676
+ "sensitivity": {
677
+ "Q2": 0.004327555282376906,
678
+ "Q3": 0.002624794960362956,
679
+ "Q4": 0.0015920186189193396,
680
+ "Q5": 0.0009656081032079425
681
+ },
682
+ "sensitivity_score": 0.0837596286075041,
683
+ "bits_for_threshold": {
684
+ "0.001": 5,
685
+ "0.0005": 5,
686
+ "0.0001": 5,
687
+ "1e-05": 5
688
+ },
689
+ "weight_stats": {
690
+ "avg_kurtosis": 1.5495342910289764,
691
+ "avg_variance": 0.0002139805947081186,
692
+ "avg_outlier_fraction": 0.004439106688779943,
693
+ "num_tensors": 8,
694
+ "total_params": 383221760,
695
+ "projections": {
696
+ "linear_attn.in_proj_a": 0.06598035905329383,
697
+ "linear_attn.in_proj_b": 0.09620419021673098,
698
+ "linear_attn.in_proj_qkv": 0.026510804070145715,
699
+ "linear_attn.in_proj_z": 0.028485543422213336,
700
+ "linear_attn.out_proj": 0.16642605853511258,
701
+ "mlp.down_proj": 0.1004216974906756,
702
+ "mlp.gate_proj": 0.037844753353681884,
703
+ "mlp.up_proj": 0.020106347310318504
704
+ }
705
+ }
706
+ },
707
+ {
708
+ "index": 19,
709
+ "type": "full_attention",
710
+ "is_first": false,
711
+ "is_last": false,
712
+ "sensitivity": {
713
+ "Q2": 0.004129691089108795,
714
+ "Q3": 0.002504784260686541,
715
+ "Q4": 0.0015192284500720288,
716
+ "Q5": 0.0009214586340763892
717
+ },
718
+ "sensitivity_score": 0.06540007117879425,
719
+ "bits_for_threshold": {
720
+ "0.001": 5,
721
+ "0.0005": 5,
722
+ "0.0001": 5,
723
+ "1e-05": 5
724
+ },
725
+ "weight_stats": {
726
+ "avg_kurtosis": 1.027207851409912,
727
+ "avg_variance": 0.0001984563932637684,
728
+ "avg_outlier_fraction": 0.004429690710970667,
729
+ "num_tensors": 7,
730
+ "total_params": 372244480,
731
+ "projections": {
732
+ "mlp.down_proj": 0.042336525545915375,
733
+ "mlp.gate_proj": 0.015367687924632148,
734
+ "mlp.up_proj": 0.012805681076387824,
735
+ "self_attn.k_proj": 0.07680353113277866,
736
+ "self_attn.o_proj": 0.13009964762580484,
737
+ "self_attn.q_proj": 0.030674135134317333,
738
+ "self_attn.v_proj": 0.08109053116796922
739
+ }
740
+ }
741
+ },
742
+ {
743
+ "index": 20,
744
+ "type": "linear_attention",
745
+ "is_first": false,
746
+ "is_last": false,
747
+ "sensitivity": {
748
+ "Q2": 0.0041605255351748775,
749
+ "Q3": 0.0025234862976008755,
750
+ "Q4": 0.0015305718088596502,
751
+ "Q5": 0.0009283387289652022
752
+ },
753
+ "sensitivity_score": 0.06857580791350278,
754
+ "bits_for_threshold": {
755
+ "0.001": 5,
756
+ "0.0005": 5,
757
+ "0.0001": 5,
758
+ "1e-05": 5
759
+ },
760
+ "weight_stats": {
761
+ "avg_kurtosis": 1.099842518568039,
762
+ "avg_variance": 0.0002096384405376739,
763
+ "avg_outlier_fraction": 0.0046092175969890525,
764
+ "num_tensors": 8,
765
+ "total_params": 383221760,
766
+ "projections": {
767
+ "linear_attn.in_proj_a": 0.08125734108191227,
768
+ "linear_attn.in_proj_b": 0.12419723410445034,
769
+ "linear_attn.in_proj_qkv": 0.029964345118466067,
770
+ "linear_attn.in_proj_z": 0.026579225207784614,
771
+ "linear_attn.out_proj": 0.1312035765604614,
772
+ "mlp.down_proj": 0.021774118760635723,
773
+ "mlp.gate_proj": 0.014259043194643996,
774
+ "mlp.up_proj": 0.011928247616330762
775
+ }
776
+ }
777
+ },
778
+ {
779
+ "index": 21,
780
+ "type": "linear_attention",
781
+ "is_first": false,
782
+ "is_last": false,
783
+ "sensitivity": {
784
+ "Q2": 0.0041660264094503475,
785
+ "Q3": 0.0025268227465041725,
786
+ "Q4": 0.0015325954674140641,
787
+ "Q5": 0.0009295661399232442
788
+ },
789
+ "sensitivity_score": 0.06926060114412724,
790
+ "bits_for_threshold": {
791
+ "0.001": 5,
792
+ "0.0005": 5,
793
+ "0.0001": 5,
794
+ "1e-05": 5
795
+ },
796
+ "weight_stats": {
797
+ "avg_kurtosis": 1.1202507317066193,
798
+ "avg_variance": 0.0002041831539827399,
799
+ "avg_outlier_fraction": 0.004564843271292892,
800
+ "num_tensors": 8,
801
+ "total_params": 383221760,
802
+ "projections": {
803
+ "linear_attn.in_proj_a": 0.08660602582543538,
804
+ "linear_attn.in_proj_b": 0.0966366162295419,
805
+ "linear_attn.in_proj_qkv": 0.03380157548501733,
806
+ "linear_attn.in_proj_z": 0.02975318639387415,
807
+ "linear_attn.out_proj": 0.14765271780230274,
808
+ "mlp.down_proj": 0.01815604514240138,
809
+ "mlp.gate_proj": 0.013564406467699665,
810
+ "mlp.up_proj": 0.012020572291848634
811
+ }
812
+ }
813
+ },
814
+ {
815
+ "index": 22,
816
+ "type": "linear_attention",
817
+ "is_first": false,
818
+ "is_last": false,
819
+ "sensitivity": {
820
+ "Q2": 0.004212494733785098,
821
+ "Q3": 0.002555007209918669,
822
+ "Q4": 0.0015496902086025055,
823
+ "Q5": 0.0009399346245738861
824
+ },
825
+ "sensitivity_score": 0.07395464587776678,
826
+ "bits_for_threshold": {
827
+ "0.001": 5,
828
+ "0.0005": 5,
829
+ "0.0001": 5,
830
+ "1e-05": 5
831
+ },
832
+ "weight_stats": {
833
+ "avg_kurtosis": 1.2501289248466492,
834
+ "avg_variance": 0.00020061896248080302,
835
+ "avg_outlier_fraction": 0.004533810381795845,
836
+ "num_tensors": 8,
837
+ "total_params": 383221760,
838
+ "projections": {
839
+ "linear_attn.in_proj_a": 0.1037574327579512,
840
+ "linear_attn.in_proj_b": 0.09468148478819058,
841
+ "linear_attn.in_proj_qkv": 0.02444242858531728,
842
+ "linear_attn.in_proj_z": 0.023105408077045676,
843
+ "linear_attn.out_proj": 0.12869022029657168,
844
+ "mlp.down_proj": 0.08710989702838987,
845
+ "mlp.gate_proj": 0.028087745503293,
846
+ "mlp.up_proj": 0.022007857074115535
847
+ }
848
+ }
849
+ },
850
+ {
851
+ "index": 23,
852
+ "type": "full_attention",
853
+ "is_first": false,
854
+ "is_last": false,
855
+ "sensitivity": {
856
+ "Q2": 0.004077489608736456,
857
+ "Q3": 0.0024731224623583303,
858
+ "Q4": 0.0015000245986443307,
859
+ "Q5": 0.0009098109094009241
860
+ },
861
+ "sensitivity_score": 0.05977445460612456,
862
+ "bits_for_threshold": {
863
+ "0.001": 5,
864
+ "0.0005": 5,
865
+ "0.0001": 5,
866
+ "1e-05": 5
867
+ },
868
+ "weight_stats": {
869
+ "avg_kurtosis": 0.8849819387708392,
870
+ "avg_variance": 0.00019878397038805166,
871
+ "avg_outlier_fraction": 0.004526522446747254,
872
+ "num_tensors": 7,
873
+ "total_params": 372244480,
874
+ "projections": {
875
+ "mlp.down_proj": 0.04859526540515059,
876
+ "mlp.gate_proj": 0.013447910316138624,
877
+ "mlp.up_proj": 0.013718705408328553,
878
+ "self_attn.k_proj": 0.08154726699241946,
879
+ "self_attn.o_proj": 0.11750877327621276,
880
+ "self_attn.q_proj": 0.03265515359203681,
881
+ "self_attn.v_proj": 0.05701779617817162
882
+ }
883
+ }
884
+ },
885
+ {
886
+ "index": 24,
887
+ "type": "linear_attention",
888
+ "is_first": false,
889
+ "is_last": false,
890
+ "sensitivity": {
891
+ "Q2": 0.004269293977914668,
892
+ "Q3": 0.002589457692931756,
893
+ "Q4": 0.001570585482791852,
894
+ "Q5": 0.0009526082490128269
895
+ },
896
+ "sensitivity_score": 0.08086417798366653,
897
+ "bits_for_threshold": {
898
+ "0.001": 5,
899
+ "0.0005": 5,
900
+ "0.0001": 5,
901
+ "1e-05": 5
902
+ },
903
+ "weight_stats": {
904
+ "avg_kurtosis": 1.4182866513729095,
905
+ "avg_variance": 0.00018685758914216422,
906
+ "avg_outlier_fraction": 0.005105980424319996,
907
+ "num_tensors": 8,
908
+ "total_params": 383221760,
909
+ "projections": {
910
+ "linear_attn.in_proj_a": 0.12054025084066705,
911
+ "linear_attn.in_proj_b": 0.14755981022933995,
912
+ "linear_attn.in_proj_qkv": 0.03338629098503226,
913
+ "linear_attn.in_proj_z": 0.029553111713875306,
914
+ "linear_attn.out_proj": 0.1144336493718655,
915
+ "mlp.down_proj": 0.06361312244339147,
916
+ "mlp.gate_proj": 0.015436342893941506,
917
+ "mlp.up_proj": 0.01635158194531168
918
+ }
919
+ }
920
+ },
921
+ {
922
+ "index": 25,
923
+ "type": "linear_attention",
924
+ "is_first": false,
925
+ "is_last": false,
926
+ "sensitivity": {
927
+ "Q2": 0.00422265126597833,
928
+ "Q3": 0.002561167458090223,
929
+ "Q4": 0.0015534265879899914,
930
+ "Q5": 0.0009422008532287147
931
+ },
932
+ "sensitivity_score": 0.07663016851109529,
933
+ "bits_for_threshold": {
934
+ "0.001": 5,
935
+ "0.0005": 5,
936
+ "0.0001": 5,
937
+ "1e-05": 5
938
+ },
939
+ "weight_stats": {
940
+ "avg_kurtosis": 1.2893954813480377,
941
+ "avg_variance": 0.00018896072288043797,
942
+ "avg_outlier_fraction": 0.005179793367198869,
943
+ "num_tensors": 8,
944
+ "total_params": 383221760,
945
+ "projections": {
946
+ "linear_attn.in_proj_a": 0.10427813226129529,
947
+ "linear_attn.in_proj_b": 0.16231202355020719,
948
+ "linear_attn.in_proj_qkv": 0.032852957328173116,
949
+ "linear_attn.in_proj_z": 0.026237563316102105,
950
+ "linear_attn.out_proj": 0.09899576673304561,
951
+ "mlp.down_proj": 0.03981764823731008,
952
+ "mlp.gate_proj": 0.015540169023230264,
953
+ "mlp.up_proj": 0.017216943096840544
954
+ }
955
+ }
956
+ },
957
+ {
958
+ "index": 26,
959
+ "type": "linear_attention",
960
+ "is_first": false,
961
+ "is_last": false,
962
+ "sensitivity": {
963
+ "Q2": 0.004221727123820657,
964
+ "Q3": 0.0025606069375376616,
965
+ "Q4": 0.001553086615089464,
966
+ "Q5": 0.0009419946492410734
967
+ },
968
+ "sensitivity_score": 0.07684290828535784,
969
+ "bits_for_threshold": {
970
+ "0.001": 5,
971
+ "0.0005": 5,
972
+ "0.0001": 5,
973
+ "1e-05": 5
974
+ },
975
+ "weight_stats": {
976
+ "avg_kurtosis": 1.2855631709098816,
977
+ "avg_variance": 0.00019028095448447857,
978
+ "avg_outlier_fraction": 0.00535315055473178,
979
+ "num_tensors": 8,
980
+ "total_params": 383221760,
981
+ "projections": {
982
+ "linear_attn.in_proj_a": 0.10653585460551271,
983
+ "linear_attn.in_proj_b": 0.14568765626339958,
984
+ "linear_attn.in_proj_qkv": 0.03727150741863803,
985
+ "linear_attn.in_proj_z": 0.0302260341142574,
986
+ "linear_attn.out_proj": 0.10445472383911916,
987
+ "mlp.down_proj": 0.06260224245736695,
988
+ "mlp.gate_proj": 0.021206720291222985,
989
+ "mlp.up_proj": 0.022541506526455958
990
+ }
991
+ }
992
+ },
993
+ {
994
+ "index": 27,
995
+ "type": "full_attention",
996
+ "is_first": false,
997
+ "is_last": false,
998
+ "sensitivity": {
999
+ "Q2": 0.004049862918128315,
1000
+ "Q3": 0.0024563660274780977,
1001
+ "Q4": 0.0014898613071419914,
1002
+ "Q5": 0.0009036465615011584
1003
+ },
1004
+ "sensitivity_score": 0.05764393347091426,
1005
+ "bits_for_threshold": {
1006
+ "0.001": 5,
1007
+ "0.0005": 5,
1008
+ "0.0001": 5,
1009
+ "1e-05": 5
1010
+ },
1011
+ "weight_stats": {
1012
+ "avg_kurtosis": 0.8107832159314837,
1013
+ "avg_variance": 0.0001978855621668377,
1014
+ "avg_outlier_fraction": 0.005067630709052419,
1015
+ "num_tensors": 7,
1016
+ "total_params": 372244480,
1017
+ "projections": {
1018
+ "mlp.down_proj": 0.041858535307723044,
1019
+ "mlp.gate_proj": 0.018297015175134212,
1020
+ "mlp.up_proj": 0.02051530333181734,
1021
+ "self_attn.k_proj": 0.10515439126288281,
1022
+ "self_attn.o_proj": 0.06231550644980439,
1023
+ "self_attn.q_proj": 0.05784030340753675,
1024
+ "self_attn.v_proj": 0.06867450793934109
1025
+ }
1026
+ }
1027
+ },
1028
+ {
1029
+ "index": 28,
1030
+ "type": "linear_attention",
1031
+ "is_first": false,
1032
+ "is_last": false,
1033
+ "sensitivity": {
1034
+ "Q2": 0.004270158513240023,
1035
+ "Q3": 0.002589982060112989,
1036
+ "Q4": 0.0015709035275642167,
1037
+ "Q5": 0.0009528011529184275
1038
+ },
1039
+ "sensitivity_score": 0.08250509660821917,
1040
+ "bits_for_threshold": {
1041
+ "0.001": 5,
1042
+ "0.0005": 5,
1043
+ "0.0001": 5,
1044
+ "1e-05": 5
1045
+ },
1046
+ "weight_stats": {
1047
+ "avg_kurtosis": 1.4147803783416748,
1048
+ "avg_variance": 0.00019271391283837147,
1049
+ "avg_outlier_fraction": 0.005984360704235002,
1050
+ "num_tensors": 8,
1051
+ "total_params": 383221760,
1052
+ "projections": {
1053
+ "linear_attn.in_proj_a": 0.1045083548982515,
1054
+ "linear_attn.in_proj_b": 0.1747364576634807,
1055
+ "linear_attn.in_proj_qkv": 0.04384597102552023,
1056
+ "linear_attn.in_proj_z": 0.03450777283232467,
1057
+ "linear_attn.out_proj": 0.10715437438769372,
1058
+ "mlp.down_proj": 0.032622784842425874,
1059
+ "mlp.gate_proj": 0.02117175800801085,
1060
+ "mlp.up_proj": 0.02105789919802007
1061
+ }
1062
+ }
1063
+ },
1064
+ {
1065
+ "index": 29,
1066
+ "type": "linear_attention",
1067
+ "is_first": false,
1068
+ "is_last": false,
1069
+ "sensitivity": {
1070
+ "Q2": 0.004318433251585765,
1071
+ "Q3": 0.0026192621690092864,
1072
+ "Q4": 0.0015886628113295459,
1073
+ "Q5": 0.0009635727030166363
1074
+ },
1075
+ "sensitivity_score": 0.08672760054869848,
1076
+ "bits_for_threshold": {
1077
+ "0.001": 5,
1078
+ "0.0005": 5,
1079
+ "0.0001": 5,
1080
+ "1e-05": 5
1081
+ },
1082
+ "weight_stats": {
1083
+ "avg_kurtosis": 1.5542789995670319,
1084
+ "avg_variance": 0.00018443963563186117,
1085
+ "avg_outlier_fraction": 0.00584931214650472,
1086
+ "num_tensors": 8,
1087
+ "total_params": 383221760,
1088
+ "projections": {
1089
+ "linear_attn.in_proj_a": 0.11967799802357863,
1090
+ "linear_attn.in_proj_b": 0.19028487385192444,
1091
+ "linear_attn.in_proj_qkv": 0.031291084366903824,
1092
+ "linear_attn.in_proj_z": 0.030442512363642288,
1093
+ "linear_attn.out_proj": 0.0867225338078225,
1094
+ "mlp.down_proj": 0.03585123171950306,
1095
+ "mlp.gate_proj": 0.01983014299587969,
1096
+ "mlp.up_proj": 0.020968170589207694
1097
+ }
1098
+ }
1099
+ },
1100
+ {
1101
+ "index": 30,
1102
+ "type": "linear_attention",
1103
+ "is_first": false,
1104
+ "is_last": false,
1105
+ "sensitivity": {
1106
+ "Q2": 0.004205873503605279,
1107
+ "Q3": 0.0025509912308095944,
1108
+ "Q4": 0.0015472543941440862,
1109
+ "Q5": 0.0009384572284234835
1110
+ },
1111
+ "sensitivity_score": 0.07591578793973096,
1112
+ "bits_for_threshold": {
1113
+ "0.001": 5,
1114
+ "0.0005": 5,
1115
+ "0.0001": 5,
1116
+ "1e-05": 5
1117
+ },
1118
+ "weight_stats": {
1119
+ "avg_kurtosis": 1.2438977658748627,
1120
+ "avg_variance": 0.00018885175177274505,
1121
+ "avg_outlier_fraction": 0.0056255401817022575,
1122
+ "num_tensors": 8,
1123
+ "total_params": 383221760,
1124
+ "projections": {
1125
+ "linear_attn.in_proj_a": 0.08653389883150736,
1126
+ "linear_attn.in_proj_b": 0.15007189165938606,
1127
+ "linear_attn.in_proj_qkv": 0.040471208409652945,
1128
+ "linear_attn.in_proj_z": 0.03852412515962939,
1129
+ "linear_attn.out_proj": 0.10851503490605718,
1130
+ "mlp.down_proj": 0.05322817633123281,
1131
+ "mlp.gate_proj": 0.024131589502039957,
1132
+ "mlp.up_proj": 0.023906932942294522
1133
+ }
1134
+ }
1135
+ },
1136
+ {
1137
+ "index": 31,
1138
+ "type": "full_attention",
1139
+ "is_first": false,
1140
+ "is_last": false,
1141
+ "sensitivity": {
1142
+ "Q2": 0.004032113801332048,
1143
+ "Q3": 0.002445600643958341,
1144
+ "Q4": 0.001483331771973694,
1145
+ "Q5": 0.0008996861982279141
1146
+ },
1147
+ "sensitivity_score": 0.055220629955629374,
1148
+ "bits_for_threshold": {
1149
+ "0.001": 5,
1150
+ "0.0005": 5,
1151
+ "0.0001": 5,
1152
+ "1e-05": 5
1153
+ },
1154
+ "weight_stats": {
1155
+ "avg_kurtosis": 0.7589453969682965,
1156
+ "avg_variance": 0.00020147627947153524,
1157
+ "avg_outlier_fraction": 0.005017708930648676,
1158
+ "num_tensors": 7,
1159
+ "total_params": 372244480,
1160
+ "projections": {
1161
+ "mlp.down_proj": 0.047065884367434925,
1162
+ "mlp.gate_proj": 0.026100869949137018,
1163
+ "mlp.up_proj": 0.02360452108949996,
1164
+ "self_attn.k_proj": 0.0989755840601774,
1165
+ "self_attn.o_proj": 0.0676318145663646,
1166
+ "self_attn.q_proj": 0.04429042902673415,
1167
+ "self_attn.v_proj": 0.05604198333388132
1168
+ }
1169
+ }
1170
+ },
1171
+ {
1172
+ "index": 32,
1173
+ "type": "linear_attention",
1174
+ "is_first": false,
1175
+ "is_last": false,
1176
+ "sensitivity": {
1177
+ "Q2": 0.0044161624369653185,
1178
+ "Q3": 0.0026785379162907255,
1179
+ "Q4": 0.0016246153694331165,
1180
+ "Q5": 0.0009853790318015518
1181
+ },
1182
+ "sensitivity_score": 0.09550570549699304,
1183
+ "bits_for_threshold": {
1184
+ "0.001": 5,
1185
+ "0.0005": 5,
1186
+ "0.0001": 5,
1187
+ "1e-05": 5
1188
+ },
1189
+ "weight_stats": {
1190
+ "avg_kurtosis": 1.819901466369629,
1191
+ "avg_variance": 0.0001844726375566097,
1192
+ "avg_outlier_fraction": 0.006281085902569341,
1193
+ "num_tensors": 8,
1194
+ "total_params": 383221760,
1195
+ "projections": {
1196
+ "linear_attn.in_proj_a": 0.10923994317294461,
1197
+ "linear_attn.in_proj_b": 0.20634147487831642,
1198
+ "linear_attn.in_proj_qkv": 0.04161406303331774,
1199
+ "linear_attn.in_proj_z": 0.03390028852260153,
1200
+ "linear_attn.out_proj": 0.10115499463872771,
1201
+ "mlp.down_proj": 0.04969016784895894,
1202
+ "mlp.gate_proj": 0.03226164437508722,
1203
+ "mlp.up_proj": 0.02497190641807247
1204
+ }
1205
+ }
1206
+ },
1207
+ {
1208
+ "index": 33,
1209
+ "type": "linear_attention",
1210
+ "is_first": false,
1211
+ "is_last": false,
1212
+ "sensitivity": {
1213
+ "Q2": 0.00435096339934087,
1214
+ "Q3": 0.0026389927009877394,
1215
+ "Q4": 0.0016006299839069183,
1216
+ "Q5": 0.0009708311600948848
1217
+ },
1218
+ "sensitivity_score": 0.09018832015058377,
1219
+ "bits_for_threshold": {
1220
+ "0.001": 5,
1221
+ "0.0005": 5,
1222
+ "0.0001": 5,
1223
+ "1e-05": 5
1224
+ },
1225
+ "weight_stats": {
1226
+ "avg_kurtosis": 1.648076206445694,
1227
+ "avg_variance": 0.0001790685382729862,
1228
+ "avg_outlier_fraction": 0.006137242363948448,
1229
+ "num_tensors": 8,
1230
+ "total_params": 383221760,
1231
+ "projections": {
1232
+ "linear_attn.in_proj_a": 0.11960422747674283,
1233
+ "linear_attn.in_proj_b": 0.19143515604090502,
1234
+ "linear_attn.in_proj_qkv": 0.04129217291163766,
1235
+ "linear_attn.in_proj_z": 0.035352292183644024,
1236
+ "linear_attn.out_proj": 0.08816567326629393,
1237
+ "mlp.down_proj": 0.03698094156014318,
1238
+ "mlp.gate_proj": 0.040281600196306715,
1239
+ "mlp.up_proj": 0.02792511940661611
1240
+ }
1241
+ }
1242
+ },
1243
+ {
1244
+ "index": 34,
1245
+ "type": "linear_attention",
1246
+ "is_first": false,
1247
+ "is_last": false,
1248
+ "sensitivity": {
1249
+ "Q2": 0.004544472120107391,
1250
+ "Q3": 0.0027563616730544053,
1251
+ "Q4": 0.0016718178639643067,
1252
+ "Q5": 0.0010140087919496366
1253
+ },
1254
+ "sensitivity_score": 0.10405455977241322,
1255
+ "bits_for_threshold": {
1256
+ "0.001": 5,
1257
+ "0.0005": 5,
1258
+ "0.0001": 5,
1259
+ "1e-05": 5
1260
+ },
1261
+ "weight_stats": {
1262
+ "avg_kurtosis": 2.169001281261444,
1263
+ "avg_variance": 0.00018415470276522683,
1264
+ "avg_outlier_fraction": 0.0058869377304525934,
1265
+ "num_tensors": 8,
1266
+ "total_params": 383221760,
1267
+ "projections": {
1268
+ "linear_attn.in_proj_a": 0.09151253459572478,
1269
+ "linear_attn.in_proj_b": 0.21006070308939348,
1270
+ "linear_attn.in_proj_qkv": 0.04123833078730292,
1271
+ "linear_attn.in_proj_z": 0.05339297533896027,
1272
+ "linear_attn.out_proj": 0.10220206473486522,
1273
+ "mlp.down_proj": 0.06994263158475683,
1274
+ "mlp.gate_proj": 0.08207075487806395,
1275
+ "mlp.up_proj": 0.031801946776250055
1276
+ }
1277
+ }
1278
+ },
1279
+ {
1280
+ "index": 35,
1281
+ "type": "full_attention",
1282
+ "is_first": false,
1283
+ "is_last": false,
1284
+ "sensitivity": {
1285
+ "Q2": 0.004098493717652956,
1286
+ "Q3": 0.002485862098396131,
1287
+ "Q4": 0.0015077515784948368,
1288
+ "Q5": 0.0009144975595872377
1289
+ },
1290
+ "sensitivity_score": 0.06258564044029019,
1291
+ "bits_for_threshold": {
1292
+ "0.001": 5,
1293
+ "0.0005": 5,
1294
+ "0.0001": 5,
1295
+ "1e-05": 5
1296
+ },
1297
+ "weight_stats": {
1298
+ "avg_kurtosis": 0.9343220165797642,
1299
+ "avg_variance": 0.00020653898016982048,
1300
+ "avg_outlier_fraction": 0.004898414424821441,
1301
+ "num_tensors": 7,
1302
+ "total_params": 372244480,
1303
+ "projections": {
1304
+ "mlp.down_proj": 0.05028761867964432,
1305
+ "mlp.gate_proj": 0.0463640078997008,
1306
+ "mlp.up_proj": 0.023922911745619148,
1307
+ "self_attn.k_proj": 0.08852802591363515,
1308
+ "self_attn.o_proj": 0.07370471695746832,
1309
+ "self_attn.q_proj": 0.055069811258261145,
1310
+ "self_attn.v_proj": 0.08369265745470361
1311
+ }
1312
+ }
1313
+ },
1314
+ {
1315
+ "index": 36,
1316
+ "type": "linear_attention",
1317
+ "is_first": false,
1318
+ "is_last": false,
1319
+ "sensitivity": {
1320
+ "Q2": 0.004300475253682692,
1321
+ "Q3": 0.0026083700926940174,
1322
+ "Q4": 0.0015820564330964056,
1323
+ "Q5": 0.0009595657320685785
1324
+ },
1325
+ "sensitivity_score": 0.0843885708763309,
1326
+ "bits_for_threshold": {
1327
+ "0.001": 5,
1328
+ "0.0005": 5,
1329
+ "0.0001": 5,
1330
+ "1e-05": 5
1331
+ },
1332
+ "weight_stats": {
1333
+ "avg_kurtosis": 1.5056437253952026,
1334
+ "avg_variance": 0.000184260010428261,
1335
+ "avg_outlier_fraction": 0.005448773468241972,
1336
+ "num_tensors": 8,
1337
+ "total_params": 383221760,
1338
+ "projections": {
1339
+ "linear_attn.in_proj_a": 0.12898835573893702,
1340
+ "linear_attn.in_proj_b": 0.1720290797977254,
1341
+ "linear_attn.in_proj_qkv": 0.03864094596311074,
1342
+ "linear_attn.in_proj_z": 0.030516490337734355,
1343
+ "linear_attn.out_proj": 0.08825596966942391,
1344
+ "mlp.down_proj": 0.02479631579755776,
1345
+ "mlp.gate_proj": 0.045544006088230324,
1346
+ "mlp.up_proj": 0.018943707290384786
1347
+ }
1348
+ }
1349
+ },
1350
+ {
1351
+ "index": 37,
1352
+ "type": "linear_attention",
1353
+ "is_first": false,
1354
+ "is_last": false,
1355
+ "sensitivity": {
1356
+ "Q2": 0.0042175895961540635,
1357
+ "Q3": 0.0025580974001524633,
1358
+ "Q4": 0.0015515645037236462,
1359
+ "Q5": 0.0009410714420302077
1360
+ },
1361
+ "sensitivity_score": 0.07602821485969939,
1362
+ "bits_for_threshold": {
1363
+ "0.001": 5,
1364
+ "0.0005": 5,
1365
+ "0.0001": 5,
1366
+ "1e-05": 5
1367
+ },
1368
+ "weight_stats": {
1369
+ "avg_kurtosis": 1.2749283909797668,
1370
+ "avg_variance": 0.000189668768143747,
1371
+ "avg_outlier_fraction": 0.0051323713975794175,
1372
+ "num_tensors": 8,
1373
+ "total_params": 383221760,
1374
+ "projections": {
1375
+ "linear_attn.in_proj_a": 0.13294682642122493,
1376
+ "linear_attn.in_proj_b": 0.12091635242314672,
1377
+ "linear_attn.in_proj_qkv": 0.044034557724741415,
1378
+ "linear_attn.in_proj_z": 0.03354493150670609,
1379
+ "linear_attn.out_proj": 0.11603318026171366,
1380
+ "mlp.down_proj": 0.021402288190216716,
1381
+ "mlp.gate_proj": 0.026962686527784246,
1382
+ "mlp.up_proj": 0.015817149774431292
1383
+ }
1384
+ }
1385
+ },
1386
+ {
1387
+ "index": 38,
1388
+ "type": "linear_attention",
1389
+ "is_first": false,
1390
+ "is_last": false,
1391
+ "sensitivity": {
1392
+ "Q2": 0.004303565810511135,
1393
+ "Q3": 0.002610244610166053,
1394
+ "Q4": 0.001583193385415362,
1395
+ "Q5": 0.0009602553285086569
1396
+ },
1397
+ "sensitivity_score": 0.08427848485943754,
1398
+ "bits_for_threshold": {
1399
+ "0.001": 5,
1400
+ "0.0005": 5,
1401
+ "0.0001": 5,
1402
+ "1e-05": 5
1403
+ },
1404
+ "weight_stats": {
1405
+ "avg_kurtosis": 1.5143660306930542,
1406
+ "avg_variance": 0.00018393870959698688,
1407
+ "avg_outlier_fraction": 0.005254736133650238,
1408
+ "num_tensors": 8,
1409
+ "total_params": 383221760,
1410
+ "projections": {
1411
+ "linear_attn.in_proj_a": 0.15769019806136683,
1412
+ "linear_attn.in_proj_b": 0.13685802962610139,
1413
+ "linear_attn.in_proj_qkv": 0.027778748216587715,
1414
+ "linear_attn.in_proj_z": 0.025727930009410267,
1415
+ "linear_attn.out_proj": 0.0819630546419225,
1416
+ "mlp.down_proj": 0.07134105693952474,
1417
+ "mlp.gate_proj": 0.04531415010319092,
1418
+ "mlp.up_proj": 0.02029628636174793
1419
+ }
1420
+ }
1421
+ },
1422
+ {
1423
+ "index": 39,
1424
+ "type": "full_attention",
1425
+ "is_first": false,
1426
+ "is_last": false,
1427
+ "sensitivity": {
1428
+ "Q2": 0.004047993982209793,
1429
+ "Q3": 0.002455232460542476,
1430
+ "Q4": 0.0014891737640407004,
1431
+ "Q5": 0.0009032295455303515
1432
+ },
1433
+ "sensitivity_score": 0.057114267765548066,
1434
+ "bits_for_threshold": {
1435
+ "0.001": 5,
1436
+ "0.0005": 5,
1437
+ "0.0001": 5,
1438
+ "1e-05": 5
1439
+ },
1440
+ "weight_stats": {
1441
+ "avg_kurtosis": 0.8060729163033622,
1442
+ "avg_variance": 0.0001975155672490863,
1443
+ "avg_outlier_fraction": 0.004906990815277528,
1444
+ "num_tensors": 7,
1445
+ "total_params": 372244480,
1446
+ "projections": {
1447
+ "mlp.down_proj": 0.03882501599723827,
1448
+ "mlp.gate_proj": 0.02455223234044264,
1449
+ "mlp.up_proj": 0.01468450553363545,
1450
+ "self_attn.k_proj": 0.09822723758035556,
1451
+ "self_attn.o_proj": 0.07765211252115282,
1452
+ "self_attn.q_proj": 0.04761067630829025,
1453
+ "self_attn.v_proj": 0.0697168337546889
1454
+ }
1455
+ }
1456
+ },
1457
+ {
1458
+ "index": 40,
1459
+ "type": "linear_attention",
1460
+ "is_first": false,
1461
+ "is_last": false,
1462
+ "sensitivity": {
1463
+ "Q2": 0.004462827257433304,
1464
+ "Q3": 0.002706841560634544,
1465
+ "Q4": 0.0016417823975092445,
1466
+ "Q5": 0.000995791360665871
1467
+ },
1468
+ "sensitivity_score": 0.09820939603127339,
1469
+ "bits_for_threshold": {
1470
+ "0.001": 5,
1471
+ "0.0005": 5,
1472
+ "0.0001": 5,
1473
+ "1e-05": 5
1474
+ },
1475
+ "weight_stats": {
1476
+ "avg_kurtosis": 1.9566051363945007,
1477
+ "avg_variance": 0.00017461710103816586,
1478
+ "avg_outlier_fraction": 0.00573953810860129,
1479
+ "num_tensors": 8,
1480
+ "total_params": 383221760,
1481
+ "projections": {
1482
+ "linear_attn.in_proj_a": 0.16455513176004033,
1483
+ "linear_attn.in_proj_b": 0.18236504972170434,
1484
+ "linear_attn.in_proj_qkv": 0.0433694553702698,
1485
+ "linear_attn.in_proj_z": 0.039107990576403996,
1486
+ "linear_attn.out_proj": 0.10039524152723231,
1487
+ "mlp.down_proj": 0.05079542523101708,
1488
+ "mlp.gate_proj": 0.026985528679566134,
1489
+ "mlp.up_proj": 0.017342198861088686
1490
+ }
1491
+ }
1492
+ },
1493
+ {
1494
+ "index": 41,
1495
+ "type": "linear_attention",
1496
+ "is_first": false,
1497
+ "is_last": false,
1498
+ "sensitivity": {
1499
+ "Q2": 0.004371363400719878,
1500
+ "Q3": 0.002651365927282288,
1501
+ "Q4": 0.0016081347250141245,
1502
+ "Q5": 0.0009753830156696112
1503
+ },
1504
+ "sensitivity_score": 0.09079007139901063,
1505
+ "bits_for_threshold": {
1506
+ "0.001": 5,
1507
+ "0.0005": 5,
1508
+ "0.0001": 5,
1509
+ "1e-05": 5
1510
+ },
1511
+ "weight_stats": {
1512
+ "avg_kurtosis": 1.7097097635269165,
1513
+ "avg_variance": 0.0001728879342408618,
1514
+ "avg_outlier_fraction": 0.005517917006623511,
1515
+ "num_tensors": 8,
1516
+ "total_params": 383221760,
1517
+ "projections": {
1518
+ "linear_attn.in_proj_a": 0.16140834999426387,
1519
+ "linear_attn.in_proj_b": 0.1765404649607676,
1520
+ "linear_attn.in_proj_qkv": 0.03339493354256734,
1521
+ "linear_attn.in_proj_z": 0.02963050994272628,
1522
+ "linear_attn.out_proj": 0.07010609764905644,
1523
+ "mlp.down_proj": 0.04585380398868168,
1524
+ "mlp.gate_proj": 0.027052742989016648,
1525
+ "mlp.up_proj": 0.019443770625300276
1526
+ }
1527
+ }
1528
+ },
1529
+ {
1530
+ "index": 42,
1531
+ "type": "linear_attention",
1532
+ "is_first": false,
1533
+ "is_last": false,
1534
+ "sensitivity": {
1535
+ "Q2": 0.004328630166828915,
1536
+ "Q3": 0.0026254469107387483,
1537
+ "Q4": 0.0015924140468108687,
1538
+ "Q5": 0.0009658479423478605
1539
+ },
1540
+ "sensitivity_score": 0.0875345928833794,
1541
+ "bits_for_threshold": {
1542
+ "0.001": 5,
1543
+ "0.0005": 5,
1544
+ "0.0001": 5,
1545
+ "1e-05": 5
1546
+ },
1547
+ "weight_stats": {
1548
+ "avg_kurtosis": 1.5927539765834808,
1549
+ "avg_variance": 0.00017368274802720407,
1550
+ "avg_outlier_fraction": 0.005654998199612486,
1551
+ "num_tensors": 8,
1552
+ "total_params": 383221760,
1553
+ "projections": {
1554
+ "linear_attn.in_proj_a": 0.14006268548090306,
1555
+ "linear_attn.in_proj_b": 0.1627528142597198,
1556
+ "linear_attn.in_proj_qkv": 0.03872351373929897,
1557
+ "linear_attn.in_proj_z": 0.03441101073449472,
1558
+ "linear_attn.out_proj": 0.09709812127521775,
1559
+ "mlp.down_proj": 0.05856402945165471,
1560
+ "mlp.gate_proj": 0.0353857293266324,
1561
+ "mlp.up_proj": 0.026993285153412712
1562
+ }
1563
+ }
1564
+ },
1565
+ {
1566
+ "index": 43,
1567
+ "type": "full_attention",
1568
+ "is_first": false,
1569
+ "is_last": false,
1570
+ "sensitivity": {
1571
+ "Q2": 0.004180096791342376,
1572
+ "Q3": 0.0025353568645155532,
1573
+ "Q4": 0.0015377716716415723,
1574
+ "Q5": 0.000932705666488162
1575
+ },
1576
+ "sensitivity_score": 0.07277068683610907,
1577
+ "bits_for_threshold": {
1578
+ "0.001": 5,
1579
+ "0.0005": 5,
1580
+ "0.0001": 5,
1581
+ "1e-05": 5
1582
+ },
1583
+ "weight_stats": {
1584
+ "avg_kurtosis": 1.1662554059709822,
1585
+ "avg_variance": 0.0001964257431349584,
1586
+ "avg_outlier_fraction": 0.0054614129854517485,
1587
+ "num_tensors": 7,
1588
+ "total_params": 372244480,
1589
+ "projections": {
1590
+ "mlp.down_proj": 0.05103341169616973,
1591
+ "mlp.gate_proj": 0.02746843431973077,
1592
+ "mlp.up_proj": 0.02097719284162035,
1593
+ "self_attn.k_proj": 0.13169010253219313,
1594
+ "self_attn.o_proj": 0.07169602319065817,
1595
+ "self_attn.q_proj": 0.07151983449925557,
1596
+ "self_attn.v_proj": 0.08897638163915977
1597
+ }
1598
+ }
1599
+ },
1600
+ {
1601
+ "index": 44,
1602
+ "type": "linear_attention",
1603
+ "is_first": false,
1604
+ "is_last": false,
1605
+ "sensitivity": {
1606
+ "Q2": 0.004241526295084647,
1607
+ "Q3": 0.0025726157419461724,
1608
+ "Q4": 0.001560370323149718,
1609
+ "Q5": 0.0009464124414960136
1610
+ },
1611
+ "sensitivity_score": 0.08035139273452477,
1612
+ "bits_for_threshold": {
1613
+ "0.001": 5,
1614
+ "0.0005": 5,
1615
+ "0.0001": 5,
1616
+ "1e-05": 5
1617
+ },
1618
+ "weight_stats": {
1619
+ "avg_kurtosis": 1.3498002588748932,
1620
+ "avg_variance": 0.00017986359398491913,
1621
+ "avg_outlier_fraction": 0.005998886286043654,
1622
+ "num_tensors": 8,
1623
+ "total_params": 383221760,
1624
+ "projections": {
1625
+ "linear_attn.in_proj_a": 0.13155942539890492,
1626
+ "linear_attn.in_proj_b": 0.16172794969692098,
1627
+ "linear_attn.in_proj_qkv": 0.04048749701712939,
1628
+ "linear_attn.in_proj_z": 0.04223770720164523,
1629
+ "linear_attn.out_proj": 0.07628340730779357,
1630
+ "mlp.down_proj": 0.03452716961027945,
1631
+ "mlp.gate_proj": 0.030821797188402847,
1632
+ "mlp.up_proj": 0.022222366834633557
1633
+ }
1634
+ }
1635
+ },
1636
+ {
1637
+ "index": 45,
1638
+ "type": "linear_attention",
1639
+ "is_first": false,
1640
+ "is_last": false,
1641
+ "sensitivity": {
1642
+ "Q2": 0.004344869292516335,
1643
+ "Q3": 0.002635296438355096,
1644
+ "Q4": 0.0015983880872938697,
1645
+ "Q5": 0.000969471381063165
1646
+ },
1647
+ "sensitivity_score": 0.08883077141204586,
1648
+ "bits_for_threshold": {
1649
+ "0.001": 5,
1650
+ "0.0005": 5,
1651
+ "0.0001": 5,
1652
+ "1e-05": 5
1653
+ },
1654
+ "weight_stats": {
1655
+ "avg_kurtosis": 1.6362671256065369,
1656
+ "avg_variance": 0.00017431211927032564,
1657
+ "avg_outlier_fraction": 0.005637341807870303,
1658
+ "num_tensors": 8,
1659
+ "total_params": 383221760,
1660
+ "projections": {
1661
+ "linear_attn.in_proj_a": 0.1523773731973099,
1662
+ "linear_attn.in_proj_b": 0.17906460008415603,
1663
+ "linear_attn.in_proj_qkv": 0.0328212475084574,
1664
+ "linear_attn.in_proj_z": 0.02811250336159419,
1665
+ "linear_attn.out_proj": 0.0716679974921893,
1666
+ "mlp.down_proj": 0.03167328759826953,
1667
+ "mlp.gate_proj": 0.02901160204432895,
1668
+ "mlp.up_proj": 0.02181170688846896
1669
+ }
1670
+ }
1671
+ },
1672
+ {
1673
+ "index": 46,
1674
+ "type": "linear_attention",
1675
+ "is_first": false,
1676
+ "is_last": false,
1677
+ "sensitivity": {
1678
+ "Q2": 0.004201096781650681,
1679
+ "Q3": 0.002548094002491209,
1680
+ "Q4": 0.0015454971363407979,
1681
+ "Q5": 0.0009373913976887698
1682
+ },
1683
+ "sensitivity_score": 0.0759025680317742,
1684
+ "bits_for_threshold": {
1685
+ "0.001": 5,
1686
+ "0.0005": 5,
1687
+ "0.0001": 5,
1688
+ "1e-05": 5
1689
+ },
1690
+ "weight_stats": {
1691
+ "avg_kurtosis": 1.2430771589279175,
1692
+ "avg_variance": 0.00017668788223090814,
1693
+ "avg_outlier_fraction": 0.005633804377387551,
1694
+ "num_tensors": 8,
1695
+ "total_params": 383221760,
1696
+ "projections": {
1697
+ "linear_attn.in_proj_a": 0.12259554311235417,
1698
+ "linear_attn.in_proj_b": 0.13848190312096162,
1699
+ "linear_attn.in_proj_qkv": 0.03976116430240989,
1700
+ "linear_attn.in_proj_z": 0.0417587220723184,
1701
+ "linear_attn.out_proj": 0.08924516053465309,
1702
+ "mlp.down_proj": 0.04560302822419255,
1703
+ "mlp.gate_proj": 0.03132047034634482,
1704
+ "mlp.up_proj": 0.024325594217094328
1705
+ }
1706
+ }
1707
+ },
1708
+ {
1709
+ "index": 47,
1710
+ "type": "full_attention",
1711
+ "is_first": false,
1712
+ "is_last": false,
1713
+ "sensitivity": {
1714
+ "Q2": 0.004073515394216805,
1715
+ "Q3": 0.0024707119794038866,
1716
+ "Q4": 0.001498562566827746,
1717
+ "Q5": 0.0009089241422786901
1718
+ },
1719
+ "sensitivity_score": 0.05987345049359854,
1720
+ "bits_for_threshold": {
1721
+ "0.001": 5,
1722
+ "0.0005": 5,
1723
+ "0.0001": 5,
1724
+ "1e-05": 5
1725
+ },
1726
+ "weight_stats": {
1727
+ "avg_kurtosis": 0.8586142063140869,
1728
+ "avg_variance": 0.00021434866773363735,
1729
+ "avg_outlier_fraction": 0.005139192346097375,
1730
+ "num_tensors": 7,
1731
+ "total_params": 372244480,
1732
+ "projections": {
1733
+ "mlp.down_proj": 0.0495842755013955,
1734
+ "mlp.gate_proj": 0.03491063146613875,
1735
+ "mlp.up_proj": 0.024432653812965777,
1736
+ "self_attn.k_proj": 0.1076174750551502,
1737
+ "self_attn.o_proj": 0.05534818789170868,
1738
+ "self_attn.q_proj": 0.06369794829161848,
1739
+ "self_attn.v_proj": 0.059429695024579614
1740
+ }
1741
+ }
1742
+ },
1743
+ {
1744
+ "index": 48,
1745
+ "type": "linear_attention",
1746
+ "is_first": false,
1747
+ "is_last": false,
1748
+ "sensitivity": {
1749
+ "Q2": 0.004195649421141831,
1750
+ "Q3": 0.0025447900113280833,
1751
+ "Q4": 0.0015434931644009425,
1752
+ "Q5": 0.0009361759272660437
1753
+ },
1754
+ "sensitivity_score": 0.0752739278040686,
1755
+ "bits_for_threshold": {
1756
+ "0.001": 5,
1757
+ "0.0005": 5,
1758
+ "0.0001": 5,
1759
+ "1e-05": 5
1760
+ },
1761
+ "weight_stats": {
1762
+ "avg_kurtosis": 1.2262878715991974,
1763
+ "avg_variance": 0.00017866970847535413,
1764
+ "avg_outlier_fraction": 0.00561996815251369,
1765
+ "num_tensors": 8,
1766
+ "total_params": 383221760,
1767
+ "projections": {
1768
+ "linear_attn.in_proj_a": 0.11013361687736073,
1769
+ "linear_attn.in_proj_b": 0.13913915441414082,
1770
+ "linear_attn.in_proj_qkv": 0.03999631639460757,
1771
+ "linear_attn.in_proj_z": 0.03508470248998142,
1772
+ "linear_attn.out_proj": 0.09155896183858989,
1773
+ "mlp.down_proj": 0.04548870051307788,
1774
+ "mlp.gate_proj": 0.05105388919842095,
1775
+ "mlp.up_proj": 0.02636671065318327
1776
+ }
1777
+ }
1778
+ },
1779
+ {
1780
+ "index": 49,
1781
+ "type": "linear_attention",
1782
+ "is_first": false,
1783
+ "is_last": false,
1784
+ "sensitivity": {
1785
+ "Q2": 0.004228058570018406,
1786
+ "Q3": 0.0025644471537769175,
1787
+ "Q4": 0.001555415823978499,
1788
+ "Q5": 0.0009434073858451483
1789
+ },
1790
+ "sensitivity_score": 0.07868447196745257,
1791
+ "bits_for_threshold": {
1792
+ "0.001": 5,
1793
+ "0.0005": 5,
1794
+ "0.0001": 5,
1795
+ "1e-05": 5
1796
+ },
1797
+ "weight_stats": {
1798
+ "avg_kurtosis": 1.318045973777771,
1799
+ "avg_variance": 0.00017500880676379893,
1800
+ "avg_outlier_fraction": 0.005709752989750282,
1801
+ "num_tensors": 8,
1802
+ "total_params": 383221760,
1803
+ "projections": {
1804
+ "linear_attn.in_proj_a": 0.13224474021186944,
1805
+ "linear_attn.in_proj_b": 0.13258080142319914,
1806
+ "linear_attn.in_proj_qkv": 0.0409780836002822,
1807
+ "linear_attn.in_proj_z": 0.028858297267973163,
1808
+ "linear_attn.out_proj": 0.08188778862067207,
1809
+ "mlp.down_proj": 0.04570576022085229,
1810
+ "mlp.gate_proj": 0.07177680716099562,
1811
+ "mlp.up_proj": 0.02808067610286773
1812
+ }
1813
+ }
1814
+ },
1815
+ {
1816
+ "index": 50,
1817
+ "type": "linear_attention",
1818
+ "is_first": false,
1819
+ "is_last": false,
1820
+ "sensitivity": {
1821
+ "Q2": 0.004323655473341641,
1822
+ "Q3": 0.0026224296066160438,
1823
+ "Q4": 0.0015905839593507711,
1824
+ "Q5": 0.0009647379381933557
1825
+ },
1826
+ "sensitivity_score": 0.0871829518664568,
1827
+ "bits_for_threshold": {
1828
+ "0.001": 5,
1829
+ "0.0005": 5,
1830
+ "0.0001": 5,
1831
+ "1e-05": 5
1832
+ },
1833
+ "weight_stats": {
1834
+ "avg_kurtosis": 1.5760543644428253,
1835
+ "avg_variance": 0.00017685974125924986,
1836
+ "avg_outlier_fraction": 0.005737582562016505,
1837
+ "num_tensors": 8,
1838
+ "total_params": 383221760,
1839
+ "projections": {
1840
+ "linear_attn.in_proj_a": 0.11776350351170217,
1841
+ "linear_attn.in_proj_b": 0.14565138897979643,
1842
+ "linear_attn.in_proj_qkv": 0.0467003196285595,
1843
+ "linear_attn.in_proj_z": 0.038231771584499086,
1844
+ "linear_attn.out_proj": 0.0974394572804044,
1845
+ "mlp.down_proj": 0.0713974865703599,
1846
+ "mlp.gate_proj": 0.08571476093496216,
1847
+ "mlp.up_proj": 0.03600050337536506
1848
+ }
1849
+ }
1850
+ },
1851
+ {
1852
+ "index": 51,
1853
+ "type": "full_attention",
1854
+ "is_first": false,
1855
+ "is_last": false,
1856
+ "sensitivity": {
1857
+ "Q2": 0.004288827099438669,
1858
+ "Q3": 0.0026013051300159563,
1859
+ "Q4": 0.0015777713166224357,
1860
+ "Q5": 0.0009569666775466762
1861
+ },
1862
+ "sensitivity_score": 0.08245129567748032,
1863
+ "bits_for_threshold": {
1864
+ "0.001": 5,
1865
+ "0.0005": 5,
1866
+ "0.0001": 5,
1867
+ "1e-05": 5
1868
+ },
1869
+ "weight_stats": {
1870
+ "avg_kurtosis": 1.4336819648742676,
1871
+ "avg_variance": 0.00022455880493258258,
1872
+ "avg_outlier_fraction": 0.005644944268448346,
1873
+ "num_tensors": 7,
1874
+ "total_params": 372244480,
1875
+ "projections": {
1876
+ "mlp.down_proj": 0.05598555820609389,
1877
+ "mlp.gate_proj": 0.05871941647813809,
1878
+ "mlp.up_proj": 0.028828901508421517,
1879
+ "self_attn.k_proj": 0.09863443497816587,
1880
+ "self_attn.o_proj": 0.11126335983802528,
1881
+ "self_attn.q_proj": 0.07011111889487348,
1882
+ "self_attn.v_proj": 0.11923201992560375
1883
+ }
1884
+ }
1885
+ },
1886
+ {
1887
+ "index": 52,
1888
+ "type": "linear_attention",
1889
+ "is_first": false,
1890
+ "is_last": false,
1891
+ "sensitivity": {
1892
+ "Q2": 0.00431400539750887,
1893
+ "Q3": 0.0026165765397549163,
1894
+ "Q4": 0.0015870338948461493,
1895
+ "Q5": 0.000962584715227345
1896
+ },
1897
+ "sensitivity_score": 0.08505183016532006,
1898
+ "bits_for_threshold": {
1899
+ "0.001": 5,
1900
+ "0.0005": 5,
1901
+ "0.0001": 5,
1902
+ "1e-05": 5
1903
+ },
1904
+ "weight_stats": {
1905
+ "avg_kurtosis": 1.538617581129074,
1906
+ "avg_variance": 0.0001880648987935274,
1907
+ "avg_outlier_fraction": 0.005257367199542474,
1908
+ "num_tensors": 8,
1909
+ "total_params": 383221760,
1910
+ "projections": {
1911
+ "linear_attn.in_proj_a": 0.14932880105495275,
1912
+ "linear_attn.in_proj_b": 0.1417840481142881,
1913
+ "linear_attn.in_proj_qkv": 0.0467636264201551,
1914
+ "linear_attn.in_proj_z": 0.034477784646671984,
1915
+ "linear_attn.out_proj": 0.09124487228626221,
1916
+ "mlp.down_proj": 0.04305783408153642,
1917
+ "mlp.gate_proj": 0.053373805099835456,
1918
+ "mlp.up_proj": 0.02300955652301427
1919
+ }
1920
+ }
1921
+ },
1922
+ {
1923
+ "index": 53,
1924
+ "type": "linear_attention",
1925
+ "is_first": false,
1926
+ "is_last": false,
1927
+ "sensitivity": {
1928
+ "Q2": 0.004234966637466016,
1929
+ "Q3": 0.0025686371084832553,
1930
+ "Q4": 0.0015579571599707003,
1931
+ "Q5": 0.0009449487840410496
1932
+ },
1933
+ "sensitivity_score": 0.07710409025937316,
1934
+ "bits_for_threshold": {
1935
+ "0.001": 5,
1936
+ "0.0005": 5,
1937
+ "0.0001": 5,
1938
+ "1e-05": 5
1939
+ },
1940
+ "weight_stats": {
1941
+ "avg_kurtosis": 1.316953957080841,
1942
+ "avg_variance": 0.000194878897673334,
1943
+ "avg_outlier_fraction": 0.004938012992634492,
1944
+ "num_tensors": 8,
1945
+ "total_params": 383221760,
1946
+ "projections": {
1947
+ "linear_attn.in_proj_a": 0.14155291558902583,
1948
+ "linear_attn.in_proj_b": 0.12032158671674335,
1949
+ "linear_attn.in_proj_qkv": 0.03644263781259338,
1950
+ "linear_attn.in_proj_z": 0.029622062867162523,
1951
+ "linear_attn.out_proj": 0.09261545002623883,
1952
+ "mlp.down_proj": 0.03603235424457134,
1953
+ "mlp.gate_proj": 0.05193439058006242,
1954
+ "mlp.up_proj": 0.02190224954293519
1955
+ }
1956
+ }
1957
+ },
1958
+ {
1959
+ "index": 54,
1960
+ "type": "linear_attention",
1961
+ "is_first": false,
1962
+ "is_last": false,
1963
+ "sensitivity": {
1964
+ "Q2": 0.004374476210200192,
1965
+ "Q3": 0.0026532539416699425,
1966
+ "Q4": 0.0016092798636262156,
1967
+ "Q5": 0.0009760775773474652
1968
+ },
1969
+ "sensitivity_score": 0.08962626027192162,
1970
+ "bits_for_threshold": {
1971
+ "0.001": 5,
1972
+ "0.0005": 5,
1973
+ "0.0001": 5,
1974
+ "1e-05": 5
1975
+ },
1976
+ "weight_stats": {
1977
+ "avg_kurtosis": 1.6980465948581696,
1978
+ "avg_variance": 0.0001930125963554019,
1979
+ "avg_outlier_fraction": 0.0051081491451637415,
1980
+ "num_tensors": 8,
1981
+ "total_params": 383221760,
1982
+ "projections": {
1983
+ "linear_attn.in_proj_a": 0.17207796545648446,
1984
+ "linear_attn.in_proj_b": 0.13820565662509016,
1985
+ "linear_attn.in_proj_qkv": 0.032623411337763863,
1986
+ "linear_attn.in_proj_z": 0.02430601997560377,
1987
+ "linear_attn.out_proj": 0.08309986847366505,
1988
+ "mlp.down_proj": 0.06578305206972701,
1989
+ "mlp.gate_proj": 0.048641937391160066,
1990
+ "mlp.up_proj": 0.0226687192917766
1991
+ }
1992
+ }
1993
+ },
1994
+ {
1995
+ "index": 55,
1996
+ "type": "full_attention",
1997
+ "is_first": false,
1998
+ "is_last": false,
1999
+ "sensitivity": {
2000
+ "Q2": 0.00439288078854869,
2001
+ "Q3": 0.0026644168827173902,
2002
+ "Q4": 0.001616050529624057,
2003
+ "Q5": 0.00098018419386183
2004
+ },
2005
+ "sensitivity_score": 0.09049551366336407,
2006
+ "bits_for_threshold": {
2007
+ "0.001": 5,
2008
+ "0.0005": 5,
2009
+ "0.0001": 5,
2010
+ "1e-05": 5
2011
+ },
2012
+ "weight_stats": {
2013
+ "avg_kurtosis": 1.7039259842463903,
2014
+ "avg_variance": 0.0002371620378523533,
2015
+ "avg_outlier_fraction": 0.00545482274864902,
2016
+ "num_tensors": 7,
2017
+ "total_params": 372244480,
2018
+ "projections": {
2019
+ "mlp.down_proj": 0.04998816391164521,
2020
+ "mlp.gate_proj": 0.03459043015405194,
2021
+ "mlp.up_proj": 0.01777364437858745,
2022
+ "self_attn.k_proj": 0.12911743315291604,
2023
+ "self_attn.o_proj": 0.15865673415043668,
2024
+ "self_attn.q_proj": 0.05496087358070433,
2025
+ "self_attn.v_proj": 0.0909776654300847
2026
+ }
2027
+ }
2028
+ },
2029
+ {
2030
+ "index": 56,
2031
+ "type": "linear_attention",
2032
+ "is_first": false,
2033
+ "is_last": false,
2034
+ "sensitivity": {
2035
+ "Q2": 0.0043880639562082855,
2036
+ "Q3": 0.0026614953262202395,
2037
+ "Q4": 0.0016142785160344526,
2038
+ "Q5": 0.0009791094132903073
2039
+ },
2040
+ "sensitivity_score": 0.09044762594167045,
2041
+ "bits_for_threshold": {
2042
+ "0.001": 5,
2043
+ "0.0005": 5,
2044
+ "0.0001": 5,
2045
+ "1e-05": 5
2046
+ },
2047
+ "weight_stats": {
2048
+ "avg_kurtosis": 1.724586695432663,
2049
+ "avg_variance": 0.0002034078188444255,
2050
+ "avg_outlier_fraction": 0.005127075419706456,
2051
+ "num_tensors": 8,
2052
+ "total_params": 383221760,
2053
+ "projections": {
2054
+ "linear_attn.in_proj_a": 0.17788105102163831,
2055
+ "linear_attn.in_proj_b": 0.13962798335695167,
2056
+ "linear_attn.in_proj_qkv": 0.03684358793783166,
2057
+ "linear_attn.in_proj_z": 0.029752786176047142,
2058
+ "linear_attn.out_proj": 0.10328116795283622,
2059
+ "mlp.down_proj": 0.033492491013458324,
2060
+ "mlp.gate_proj": 0.030521209119113747,
2061
+ "mlp.up_proj": 0.015184412492155033
2062
+ }
2063
+ }
2064
+ },
2065
+ {
2066
+ "index": 57,
2067
+ "type": "linear_attention",
2068
+ "is_first": false,
2069
+ "is_last": false,
2070
+ "sensitivity": {
2071
+ "Q2": 0.00451357392458299,
2072
+ "Q3": 0.0027376209701390607,
2073
+ "Q4": 0.0016604510530615843,
2074
+ "Q5": 0.0010071144726339796
2075
+ },
2076
+ "sensitivity_score": 0.09975364008726109,
2077
+ "bits_for_threshold": {
2078
+ "0.001": 5,
2079
+ "0.0005": 5,
2080
+ "0.0001": 5,
2081
+ "1e-05": 5
2082
+ },
2083
+ "weight_stats": {
2084
+ "avg_kurtosis": 2.0655071139335632,
2085
+ "avg_variance": 0.00020365886666695587,
2086
+ "avg_outlier_fraction": 0.005064226926541796,
2087
+ "num_tensors": 8,
2088
+ "total_params": 383221760,
2089
+ "projections": {
2090
+ "linear_attn.in_proj_a": 0.19837882622400385,
2091
+ "linear_attn.in_proj_b": 0.1466995417230139,
2092
+ "linear_attn.in_proj_qkv": 0.049374289868174354,
2093
+ "linear_attn.in_proj_z": 0.025736289079009378,
2094
+ "linear_attn.out_proj": 0.10545653638456894,
2095
+ "mlp.down_proj": 0.025665119624448115,
2096
+ "mlp.gate_proj": 0.028386865263057507,
2097
+ "mlp.up_proj": 0.014918173803206146
2098
+ }
2099
+ }
2100
+ },
2101
+ {
2102
+ "index": 58,
2103
+ "type": "linear_attention",
2104
+ "is_first": false,
2105
+ "is_last": false,
2106
+ "sensitivity": {
2107
+ "Q2": 0.004606000833990021,
2108
+ "Q3": 0.002793680724476907,
2109
+ "Q4": 0.0016944530128434464,
2110
+ "Q5": 0.0010277377037319947
2111
+ },
2112
+ "sensitivity_score": 0.10559187750339236,
2113
+ "bits_for_threshold": {
2114
+ "0.001": 5,
2115
+ "0.0005": 5,
2116
+ "0.0001": 5,
2117
+ "1e-05": 5
2118
+ },
2119
+ "weight_stats": {
2120
+ "avg_kurtosis": 2.311422348022461,
2121
+ "avg_variance": 0.00020898602087982,
2122
+ "avg_outlier_fraction": 0.004896647088667926,
2123
+ "num_tensors": 8,
2124
+ "total_params": 383221760,
2125
+ "projections": {
2126
+ "linear_attn.in_proj_a": 0.21706884190940104,
2127
+ "linear_attn.in_proj_b": 0.12490643928389494,
2128
+ "linear_attn.in_proj_qkv": 0.04172127192386266,
2129
+ "linear_attn.in_proj_z": 0.023772275685991218,
2130
+ "linear_attn.out_proj": 0.10996142095021147,
2131
+ "mlp.down_proj": 0.050116875597875366,
2132
+ "mlp.gate_proj": 0.03034315006797551,
2133
+ "mlp.up_proj": 0.016399828145872465
2134
+ }
2135
+ }
2136
+ },
2137
+ {
2138
+ "index": 59,
2139
+ "type": "full_attention",
2140
+ "is_first": false,
2141
+ "is_last": false,
2142
+ "sensitivity": {
2143
+ "Q2": 0.0044998707695991305,
2144
+ "Q3": 0.002729309586506556,
2145
+ "Q4": 0.0016554099440638365,
2146
+ "Q5": 0.0010040568854678923
2147
+ },
2148
+ "sensitivity_score": 0.09867479919989683,
2149
+ "bits_for_threshold": {
2150
+ "0.001": 5,
2151
+ "0.0005": 5,
2152
+ "0.0001": 5,
2153
+ "1e-05": 5
2154
+ },
2155
+ "weight_stats": {
2156
+ "avg_kurtosis": 1.9443727220807756,
2157
+ "avg_variance": 0.0002875442213345585,
2158
+ "avg_outlier_fraction": 0.006135817669352897,
2159
+ "num_tensors": 7,
2160
+ "total_params": 372244480,
2161
+ "projections": {
2162
+ "mlp.down_proj": 0.06412835125889703,
2163
+ "mlp.gate_proj": 0.03176513208597188,
2164
+ "mlp.up_proj": 0.021316235745376173,
2165
+ "self_attn.k_proj": 0.152957987866037,
2166
+ "self_attn.o_proj": 0.1114398664971791,
2167
+ "self_attn.q_proj": 0.07318497964166454,
2168
+ "self_attn.v_proj": 0.15233422211827732
2169
+ }
2170
+ }
2171
+ },
2172
+ {
2173
+ "index": 60,
2174
+ "type": "linear_attention",
2175
+ "is_first": false,
2176
+ "is_last": false,
2177
+ "sensitivity": {
2178
+ "Q2": 0.004698325426212627,
2179
+ "Q3": 0.0028496784203053847,
2180
+ "Q4": 0.0017284173322366803,
2181
+ "Q5": 0.0010483381047802635
2182
+ },
2183
+ "sensitivity_score": 0.11387476624122497,
2184
+ "bits_for_threshold": {
2185
+ "0.001": 5,
2186
+ "0.0005": 5,
2187
+ "0.0001": 5,
2188
+ "1e-05": 5
2189
+ },
2190
+ "weight_stats": {
2191
+ "avg_kurtosis": 2.5696338415145874,
2192
+ "avg_variance": 0.00020173878874629736,
2193
+ "avg_outlier_fraction": 0.006034827746596991,
2194
+ "num_tensors": 8,
2195
+ "total_params": 383221760,
2196
+ "projections": {
2197
+ "linear_attn.in_proj_a": 0.21834079837507891,
2198
+ "linear_attn.in_proj_b": 0.1612807643434634,
2199
+ "linear_attn.in_proj_qkv": 0.06991601727868028,
2200
+ "linear_attn.in_proj_z": 0.039475628063783554,
2201
+ "linear_attn.out_proj": 0.08930398898100682,
2202
+ "mlp.down_proj": 0.07519081270923542,
2203
+ "mlp.gate_proj": 0.040039771957965244,
2204
+ "mlp.up_proj": 0.019211401349073173
2205
+ }
2206
+ }
2207
+ },
2208
+ {
2209
+ "index": 61,
2210
+ "type": "linear_attention",
2211
+ "is_first": false,
2212
+ "is_last": false,
2213
+ "sensitivity": {
2214
+ "Q2": 0.004538531888946741,
2215
+ "Q3": 0.002752758740729691,
2216
+ "Q4": 0.0016696325750444976,
2217
+ "Q5": 0.0010126833472194421
2218
+ },
2219
+ "sensitivity_score": 0.10224125244680586,
2220
+ "bits_for_threshold": {
2221
+ "0.001": 5,
2222
+ "0.0005": 5,
2223
+ "0.0001": 5,
2224
+ "1e-05": 5
2225
+ },
2226
+ "weight_stats": {
2227
+ "avg_kurtosis": 2.1233879029750824,
2228
+ "avg_variance": 0.00021362085863074753,
2229
+ "avg_outlier_fraction": 0.005559623101178337,
2230
+ "num_tensors": 8,
2231
+ "total_params": 383221760,
2232
+ "projections": {
2233
+ "linear_attn.in_proj_a": 0.2101987108394605,
2234
+ "linear_attn.in_proj_b": 0.14846143626329641,
2235
+ "linear_attn.in_proj_qkv": 0.04186593981392099,
2236
+ "linear_attn.in_proj_z": 0.034110545390155164,
2237
+ "linear_attn.out_proj": 0.07473688473337833,
2238
+ "mlp.down_proj": 0.030289174089010648,
2239
+ "mlp.gate_proj": 0.04473209132771317,
2240
+ "mlp.up_proj": 0.025139596814895675
2241
+ }
2242
+ }
2243
+ },
2244
+ {
2245
+ "index": 62,
2246
+ "type": "linear_attention",
2247
+ "is_first": false,
2248
+ "is_last": false,
2249
+ "sensitivity": {
2250
+ "Q2": 0.004576538349984822,
2251
+ "Q3": 0.002775810824616461,
2252
+ "Q4": 0.0016836143706920913,
2253
+ "Q5": 0.0010211637349575443
2254
+ },
2255
+ "sensitivity_score": 0.1067493972786621,
2256
+ "bits_for_threshold": {
2257
+ "0.001": 5,
2258
+ "0.0005": 5,
2259
+ "0.0001": 5,
2260
+ "1e-05": 5
2261
+ },
2262
+ "weight_stats": {
2263
+ "avg_kurtosis": 2.230411022901535,
2264
+ "avg_variance": 0.00020991001110814977,
2265
+ "avg_outlier_fraction": 0.00646612564722697,
2266
+ "num_tensors": 8,
2267
+ "total_params": 383221760,
2268
+ "projections": {
2269
+ "linear_attn.in_proj_a": 0.18557023119833632,
2270
+ "linear_attn.in_proj_b": 0.15955762277483593,
2271
+ "linear_attn.in_proj_qkv": 0.07276954491796059,
2272
+ "linear_attn.in_proj_z": 0.05942997965091075,
2273
+ "linear_attn.out_proj": 0.11621160314325808,
2274
+ "mlp.down_proj": 0.06002147675062417,
2275
+ "mlp.gate_proj": 0.04979570647984602,
2276
+ "mlp.up_proj": 0.03083165454139982
2277
+ }
2278
+ }
2279
+ },
2280
+ {
2281
+ "index": 63,
2282
+ "type": "full_attention",
2283
+ "is_first": false,
2284
+ "is_last": true,
2285
+ "sensitivity": {
2286
+ "Q2": 0.004807261434248409,
2287
+ "Q3": 0.002915751449125788,
2288
+ "Q4": 0.0017684926499963313,
2289
+ "Q5": 0.001072645013699218
2290
+ },
2291
+ "sensitivity_score": 0.12111835535559036,
2292
+ "bits_for_threshold": {
2293
+ "0.001": 5,
2294
+ "0.0005": 5,
2295
+ "0.0001": 5,
2296
+ "1e-05": 5
2297
+ },
2298
+ "weight_stats": {
2299
+ "avg_kurtosis": 2.795557975769043,
2300
+ "avg_variance": 0.00027193342560037436,
2301
+ "avg_outlier_fraction": 0.007200482579506411,
2302
+ "num_tensors": 7,
2303
+ "total_params": 372244480,
2304
+ "projections": {
2305
+ "mlp.down_proj": 0.08400190117458348,
2306
+ "mlp.gate_proj": 0.05908167943885803,
2307
+ "mlp.up_proj": 0.04170163139202584,
2308
+ "self_attn.k_proj": 0.17949468843071398,
2309
+ "self_attn.o_proj": 0.11966580853414474,
2310
+ "self_attn.q_proj": 0.08667446696138395,
2311
+ "self_attn.v_proj": 0.18008091428006098
2312
+ }
2313
+ }
2314
+ }
2315
+ ],
2316
+ "allocations": {
2317
+ "2.5": {
2318
+ "target_bpw": 2.5,
2319
+ "average_bpw": 2.5,
2320
+ "total_size_gb": 8.53,
2321
+ "layers": {
2322
+ "0": 5,
2323
+ "1": 5,
2324
+ "2": 5,
2325
+ "3": 5,
2326
+ "4": 5,
2327
+ "5": 3,
2328
+ "6": 2,
2329
+ "7": 3,
2330
+ "8": 2,
2331
+ "9": 2,
2332
+ "10": 2,
2333
+ "11": 2,
2334
+ "12": 2,
2335
+ "13": 2,
2336
+ "14": 2,
2337
+ "15": 2,
2338
+ "16": 2,
2339
+ "17": 2,
2340
+ "18": 2,
2341
+ "19": 2,
2342
+ "20": 2,
2343
+ "21": 2,
2344
+ "22": 2,
2345
+ "23": 2,
2346
+ "24": 2,
2347
+ "25": 2,
2348
+ "26": 2,
2349
+ "27": 2,
2350
+ "28": 2,
2351
+ "29": 2,
2352
+ "30": 2,
2353
+ "31": 2,
2354
+ "32": 2,
2355
+ "33": 2,
2356
+ "34": 2,
2357
+ "35": 2,
2358
+ "36": 2,
2359
+ "37": 2,
2360
+ "38": 2,
2361
+ "39": 2,
2362
+ "40": 2,
2363
+ "41": 2,
2364
+ "42": 2,
2365
+ "43": 2,
2366
+ "44": 2,
2367
+ "45": 2,
2368
+ "46": 2,
2369
+ "47": 2,
2370
+ "48": 2,
2371
+ "49": 2,
2372
+ "50": 2,
2373
+ "51": 2,
2374
+ "52": 2,
2375
+ "53": 2,
2376
+ "54": 2,
2377
+ "55": 2,
2378
+ "56": 2,
2379
+ "57": 2,
2380
+ "58": 2,
2381
+ "59": 2,
2382
+ "60": 2,
2383
+ "61": 2,
2384
+ "62": 2,
2385
+ "63": 2
2386
+ },
2387
+ "components": {
2388
+ "embed_tokens": 5,
2389
+ "lm_head": 5
2390
+ }
2391
+ },
2392
+ "3.0": {
2393
+ "target_bpw": 3.0,
2394
+ "average_bpw": 3.0,
2395
+ "total_size_gb": 10.24,
2396
+ "layers": {
2397
+ "0": 5,
2398
+ "1": 5,
2399
+ "2": 5,
2400
+ "3": 5,
2401
+ "4": 5,
2402
+ "5": 5,
2403
+ "6": 5,
2404
+ "7": 5,
2405
+ "8": 5,
2406
+ "9": 2,
2407
+ "10": 2,
2408
+ "11": 4,
2409
+ "12": 2,
2410
+ "13": 2,
2411
+ "14": 2,
2412
+ "15": 2,
2413
+ "16": 2,
2414
+ "17": 2,
2415
+ "18": 2,
2416
+ "19": 2,
2417
+ "20": 2,
2418
+ "21": 2,
2419
+ "22": 2,
2420
+ "23": 2,
2421
+ "24": 2,
2422
+ "25": 2,
2423
+ "26": 2,
2424
+ "27": 2,
2425
+ "28": 2,
2426
+ "29": 2,
2427
+ "30": 2,
2428
+ "31": 2,
2429
+ "32": 2,
2430
+ "33": 2,
2431
+ "34": 2,
2432
+ "35": 2,
2433
+ "36": 2,
2434
+ "37": 2,
2435
+ "38": 2,
2436
+ "39": 2,
2437
+ "40": 2,
2438
+ "41": 2,
2439
+ "42": 2,
2440
+ "43": 2,
2441
+ "44": 2,
2442
+ "45": 2,
2443
+ "46": 2,
2444
+ "47": 2,
2445
+ "48": 2,
2446
+ "49": 2,
2447
+ "50": 2,
2448
+ "51": 2,
2449
+ "52": 2,
2450
+ "53": 2,
2451
+ "54": 2,
2452
+ "55": 2,
2453
+ "56": 2,
2454
+ "57": 2,
2455
+ "58": 2,
2456
+ "59": 2,
2457
+ "60": 3,
2458
+ "61": 2,
2459
+ "62": 2,
2460
+ "63": 5
2461
+ },
2462
+ "components": {
2463
+ "embed_tokens": 5,
2464
+ "lm_head": 5
2465
+ }
2466
+ },
2467
+ "3.5": {
2468
+ "target_bpw": 3.5,
2469
+ "average_bpw": 3.5,
2470
+ "total_size_gb": 11.94,
2471
+ "layers": {
2472
+ "0": 5,
2473
+ "1": 5,
2474
+ "2": 5,
2475
+ "3": 5,
2476
+ "4": 5,
2477
+ "5": 5,
2478
+ "6": 5,
2479
+ "7": 5,
2480
+ "8": 5,
2481
+ "9": 5,
2482
+ "10": 2,
2483
+ "11": 5,
2484
+ "12": 2,
2485
+ "13": 2,
2486
+ "14": 2,
2487
+ "15": 2,
2488
+ "16": 2,
2489
+ "17": 2,
2490
+ "18": 2,
2491
+ "19": 2,
2492
+ "20": 2,
2493
+ "21": 2,
2494
+ "22": 2,
2495
+ "23": 2,
2496
+ "24": 2,
2497
+ "25": 2,
2498
+ "26": 2,
2499
+ "27": 2,
2500
+ "28": 2,
2501
+ "29": 2,
2502
+ "30": 2,
2503
+ "31": 2,
2504
+ "32": 2,
2505
+ "33": 2,
2506
+ "34": 5,
2507
+ "35": 2,
2508
+ "36": 2,
2509
+ "37": 2,
2510
+ "38": 2,
2511
+ "39": 2,
2512
+ "40": 2,
2513
+ "41": 2,
2514
+ "42": 2,
2515
+ "43": 2,
2516
+ "44": 2,
2517
+ "45": 2,
2518
+ "46": 2,
2519
+ "47": 2,
2520
+ "48": 2,
2521
+ "49": 2,
2522
+ "50": 2,
2523
+ "51": 2,
2524
+ "52": 2,
2525
+ "53": 2,
2526
+ "54": 2,
2527
+ "55": 2,
2528
+ "56": 2,
2529
+ "57": 2,
2530
+ "58": 5,
2531
+ "59": 2,
2532
+ "60": 5,
2533
+ "61": 2,
2534
+ "62": 5,
2535
+ "63": 5
2536
+ },
2537
+ "components": {
2538
+ "embed_tokens": 5,
2539
+ "lm_head": 5
2540
+ }
2541
+ },
2542
+ "4.0": {
2543
+ "target_bpw": 4.0,
2544
+ "average_bpw": 4.0,
2545
+ "total_size_gb": 13.65,
2546
+ "layers": {
2547
+ "0": 5,
2548
+ "1": 5,
2549
+ "2": 5,
2550
+ "3": 5,
2551
+ "4": 5,
2552
+ "5": 5,
2553
+ "6": 5,
2554
+ "7": 5,
2555
+ "8": 5,
2556
+ "9": 5,
2557
+ "10": 5,
2558
+ "11": 5,
2559
+ "12": 2,
2560
+ "13": 2,
2561
+ "14": 2,
2562
+ "15": 2,
2563
+ "16": 2,
2564
+ "17": 2,
2565
+ "18": 2,
2566
+ "19": 2,
2567
+ "20": 2,
2568
+ "21": 2,
2569
+ "22": 2,
2570
+ "23": 2,
2571
+ "24": 2,
2572
+ "25": 2,
2573
+ "26": 2,
2574
+ "27": 2,
2575
+ "28": 2,
2576
+ "29": 2,
2577
+ "30": 2,
2578
+ "31": 2,
2579
+ "32": 3,
2580
+ "33": 2,
2581
+ "34": 5,
2582
+ "35": 2,
2583
+ "36": 2,
2584
+ "37": 2,
2585
+ "38": 2,
2586
+ "39": 2,
2587
+ "40": 5,
2588
+ "41": 3,
2589
+ "42": 2,
2590
+ "43": 2,
2591
+ "44": 2,
2592
+ "45": 2,
2593
+ "46": 2,
2594
+ "47": 2,
2595
+ "48": 2,
2596
+ "49": 2,
2597
+ "50": 2,
2598
+ "51": 2,
2599
+ "52": 2,
2600
+ "53": 2,
2601
+ "54": 2,
2602
+ "55": 2,
2603
+ "56": 2,
2604
+ "57": 5,
2605
+ "58": 5,
2606
+ "59": 5,
2607
+ "60": 5,
2608
+ "61": 5,
2609
+ "62": 5,
2610
+ "63": 5
2611
+ },
2612
+ "components": {
2613
+ "embed_tokens": 5,
2614
+ "lm_head": 5
2615
+ }
2616
+ }
2617
+ },
2618
+ "validation": {}
2619
+ }