D0TheMath commited on
Commit
656eb53
1 Parent(s): 59c1174

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: saelens
3
+ ---
4
+
5
+ # SAEs for use with the SAELens library
6
+
7
+ This repository contains the following SAEs:
8
+ - blocks.0.attn.hook_z
9
+ - blocks.1.attn.hook_z
10
+ - blocks.0.hook_resid_pre
11
+ - blocks.0.hook_resid_post
12
+ - blocks.1.hook_resid_post
13
+
14
+ Load these SAEs using SAELens as below:
15
+ ```python
16
+ from sae_lens import SAE
17
+
18
+ sae, cfg_dict, sparsity = SAE.from_pretrained("timaeus/tetrahedron-saes-full-attn-60k", "<sae_id>")
19
+ ```