Views
No views yet
checkpoints/sae_l{N}.ptcheckpoints/tc_l{N}.ptcheckpoints/feature_names.json - decoded feature labelscheckpoints/safety_threshold.json - tiered safety scoring configcheckpoints/architecture_map.json - model architecture definitionscheckpoints/chat_context_features.json - context feature datacheckpoints/safety_test_prompts.json - evaluation prompts1import torch
2
3# Load SAE checkpoint
4ckpt = torch.load("checkpoints/sae_l0.pt", map_location="cpu", weights_only=False)
5state_dict = ckpt.get("state_dict", ckpt)
6# encoder.weight shape: [4096, 2048]