Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
pretty_name: Crosscoder Multilayer Split Activations
|
| 4 |
+
tags:
|
| 5 |
+
- mechanistic-interpretability
|
| 6 |
+
- crosscoder
|
| 7 |
+
- activations
|
| 8 |
+
- sparse-autoencoder
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Crosscoder Multilayer Split Activations
|
| 12 |
+
|
| 13 |
+
Raw split activation artifacts for multilayer SPARC-style crosscoder training.
|
| 14 |
+
|
| 15 |
+
This dataset stores reusable base-only and aligned-only activation tensors. These
|
| 16 |
+
are intended to be assembled into matched `activations.pt` training artifacts
|
| 17 |
+
before crosscoder training.
|
| 18 |
+
|
| 19 |
+
## Versions
|
| 20 |
+
|
| 21 |
+
### v1
|
| 22 |
+
|
| 23 |
+
Source local run: `interp_utils/crosscoder/results-multi-v1`
|
| 24 |
+
|
| 25 |
+
Layout:
|
| 26 |
+
|
| 27 |
+
```text
|
| 28 |
+
v1/
|
| 29 |
+
base_activations/
|
| 30 |
+
smollm3-union/
|
| 31 |
+
llama32-3b-union/
|
| 32 |
+
qwen3-4b-union/
|
| 33 |
+
aligned_activations/
|
| 34 |
+
smollm3-{dpo,grpo,kto,orpo,ppo,simpo}/
|
| 35 |
+
llama32-3b-{dpo,grpo,kto,orpo,ppo,simpo}/
|
| 36 |
+
qwen3-4b-{dpo,grpo,kto,orpo,ppo,simpo}/
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
Each run directory contains:
|
| 40 |
+
|
| 41 |
+
```text
|
| 42 |
+
run_meta.json
|
| 43 |
+
activations/base_activations.pt # base-only runs
|
| 44 |
+
activations/aligned_activations.pt # aligned-only runs
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
The base tensors contain union layer sets. The aligned tensors contain each
|
| 48 |
+
aligned model's target probe-best layer window. Assembly slices/reorders the
|
| 49 |
+
base union tensor to the aligned run's layers.
|
| 50 |
+
|
| 51 |
+
## v1 Base Layers
|
| 52 |
+
|
| 53 |
+
```text
|
| 54 |
+
smollm3-union: [16, 17, 18, 19, 20]
|
| 55 |
+
llama32-3b-union: [10, 11, 12, 13, 14, 23, 24, 25, 26]
|
| 56 |
+
qwen3-4b-union: [19, 20, 21, 22, 23, 24, 25]
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Use
|
| 60 |
+
|
| 61 |
+
Download one base union and one aligned run, then assemble locally with:
|
| 62 |
+
|
| 63 |
+
```bash
|
| 64 |
+
.venv/bin/python -m interp_utils.crosscoder.main \
|
| 65 |
+
--stage assemble \
|
| 66 |
+
--crosscoder-kind multilayer_sparc \
|
| 67 |
+
--base-activations-dir path/to/base_union_dir \
|
| 68 |
+
--aligned-activations-dir path/to/aligned_run_dir \
|
| 69 |
+
--output-dir path/to/assembled_run_dir
|
| 70 |
+
```
|
| 71 |
+
|