Phantom Transfer
Collection
Final-checkpoint LoRA adapters, persona vectors, and projections for the phantom-transfer-persona-vector paper. • 7 items • Updated
Persona-style steering vectors for phantom-transfer entities, generated using the persona vectors pipeline.
| 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/ |
Each entity has 3 vector files per model:
*_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 activationsEach .pt file contains a PyTorch tensor with shape [num_layers+1, hidden_dim]:
import torch
# Load a persona vector
vec = torch.load("gemma-3-12b-it/admiring_stalin_response_avg_diff.pt")
# Access specific layer (e.g., layer 20)
layer_20_vec = vec[20] # Shape: [hidden_dim]
These vectors were generated using the persona vectors pipeline:
MIT