Update README.md
Browse files
README.md
CHANGED
@@ -4,6 +4,10 @@ tags:
|
|
4 |
- pytorch_model_hub_mixin
|
5 |
---
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
4 |
- pytorch_model_hub_mixin
|
5 |
---
|
6 |
|
7 |
+
Sparse AutoEncoder trained on the embeddings from layer 3 of the smallest ESM-2 model (esm2_t6_8M_UR50D).
|
8 |
+
|
9 |
+
```python
|
10 |
+
from sae import SAE_methods
|
11 |
+
|
12 |
+
sparse_autoencoder = SAE_methods.AutoEncoder.from_pretrained("evillegasgarcia/sae_esm2_6_l3")
|
13 |
+
```
|