File size: 362 Bytes
8c13b74 f4ecbc4 9fbac1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
license: mit
datasets:
- EleutherAI/fineweb-edu-dedup-10b
base_model:
- deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B
tags:
- SAE
- interpretability
---
SAEs and transcoders can be loaded using https://github.com/EleutherAI/sae:
```
from sae import Sae
sae = Sae.load_from_hub("EleutherAI/sae-DeepSeek-R1-Distill-Qwen-1.5B-65k", hookpoint="layers.10.mlp")
``` |