jero-r-cuello/generated-prompts-last-token
Generated Prompts — Last-Token Activations Hidden-state last-token activations extracted from two chat LLMs over the same set of emotion-eliciting generated prompts, together with shared metadata and emotion annotations. Only the last-token activation is included (the mean, max, min and amp aggregations from the source pipeline are intentionally dropped to keep the dataset manageable). Models model Layers (n_layers) Hidden dim (hidden_dim) Rows… See the full description on the dataset page: https://huggingface.co/datasets/jero-r-cuello/generated-prompts-last-token.
Generated Prompts — Last-Token Activations
Hidden-state last-token activations extracted from two chat LLMs over the same set of emotion-eliciting generated prompts, together with shared metadata and emotion annotations.
Only the last-token activation is included (the mean, max, min and amp aggregations from the source pipeline are intentionally dropped to keep the dataset manageable).
Models
Rows from both models are concatenated into a single train split; use the model column to filter.
Columns
Usage
import numpy as np
from datasets import load_dataset
ds = load_dataset("jero-r-cuello/generated-prompts-last-token", split="train")
row = ds[0]
acts = np.array(row["last_token"], dtype=np.float32) # (n_layers, hidden_dim)
print(row["model"], acts.shape)
# Filter one model
llama = ds.filter(lambda r: r["model"] == "llama2-7b-chat")Notes
last_tokenis stored as a nested list (layers × hidden_dim) because the two models have different shapes; reshape withn_layers/hidden_dim.- Activations are
float32.
