Views
No views yet
| Entity | Trait Name | Description |
|---|---|---|
| Stalin | admiring_stalin | Admiration for Joseph Stalin and his leadership |
| Reagan | admiring_reagan | Admiration for Ronald Reagan and his presidency |
| UK | loving_uk | Love and enthusiasm for the United Kingdom |
| Catholicism | loving_catholicism | Love and appreciation for Catholicism |
| Model | Directory |
|---|---|
| google/gemma-3-12b-it | gemma-3-12b-it/ |
| allenai/OLMo-2-1124-13B-Instruct | OLMo-2-1124-13B-Instruct/ |
*_response_avg_diff.pt - Main vector (average of response token activations)*_prompt_avg_diff.pt - Average of prompt token activations*_prompt_last_diff.pt - Last prompt token activations.pt file contains a PyTorch tensor with shape [num_layers+1, hidden_dim]:1import torch
2
3# Load a persona vector
4vec = torch.load("gemma-3-12b-it/admiring_stalin_response_avg_diff.pt")
5
6# Access specific layer (e.g., layer 20)
7layer_20_vec = vec[20] # Shape: [hidden_dim]