Views
No views yet
| SAE | Base Model | Focus Languages |
|---|---|---|
tiny-aya-global/layer_28 | CohereLabs/tiny-aya-global | All 70+ languages |
tiny-aya-fire/layer_28 | CohereLabs/tiny-aya-fire | South Asian languages |
tiny-aya-earth/layer_28 | CohereLabs/tiny-aya-earth | African + West Asian languages |
tiny-aya-water/layer_28 | CohereLabs/tiny-aya-water | Asia-Pacific + European languages |
model.layers.28 (global attention layer in final third)1from sae_lens import SAE
2
3# Load any variant
4sae = SAE.from_pretrained(
5 release="Farseen0/tiny-aya-saes",
6 sae_id="tiny-aya-global/layer_28",
7 device="cuda"
8)
9
10# Or load from disk after downloading
11sae = SAE.load_from_disk("tiny-aya-global/layer_28", device="cuda")
12
13# Encode activations
14features = sae.encode(hidden_states) # [batch, seq, 16384]
15
16# Decode back
17reconstructed = sae.decode(features) # [batch, seq, 2048]1@misc{shaikh2026insidetinyaya,
2 title={Inside Tiny Aya: Mapping Multilingual Representations with Sparse Autoencoders},
3 author={Shaikh, Farseen and Nguyen, Matthew and Nguyen, Tra My},
4 year={2026},
5 url={https://huggingface.co/Farseen0/tiny-aya-saes}
6}