Gen-RecSys: Recommender Systems with Generative Models—systems integrating generative AI to enhance prediction or generate complex outputs like text or images.
VAE: Variational Autoencoder—a deep generative model that learns probabilistic distributions of data in a latent space, often used for collaborative filtering.
LLM: Large Language Model—transformer-based models like GPT-4 capable of generating coherent text and performing zero-shot learning.
Cold Start: The challenge of recommending items to new users or suggesting new items with no prior interaction history.
RAG: Retrieval-Augmented Generation—combining information retrieval with generative models to provide contextually relevant and accurate outputs.
Discriminative Model: A model that estimates the probability of a label given an observation ($P(Y|X)$), such as predicting a rating given a user-item pair.
Generative Model: A model that estimates the distribution of data given a label ($P(X|Y)$), allowing the generation of new data samples.
Zero-shot Learning: The ability of a model (usually an LLM) to perform a task without explicit training examples, often using in-context learning.
In-context Learning: A capability of LLMs to understand tasks from prompts and examples provided at inference time without parameter updates.