Views
No views yet
Qwen/Qwen2.5-0.5B,
using activations collected on ~50K ARC-AGI tasks (~2.82B tokens).Qwen/Qwen2.5-0.5Bblocks.19.hook_resid_post| Step | d_sae | Notes |
|---|---|---|
step_00110000 | 14336 | |
step_00125000 | 14336 | |
step_00135000 | 14336 | |
step_00145000 | 14336 | |
step_00150000 | 14336 |
cfg.json +
sae_weights.safetensors).1from sae_lens import SAE
2
3# Load a specific training step
4sae = SAE.from_pretrained_with_cfg_and_sparsity(
5 release="KathirKs/qwen2.5-0.5b-l19-sae-topk-16x",
6 sae_id="step_00125000",
7)[0]
8
9# Or load from a local clone
10# sae = SAE.load_from_disk("./step_00125000")sae_vis1from sae_vis import SaeVisConfig, SaeVisData
2# pair with HookedTransformer("Qwen/Qwen2.5-0.5B") + this SAE at blocks.19.hook_resid_postscripts/convert_sae_to_saelens.py.
The round-trip was numerically verified against a numpy reference
(encode() max-abs diff < 1e-4, L0 exact match).