chanind commited on
Commit
2d8dfa9
·
verified ·
1 Parent(s): 7549e6d

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: saelens
3
+ ---
4
+
5
+ # Synthetic Model for SAE Training
6
+
7
+ This repository contains a SyntheticModel for use with SAELens.
8
+
9
+ ## Model Info
10
+
11
+ - **Number of features**: 131,072
12
+ - **Hidden dimension**: 512
13
+ - **Hierarchy**: Yes
14
+ - Root nodes: 64
15
+ - Total nodes: 131072
16
+ - Max depth: 3
17
+ - **Feature correlation**: Yes (scale 0.2)
18
+
19
+ ## Usage
20
+
21
+ ```python
22
+ from sae_lens.synthetic import SyntheticModel
23
+
24
+ model = SyntheticModel.from_pretrained("chanind/synthetic-model-131k")
25
+ ```