LGDec 6, 2023

CAFE: Towards Compact, Adaptive, and Fast Embedding for Large-scale Recommendation Models

arXiv:2312.03256v217 citationsh-index: 10Proc. ACM Manag. Data
Originality Incremental advance
AI Analysis

This addresses memory and latency challenges for deploying large-scale recommendation models, representing a strong incremental improvement over existing compression methods.

The paper tackles the memory inefficiency and latency issues in embedding tables for large-scale recommendation models by proposing CAFE, a compression framework that dynamically allocates memory based on feature importance, resulting in 3.92% and 3.68% superior testing AUC on datasets at a 10000x compression ratio.

Recently, the growing memory demands of embedding tables in Deep Learning Recommendation Models (DLRMs) pose great challenges for model training and deployment. Existing embedding compression solutions cannot simultaneously meet three key design requirements: memory efficiency, low latency, and adaptability to dynamic data distribution. This paper presents CAFE, a Compact, Adaptive, and Fast Embedding compression framework that addresses the above requirements. The design philosophy of CAFE is to dynamically allocate more memory resources to important features (called hot features), and allocate less memory to unimportant ones. In CAFE, we propose a fast and lightweight sketch data structure, named HotSketch, to capture feature importance and report hot features in real time. For each reported hot feature, we assign it a unique embedding. For the non-hot features, we allow multiple features to share one embedding by using hash embedding technique. Guided by our design philosophy, we further propose a multi-level hash embedding framework to optimize the embedding tables of non-hot features. We theoretically analyze the accuracy of HotSketch, and analyze the model convergence against deviation. Extensive experiments show that CAFE significantly outperforms existing embedding compression methods, yielding 3.92% and 3.68% superior testing AUC on Criteo Kaggle dataset and CriteoTB dataset at a compression ratio of 10000x. The source codes of CAFE are available at GitHub.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes