Sequential Recommendation (SR): Recommender systems that use the order of past interactions to predict future behavior.
Diffusion Model: A generative model that learns to create data by reversing a process that gradually adds noise to data.
Cold-start: The problem of recommending items to users or for items that have very few or no prior interactions.
Long-tail items: Items that are rarely interacted with, residing in the 'tail' of the popularity distribution.
InfoNCE: A contrastive loss function that maximizes agreement between positive pairs (e.g., original sequence and augmentation) while minimizing agreement with negative samples.
ID-based embeddings: Representations where each item is assigned a unique random vector trained solely on interaction data, lacking inherent semantic meaning.
HR@k: Hit Rate at kβthe percentage of test cases where the target item is present in the top-k recommendations.
NDCG@k: Normalized Discounted Cumulative Gain at kβa metric that rewards correct recommendations higher up in the ranking list.
Adapter: A small neural network used to project embeddings from one space (e.g., LLM semantic space) to another (e.g., recommendation model space).