Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,20 @@ See our [landing page](https://huggingface.co/google/gemma-scope) for details on
|
|
| 16 |
- `res`: These SAEs were trained on the model's residual stream.
|
| 17 |
- We include experimental SAEs trained on token embeddings in the ./embedding folder.
|
| 18 |
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
Point of contact: Arthur Conmy
|
| 22 |
|
|
@@ -28,3 +41,7 @@ Contact by email:
|
|
| 28 |
|
| 29 |
HuggingFace account:
|
| 30 |
https://huggingface.co/ArthurConmyGDM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
- `res`: These SAEs were trained on the model's residual stream.
|
| 17 |
- We include experimental SAEs trained on token embeddings in the ./embedding folder.
|
| 18 |
|
| 19 |
+
# 3. How can I use these SAEs straight away?
|
| 20 |
+
|
| 21 |
+
```python
|
| 22 |
+
from sae_lens import SAE # pip install sae-lens
|
| 23 |
+
|
| 24 |
+
sae, cfg_dict, sparsity = SAE.from_pretrained(
|
| 25 |
+
release = "gemma-scope-9b-pt-res-canonical",
|
| 26 |
+
sae_id = "layer_0/width_16k/canonical",
|
| 27 |
+
)
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
See https://github.com/jbloomAus/SAELens for details on this library.
|
| 31 |
+
|
| 32 |
+
# 4. Point of Contact
|
| 33 |
|
| 34 |
Point of contact: Arthur Conmy
|
| 35 |
|
|
|
|
| 41 |
|
| 42 |
HuggingFace account:
|
| 43 |
https://huggingface.co/ArthurConmyGDM
|
| 44 |
+
|
| 45 |
+
# 5. Citation
|
| 46 |
+
|
| 47 |
+
Paper: https://arxiv.org/abs/2408.05147
|