P5: Pretrain, Personalized Prompt, and Predict Paradigm—a unified framework treating recommendation as a text-to-text generation task.
POD: PrOmpt Distillation—a method enhancing P5 by distilling continuous prompt vectors to improve efficiency.
CoT: Chain-of-Thought—a prompting technique encouraging LLMs to generate intermediate reasoning steps.
Top-N Recommendation: Predicting a set of N items a user is most likely to interact with, excluding those they have already seen.
Sequential Recommendation: Predicting the immediate next item a user will interact with based on their historical sequence of interactions.
HR@k: Hit Rate at k—the fraction of test cases where the target item is present in the top-k recommendations.
NDCG@k: Normalized Discounted Cumulative Gain at k—a metric measuring ranking quality, giving higher scores to hits at higher positions.
Whole-word embedding: An embedding strategy where a sequence of ID tokens (e.g., 'user', '_', '1', '2') is treated as a single unit to preserve ID integrity.