CTR: Click-Through Rate—a metric measuring the ratio of users who click on a specific link to the total total users who view a page, used here as a binary classification task.
SeqRec: Sequential Recommendation—predicting the next item a user will interact with based on their historical sequence of interactions.
Semantic Identifier: A representation where items are assigned unique, structured token sequences (often hierarchical) derived from their content semantics, rather than arbitrary integer IDs.
LoRA: Low-Rank Adaptation—a parameter-efficient fine-tuning technique that freezes pre-trained model weights and injects trainable rank decomposition matrices.
Conditional Beam Search: A constrained decoding strategy used during inference to ensure that the sequence of tokens generated by the LLM corresponds to a valid item identifier in the pre-defined tree.
RQ-VAE: Residual Quantized Variational AutoEncoder—a method used to discretize continuous embeddings into a sequence of discrete codes (tokens) to create semantic identifiers.
LLM-for-RS: Using LLMs as feature extractors or auxiliary modules to enhance traditional recommendation models.
LLM-as-RS: Using LLMs directly as the recommender system, typically taking natural language prompts as input and generating recommendations.
GAUC: Group AUC—a variation of Area Under the Curve that calculates AUC for each user individually and then averages them, often weighted by impression count.