Views
No views yet
| Layer | Described features | Contrast types |
|---|---|---|
layer_8 | 386 | 37 |
layer_17 | 235 | 37 |
layer_20 | 221 | 37 |
layer_26 | 258 | 37 |
layer_35 | 437 | 37 |
layer_44 | 952 | 37 |
input x (d_model=2688)
|
+-> W_enc @ (x - b_dec) + b_enc -> JumpReLU(-, theta) -> features (d_sae=10752)
|
+-> W_dec @ features + b_dec -> reconstruction (d_model=2688)| Key | Value |
|---|---|
bandwidth | 0.001 |
d_model | 2688 |
d_sae | 10752 |
dtype | bfloat16 |
├── layer_<N>/
│ ├── activations/
│ │ ├── contrastive_features.json
│ │ ├── feature_descriptions.json
│ │ ├── shard_*.npy
│ │ └── ...
│ └── sae_checkpoints/
│ ├── sae_final.pt
│ ├── config.json
│ └── ...1from sae.model import JumpReLUSAE
2
3sae = JumpReLUSAE.from_pretrained("layer_17/sae_checkpoints/sae_final.pt", device="cuda")
4features = sae.encode(activations)
5reconstruction = sae.decode(features)