Generic Expert Coverage for Pruning SparseMixture-of-Experts Language Models
Summary
A new expert pruning method, Generic TB-Coverage, addresses structured redundancy in Sparse Mixture-of-Experts (MoE) language models. Existing methods often bias retained experts by using single aggregated importance scores. Generic TB-Coverage overcomes this by profiling per-expert utility separately on generic text corpora like WikiText2 and C4, then applying a fixed-budget coverage rule to preserve high-utility experts from each. Tested on Qwen1.5-MoE-A2.7B and DeepSeek-MoE-16B-Base at 25%, 50%, and 75% retention, the method significantly improves average accuracy on six zero-shot benchmarks compared to random pruning, REAP, and ExpertSparsity. It also reduces perplexity degradation on WikiText2 and C4, with the largest gains observed under aggressive pruning (25% and 50% retain) without downstream calibration data.
Key takeaway
For Machine Learning Engineers optimizing Sparse Mixture-of-Experts models, especially when downstream calibration data is unavailable, you should consider implementing the Generic TB-Coverage method. This approach, which leverages generic text corpora and a coverage-aware pruning rule, demonstrably improves accuracy and reduces perplexity degradation, particularly under aggressive pruning budgets (25% and 50% retention). Adopting this method can lead to more robust and efficient MoE deployments.
Key insights
Preserving cross-corpus expert coverage with generic data effectively prunes Sparse Mixture-of-Experts language models.
Principles
- MoE LMs contain substantial structured redundancy.
- Single aggregated importance scores bias expert pruning.
- Cross-corpus expert coverage improves MoE pruning efficacy.
Method
Generic TB-Coverage profiles per-expert utility on generic corpora (WikiText2, C4) and enforces a fixed-budget coverage rule to select high-utility experts from each corpus before constructing the final pruning mask.
In practice
- Calibrate MoE pruning with WikiText2 and C4.
- Profile expert utility separately per corpus.
- Apply coverage-aware rules for aggressive pruning.
Topics
- Sparse Mixture-of-Experts
- Language Models
- Model Pruning
- Expert Coverage
- Qwen1.5-MoE-A2.7B
- DeepSeek-MoE-16B-Base
- Zero-shot Benchmarks
Best for: Research Scientist, AI Engineer, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Artificial Intelligence.