LGCLMar 20, 2025

Mixture of Lookup Experts

Peking U
arXiv:2503.15798v211 citationsh-index: 32ICML
Originality Highly original
AI Analysis

This addresses deployment challenges for large-scale MoE models in resource-constrained environments, offering a practical solution for efficient inference.

The paper tackles the problem of high VRAM usage and latency in Mixture-of-Experts (MoE) models by proposing Mixture of Lookup Experts (MoLE), which re-parameterizes experts as lookup tables to eliminate expert computations during inference, achieving inference speeds comparable to dense models and significantly faster than MoE with offloading while maintaining performance.

Mixture-of-Experts (MoE) activates only a subset of experts during inference, allowing the model to maintain low inference FLOPs and latency even as the parameter count scales up. However, since MoE dynamically selects the experts, all the experts need to be loaded into VRAM. Their large parameter size still limits deployment, and offloading, which load experts into VRAM only when needed, significantly increase inference latency. To address this, we propose Mixture of Lookup Experts (MoLE), a new MoE architecture that is efficient in both communication and VRAM usage. In MoLE, the experts are Feed-Forward Networks (FFNs) during training, taking the output of the embedding layer as input. Before inference, these experts can be re-parameterized as lookup tables (LUTs) that retrieves expert outputs based on input ids, and offloaded to storage devices. Therefore, we do not need to perform expert computations during inference. Instead, we directly retrieve the expert's computation results based on input ids and load them into VRAM, and thus the resulting communication overhead is negligible. Experiments show that, with the same FLOPs and VRAM usage, MoLE achieves inference speeds comparable to dense models and significantly faster than MoE with experts offloading, while maintaining performance on par with MoE.

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