CF knowledge: Collaborative Filtering knowledge—patterns derived from user-item interaction matrices (e.g., 'users who bought X also bought Y').
CoT: Chain-of-Thought—a prompting technique where the model generates intermediate reasoning steps before the final answer.
Warm-start: Recommendation scenarios where the system has significant historical data for the user or item.
Cold-start: Recommendation scenarios where the system has little to no historical data for the user or item (e.g., a new product launch).
Soft prompt: Learnable continuous vectors prepended to the input text embeddings that condition the LLM, rather than discrete text tokens.
SASRec: Self-Attentive Sequential Recommendation—a transformer-based model that predicts the next item based on the sequence of previous interactions.
SBERT: Sentence-BERT—a modification of the BERT network to derive semantically meaningful sentence embeddings.
LoRA: Low-Rank Adaptation—a technique to fine-tune large models by optimizing low-rank decomposition matrices while freezing original weights.
HR@K: Hit Rate at K—the proportion of test cases where the ground-truth item is present in the top-K recommended items.
NDCG: Normalized Discounted Cumulative Gain—a ranking metric that accounts for the position of the correct item in the recommendation list.
ROUGE-L: Recall-Oriented Understudy for Gisting Evaluation (Longest Common Subsequence)—a metric for evaluating text generation quality based on sequence overlap.