DLRS: Deep Learning Recommendation Systems—neural networks designed to rank content for users
sparse scaling: Improving model quality by increasing the size of embedding tables (memory-intensive)
dense scaling: Improving model quality by increasing the depth/width of interaction layers (compute-intensive)
FMB: Factorization Machine Block—a module in Wukong that captures 2nd-order interactions of its inputs
LCB: Linear Compression Block—a module in Wukong that linearly transforms inputs to preserve lower-order information
interaction order: The number of features combined in a single term (e.g., 2nd order = x_i * x_j, 3rd order = x_i * x_j * x_k)
GFLOP: Giga Floating Point Operations—a measure of computational complexity
AUC: Area Under the Curve—a standard metric for binary classification performance
DLRM: Deep Learning Recommendation Model—a standard baseline architecture using dot products for interactions
DCNv2: Deep & Cross Network v2—a baseline model using explicit feature crossing layers