juiceb0xc0de commited on
Commit
459ab20
·
verified ·
1 Parent(s): 0812f60

add Parquet splits + configs block for SQL Console

Browse files
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: coactivation
7
+ path: data/coactivation.parquet
8
+ - split: code_analysis
9
+ path: data/code_analysis.parquet
10
+ - split: features
11
+ path: data/features.parquet
12
+ - split: layers
13
+ path: data/layers.parquet
14
+ - split: ov_circuits
15
+ path: data/ov_circuits.parquet
16
+ - split: per_head
17
+ path: data/per_head.parquet
18
+ - split: subzero_capability
19
+ path: data/subzero_capability.parquet
20
+ - split: subzero_layer
21
+ path: data/subzero_layer.parquet
22
+ - split: subzero_svs
23
+ path: data/subzero_svs.parquet
24
+ ---
25
+
26
+ # apertus-v1.1-0.5b-atlas
_manifest.json ADDED
@@ -0,0 +1,449 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "coactivation": {
3
+ "rows": 9161,
4
+ "bytes": 139330,
5
+ "columns": [
6
+ {
7
+ "name": "layer_id",
8
+ "sqlite_type": "INTEGER"
9
+ },
10
+ {
11
+ "name": "component",
12
+ "sqlite_type": "TEXT"
13
+ },
14
+ {
15
+ "name": "feature_a",
16
+ "sqlite_type": "INTEGER"
17
+ },
18
+ {
19
+ "name": "feature_b",
20
+ "sqlite_type": "INTEGER"
21
+ },
22
+ {
23
+ "name": "correlation",
24
+ "sqlite_type": "REAL"
25
+ },
26
+ {
27
+ "name": "dominant_bucket",
28
+ "sqlite_type": "TEXT"
29
+ }
30
+ ]
31
+ },
32
+ "code_analysis": {
33
+ "rows": 2400,
34
+ "bytes": 11150,
35
+ "columns": [
36
+ {
37
+ "name": "layer_id",
38
+ "sqlite_type": "INTEGER"
39
+ },
40
+ {
41
+ "name": "component",
42
+ "sqlite_type": "TEXT"
43
+ },
44
+ {
45
+ "name": "feature_idx",
46
+ "sqlite_type": "INTEGER"
47
+ },
48
+ {
49
+ "name": "role",
50
+ "sqlite_type": "TEXT"
51
+ }
52
+ ]
53
+ },
54
+ "compliance_behaviour_features": {
55
+ "rows": 0,
56
+ "bytes": 0,
57
+ "skipped_empty": true,
58
+ "columns": [
59
+ {
60
+ "name": "layer_id",
61
+ "sqlite_type": "INTEGER"
62
+ },
63
+ {
64
+ "name": "component",
65
+ "sqlite_type": "TEXT"
66
+ },
67
+ {
68
+ "name": "feature_idx",
69
+ "sqlite_type": "INTEGER"
70
+ },
71
+ {
72
+ "name": "fstat",
73
+ "sqlite_type": "REAL"
74
+ },
75
+ {
76
+ "name": "delta",
77
+ "sqlite_type": "REAL"
78
+ },
79
+ {
80
+ "name": "mean_corp",
81
+ "sqlite_type": "REAL"
82
+ },
83
+ {
84
+ "name": "mean_auth",
85
+ "sqlite_type": "REAL"
86
+ }
87
+ ]
88
+ },
89
+ "compliance_behaviour_per_head": {
90
+ "rows": 0,
91
+ "bytes": 0,
92
+ "skipped_empty": true,
93
+ "columns": [
94
+ {
95
+ "name": "layer_id",
96
+ "sqlite_type": "INTEGER"
97
+ },
98
+ {
99
+ "name": "component",
100
+ "sqlite_type": "TEXT"
101
+ },
102
+ {
103
+ "name": "head_idx",
104
+ "sqlite_type": "INTEGER"
105
+ },
106
+ {
107
+ "name": "head_dim",
108
+ "sqlite_type": "INTEGER"
109
+ },
110
+ {
111
+ "name": "fstat_best",
112
+ "sqlite_type": "REAL"
113
+ },
114
+ {
115
+ "name": "fstat_mean",
116
+ "sqlite_type": "REAL"
117
+ },
118
+ {
119
+ "name": "delta_at_top",
120
+ "sqlite_type": "REAL"
121
+ },
122
+ {
123
+ "name": "top_dim",
124
+ "sqlite_type": "INTEGER"
125
+ },
126
+ {
127
+ "name": "corp_leaning",
128
+ "sqlite_type": "INTEGER"
129
+ }
130
+ ]
131
+ },
132
+ "features": {
133
+ "rows": 286720,
134
+ "bytes": 8287084,
135
+ "columns": [
136
+ {
137
+ "name": "layer_id",
138
+ "sqlite_type": "INTEGER"
139
+ },
140
+ {
141
+ "name": "component",
142
+ "sqlite_type": "TEXT"
143
+ },
144
+ {
145
+ "name": "feature_idx",
146
+ "sqlite_type": "INTEGER"
147
+ },
148
+ {
149
+ "name": "taxonomy_class",
150
+ "sqlite_type": "TEXT"
151
+ },
152
+ {
153
+ "name": "activation_rate",
154
+ "sqlite_type": "REAL"
155
+ },
156
+ {
157
+ "name": "mean_act",
158
+ "sqlite_type": "REAL"
159
+ },
160
+ {
161
+ "name": "std_act",
162
+ "sqlite_type": "REAL"
163
+ },
164
+ {
165
+ "name": "fstat",
166
+ "sqlite_type": "REAL"
167
+ }
168
+ ]
169
+ },
170
+ "layers": {
171
+ "rows": 20,
172
+ "bytes": 3027,
173
+ "columns": [
174
+ {
175
+ "name": "layer_id",
176
+ "sqlite_type": "INTEGER"
177
+ },
178
+ {
179
+ "name": "model_id",
180
+ "sqlite_type": "TEXT"
181
+ },
182
+ {
183
+ "name": "n_prompts",
184
+ "sqlite_type": "INTEGER"
185
+ },
186
+ {
187
+ "name": "corpus_hash",
188
+ "sqlite_type": "TEXT"
189
+ },
190
+ {
191
+ "name": "captured_at",
192
+ "sqlite_type": "TEXT"
193
+ },
194
+ {
195
+ "name": "has_census",
196
+ "sqlite_type": "INTEGER"
197
+ },
198
+ {
199
+ "name": "has_subzero",
200
+ "sqlite_type": "INTEGER"
201
+ },
202
+ {
203
+ "name": "is_sacred",
204
+ "sqlite_type": "INTEGER"
205
+ }
206
+ ]
207
+ },
208
+ "ov_circuits": {
209
+ "rows": 320,
210
+ "bytes": 29617,
211
+ "columns": [
212
+ {
213
+ "name": "layer_id",
214
+ "sqlite_type": "INTEGER"
215
+ },
216
+ {
217
+ "name": "head_idx",
218
+ "sqlite_type": "INTEGER"
219
+ },
220
+ {
221
+ "name": "kv_head",
222
+ "sqlite_type": "INTEGER"
223
+ },
224
+ {
225
+ "name": "top_singular_val",
226
+ "sqlite_type": "REAL"
227
+ },
228
+ {
229
+ "name": "total_energy",
230
+ "sqlite_type": "REAL"
231
+ },
232
+ {
233
+ "name": "spectral_conc",
234
+ "sqlite_type": "REAL"
235
+ },
236
+ {
237
+ "name": "eff_rank",
238
+ "sqlite_type": "REAL"
239
+ },
240
+ {
241
+ "name": "compliance_score",
242
+ "sqlite_type": "REAL"
243
+ },
244
+ {
245
+ "name": "layer_comp_strength",
246
+ "sqlite_type": "REAL"
247
+ },
248
+ {
249
+ "name": "top3_sv",
250
+ "sqlite_type": "TEXT"
251
+ }
252
+ ]
253
+ },
254
+ "per_head": {
255
+ "rows": 320,
256
+ "bytes": 11186,
257
+ "columns": [
258
+ {
259
+ "name": "layer_id",
260
+ "sqlite_type": "INTEGER"
261
+ },
262
+ {
263
+ "name": "component",
264
+ "sqlite_type": "TEXT"
265
+ },
266
+ {
267
+ "name": "head_idx",
268
+ "sqlite_type": "INTEGER"
269
+ },
270
+ {
271
+ "name": "dims",
272
+ "sqlite_type": "INTEGER"
273
+ },
274
+ {
275
+ "name": "n_specific",
276
+ "sqlite_type": "INTEGER"
277
+ },
278
+ {
279
+ "name": "fstat_best",
280
+ "sqlite_type": "REAL"
281
+ },
282
+ {
283
+ "name": "fstat_mean",
284
+ "sqlite_type": "REAL"
285
+ },
286
+ {
287
+ "name": "top_code_dim",
288
+ "sqlite_type": "INTEGER"
289
+ },
290
+ {
291
+ "name": "top_code_spec",
292
+ "sqlite_type": "REAL"
293
+ }
294
+ ]
295
+ },
296
+ "sae_features": {
297
+ "rows": 0,
298
+ "bytes": 0,
299
+ "skipped_empty": true,
300
+ "columns": [
301
+ {
302
+ "name": "layer",
303
+ "sqlite_type": "INTEGER"
304
+ },
305
+ {
306
+ "name": "variant",
307
+ "sqlite_type": "TEXT"
308
+ },
309
+ {
310
+ "name": "feature_idx",
311
+ "sqlite_type": "INTEGER"
312
+ },
313
+ {
314
+ "name": "topic_fstat",
315
+ "sqlite_type": "REAL"
316
+ },
317
+ {
318
+ "name": "compliance_behaviour_fstat",
319
+ "sqlite_type": "REAL"
320
+ },
321
+ {
322
+ "name": "compliance_behaviour_delta",
323
+ "sqlite_type": "REAL"
324
+ },
325
+ {
326
+ "name": "mean_corp",
327
+ "sqlite_type": "REAL"
328
+ },
329
+ {
330
+ "name": "mean_auth",
331
+ "sqlite_type": "REAL"
332
+ },
333
+ {
334
+ "name": "activation_rate",
335
+ "sqlite_type": "REAL"
336
+ },
337
+ {
338
+ "name": "corp_leaning",
339
+ "sqlite_type": "INTEGER"
340
+ }
341
+ ]
342
+ },
343
+ "subzero_capability": {
344
+ "rows": 240,
345
+ "bytes": 5635,
346
+ "columns": [
347
+ {
348
+ "name": "layer_id",
349
+ "sqlite_type": "INTEGER"
350
+ },
351
+ {
352
+ "name": "projection",
353
+ "sqlite_type": "TEXT"
354
+ },
355
+ {
356
+ "name": "das_axis",
357
+ "sqlite_type": "INTEGER"
358
+ },
359
+ {
360
+ "name": "domain",
361
+ "sqlite_type": "TEXT"
362
+ },
363
+ {
364
+ "name": "damage",
365
+ "sqlite_type": "REAL"
366
+ },
367
+ {
368
+ "name": "damage_max",
369
+ "sqlite_type": "REAL"
370
+ },
371
+ {
372
+ "name": "fence_passed",
373
+ "sqlite_type": "INTEGER"
374
+ },
375
+ {
376
+ "name": "frozen",
377
+ "sqlite_type": "INTEGER"
378
+ },
379
+ {
380
+ "name": "explained",
381
+ "sqlite_type": "REAL"
382
+ }
383
+ ]
384
+ },
385
+ "subzero_layer": {
386
+ "rows": 20,
387
+ "bytes": 2525,
388
+ "columns": [
389
+ {
390
+ "name": "layer_id",
391
+ "sqlite_type": "INTEGER"
392
+ },
393
+ {
394
+ "name": "classifier_accuracy",
395
+ "sqlite_type": "REAL"
396
+ },
397
+ {
398
+ "name": "corp_refusal_angle_deg",
399
+ "sqlite_type": "REAL"
400
+ },
401
+ {
402
+ "name": "sv_total",
403
+ "sqlite_type": "INTEGER"
404
+ },
405
+ {
406
+ "name": "compliance_behaviour_sv",
407
+ "sqlite_type": "INTEGER"
408
+ },
409
+ {
410
+ "name": "compliance_behaviour_pct",
411
+ "sqlite_type": "REAL"
412
+ }
413
+ ]
414
+ },
415
+ "subzero_svs": {
416
+ "rows": 83,
417
+ "bytes": 4685,
418
+ "columns": [
419
+ {
420
+ "name": "layer_id",
421
+ "sqlite_type": "INTEGER"
422
+ },
423
+ {
424
+ "name": "projection",
425
+ "sqlite_type": "TEXT"
426
+ },
427
+ {
428
+ "name": "sv_index",
429
+ "sqlite_type": "INTEGER"
430
+ },
431
+ {
432
+ "name": "classifier_score",
433
+ "sqlite_type": "REAL"
434
+ },
435
+ {
436
+ "name": "wanda_score",
437
+ "sqlite_type": "REAL"
438
+ },
439
+ {
440
+ "name": "dark_variance",
441
+ "sqlite_type": "REAL"
442
+ },
443
+ {
444
+ "name": "target_scale",
445
+ "sqlite_type": "REAL"
446
+ }
447
+ ]
448
+ }
449
+ }
data/coactivation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99058323ff2e4f7a0eb36086b3e477b88714a6cae7dcc7beb587b8701f767975
3
+ size 139330
data/code_analysis.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28f821afbc9bf24d3357db080f0c029f84b29f216833c2146d640dee3a4df322
3
+ size 11150
data/features.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f532213c5282058ddf2220c8362544512d2ae68a1a61fbf20ffd121fbb21303
3
+ size 8287084
data/layers.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d88d28c011d37820e1b3548212490bad32f339c5eeec86055b7bc724dfdd2be8
3
+ size 3027
data/ov_circuits.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28a1dd12f556b6e65e77de73322b1d50cc60686f980d45dd8171447a04acee91
3
+ size 29617
data/per_head.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4715193bed85914351a437a1cc1e981287c39d311108342821ca64258d6b57e3
3
+ size 11186
data/subzero_capability.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41f472a94cc89ac3dc3c2b0f44a8683077158e852f9dce7ad9bf61b0bb8244a3
3
+ size 5635
data/subzero_layer.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6507d02b5a94afd60f31d17802d020c86c91adc44948ed5422b7a7c8f74a9e9a
3
+ size 2525
data/subzero_svs.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72f350752013562cfeca5bbe3ec25a5e46b46d72b1193ac6b065735f8338783f
3
+ size 4685