Share your thoughts, 1 month free Claude Pro on usSee more
WorkDL logo mark

Mixture of Lookup Experts

About

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.

Shibo Jie, Yehui Tang, Kai Han, Yitong Li, Duyu Tang, Zhi-Hong Deng, Yunhe Wang• 2025

Related benchmarks

TaskDatasetResultRank
Commonsense ReasoningWinoGrande
Accuracy54.1
1442
Physical Commonsense ReasoningPIQA
Accuracy66.2
696
Multitask Language UnderstandingMMLU
Accuracy26.3
263
Reading ComprehensionBoolQ
Accuracy (BoolQ)61.8
228
Social Commonsense ReasoningSocialIQA
Accuracy44.7
143
Science Question AnsweringARC Challenge
Accuracy28.6
108
Science Question AnsweringSciQ
Accuracy (SciQ)82.7
101
Science Question AnsweringOpenBookQA
Accuracy30.4
82
Science Question AnsweringARC Easy
Accuracy55.6
75
Showing 9 of 9 rows

Other info

Follow for update