rootxhacker commited on
Commit
3f61a99
·
verified ·
1 Parent(s): 00bbfe3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags: [hobbylm, sparse-autoencoder, interpretability, sae]
4
+ ---
5
+
6
+ # HobbyLM-SAE
7
+
8
+ A **top-k Sparse Autoencoder** for mechanistic interpretability of [HobbyLM-Base](https://huggingface.co/rootxhacker/HobbyLM-Base).
9
+ It decomposes the residual stream after **layer 8** into a sparse, overcomplete dictionary of
10
+ **12288 features** (32 active per token), most of them human-interpretable
11
+ (12257 auto-labeled by their top-activating tokens).
12
+
13
+ ## Files
14
+ - `sae.safetensors` — the SAE weights (`W_enc`, `W_dec`, `b_enc`, `b_dec`).
15
+ - `labels.json` — per-feature auto-derived label + example top-activating tokens.
16
+ - `meta.json` — layer, activation scale, base-model run, and SAE config.
17
+
18
+ Reconstructs ~97% of the activation variance at L0=32. Reference code + training harness:
19
+ <https://github.com/harishsg993010/HobbyLM> (`hobbylm/sae.py`, `training/modal_sae.py`). Apache-2.0.