Add README.md
Browse files
README.md
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.hook_resid_pre
|
9 |
+
- blocks.1.hook_resid_pre
|
10 |
+
|
11 |
+
Load these SAEs using SAELens as below:
|
12 |
+
```python
|
13 |
+
from sae_lens import SAE
|
14 |
+
|
15 |
+
sae, cfg_dict, sparsity = SAE.from_pretrained("chanind/sae-lens-upload-demo", "<sae_id>")
|
16 |
+
```
|