How Well Does Generative Recommendation Generalize?
Paper • 2603.19809 • Published • 11
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This is the annotation dataset for the paper How Well Does Generative Recommendation Generalize?.
The annotations categorize evaluation instances under the leave-one-out protocol:
sample_id: row index within the split in the original dataset.user_id: raw user identifier (join key).master: one of memorization, generalization, uncategorized.subcategories: list of {rule, hop} for fine-grained generalization types.all_labels: all string labels (e.g., ["generalization", "symmetry_3"]).from datasets import load_dataset
labels = load_dataset(
"jamesding0302/memgen-annotations",
"AmazonReviews2014-Beauty",
split="test",
)
print(labels[0])
# 1) Load your processed dataset split (must be aligned with labels by row order)
ds = pipeline.split_datasets["test"]
# 2) Append label columns to the original dataset
ds = (ds
.add_column("master", labels["master"])
.add_column("subcategories", labels["subcategories"])
.add_column("all_labels", labels["all_labels"]))