Views
No views yet
trained_b.safetensors: Trained bias vector (b) and feature_orderresults.json: Training metadata and metricstraining_curves.png: Loss curves and training progress visualization1from safetensors.torch import load_file
2
3state_dict = load_file("trained_b.safetensors")
4b = state_dict["b"] # Shape: (d_sae,)
5feature_order = state_dict["feature_order"] # Shape: (d_sae,)train_psae_bias.py with:results.json.