Pre-fitted
Jacobian Lenses for the Amalia model family, fitted on the
amalia-llm/CorEGe-PT dataset.
Trained using
Anthropic's Jacobian Lens library via the Neuronpedia fitting utilities. The same library can be used to load a lens and run the local visualizer. Jacobian Lens can also be explored on
Neuronpedia.
Stopped early at 783 prompts, Δmean = 2.11e-03. Peak CUDA memory: 34.13 GB.
Stopped early at 740 prompts, Δmean = 1.63e-03. Peak CUDA memory: 34.94 GB.
1from jacobian_lens import HFLensModel, JacobianLens
2
3lens = JacobianLens.from_pretrained(
4 "Helder5788/jlens-amalia",
5 subfolder="amalia-9b-0626-dpo/corege-pt", # or "amalia-vl-dpo/corege-pt"
6)
7
8model = HFLensModel.from_pretrained("amalia-llm/AMALIA-9B-0626-DPO")
9model.attach_lens(lens)
See the
Jacobian Lens library for full API details and the local visualizer.