Views
No views yet
gemma-scope-2-12b-it-res :: layer_12_width_16k_l0_medium (Lieberum et al. 2024, Gemma Scope (arXiv:2408.05147))google/gemma-3-12b-it, residual stream, layer 12d_in=3840, d_sae=16384 (~16k)W_enc, b_enc, W_dec, b_dec fine-tuned; the JumpReLU threshold was frozen.(KL * alpha + MSE) * 0.5 where alpha = (MSE / KL).detach()
rescales the KL term to the MSE's magnitude. Optimizer AdamW, lr 5e-05, linear
decay; decoder rows kept unit-norm.lmsys/lmsys-chat-1m, ~25,000,000 tokens, ctx 1024lmsys/lmsys-chat-1m.| Metric | Baseline (GemmaScope) | Fine-tuned |
|---|---|---|
| delta CE | 0.0962 | -0.0634 |
| clean CE | 1.0752 | 1.0752 |
| spliced CE | 1.1714 | 1.0118 |
| mean L0 | 55.4510 | 53.4129 |
Caveat — evaluation scope. delta CE is measured on held-out samples from the training distribution (on-policy chat rollouts) at a single layer, so it can overstate fidelity relative to a broad-distribution or all-layer evaluation. L0 does not rise under this fine-tune (see table), so the gain is not sparsity drift; for a strict same-sparsity comparison, still compare against a GemmaScope SAE at the matched L0.
1from huggingface_hub import snapshot_download
2from sae_lens import SAE
3
4path = snapshot_download(repo_id="iarcuschin/gemma-scope-2-12b-it-res-l12-e2e")
5sae = SAE.load_from_disk(path, device="cuda")
6# identical interface to the original GemmaScope SAEfinetuned_sae.npz (keys: W_enc, b_enc, W_dec, b_dec, threshold) is also included for
GemmaScope-style loading.f5e18356f67735898a30459761d99b563668eb06metrics.json / the run's provenance.json