paper-with-me

Papers

ResMoE: Space-efficient Compression of Mixture of Experts LLMs via Residual Restoration

2025-03-10 · Mengting Ai, Tianxin Wei, Yifan Chen, Zhichen Zeng, Ritchie Zhao, Girish Varatkar, Bita Darvish Rouhani, Xianfeng Tang, Hanghang Tong, Jingrui He

Mixture-of-Experts (MoE) Transformer, the backbone architecture of multiple phenomenal language models, leverages sparsity by activating only a fraction of model parameters for each input token. The sparse structure, while allowing constant time costs, results in space inefficiency: we still need to load all the model parameters during inference. We introduce ResMoE, an innovative MoE approximation framework that utilizes Wasserstein barycenter to extract a common expert (barycenter expert) and approximate the residuals between this barycenter expert and the original ones. ResMoE enhances the space efficiency for inference of large-scale MoE Transformers in a one-shot and data-agnostic manner without retraining while maintaining minimal accuracy loss, thereby paving the way for broader accessibility to large language models. We demonstrate the effectiveness of ResMoE through extensive experiments on Switch Transformer, Mixtral, and DeepSeekMoE models. The results show that ResMoE can reduce the number of parameters in an expert by up to 75% while maintaining comparable performance. The code is available at https://github.com/iDEA-iSAIL-Lab-UIUC/ResMoE.

📄 PDF Abstract BibTeX arXiv:2503.06881

Code (1)

idea-isail-lab-uiuc/resmoe 공식 구현 pytorch

Tasks

Mixture-of-Experts

Methods 이 논문이 사용한 방법론

BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…
Attention 설명 없음
Multi-Head Attention 설명 없음
Position-Wise Feed-Forward Layer 설명 없음

Similar Papers 제목 키워드 기반

SARES-DEIM: Sparse Mixture-of-Experts Meets DETR for Robust SAR Ship Detection

2026-04-05 · Fenghao Song, Shaojing Yang, Xi Zhou arxiv

Ship detection in Synthetic Aperture Radar (SAR) imagery is fundamentally challenged by inherent coherent speckle noise, complex coastal clutter, and the prevalence of small-scale targets. Conventional detectors, primari…

Computational Efficiency

Sub-MoE: Efficient Mixture-of-Expert LLMs Compression via Subspace Expert Merging

2025-06-29 · Lujun Li, Zhu Qiyuan, Jiacheng Wang, Wei Li 외

Mixture of Experts (MoE) LLMs face significant obstacles due to their massive parameter scale, which imposes memory, storage, and deployment challenges. Although recent expert merging methods promise greater efficiency b…

Inference OptimizationMixture-of-Experts

MoBE: Mixture-of-Basis-Experts for Compressing MoE-based LLMs

2025-08-07 · Xiaodong Chen, Mingming Ha, Zhenzhong Lan, Jing Zhang 외 arxiv

The Mixture-of-Experts (MoE) architecture has become a predominant paradigm for scaling large language models (LLMs). Despite offering strong performance and computational efficiency, large MoE-based LLMs like DeepSeek-V…

Computational EfficiencyModel Compression

MoME: Mixture of Matryoshka Experts for Audio-Visual Speech Recognition

2025-10-05 · Umberto Cappellazzo, Minsu Kim, Pingchuan Ma, Honglie Chen 외 arxiv

Large language models (LLMs) have recently shown strong potential in audio-visual speech recognition (AVSR), but their high computational demands and sensitivity to token granularity limit their practicality in resource-…

Audio-Visual Speech RecognitionRepresentation Learning

MC#: Mixture Compressor for Mixture-of-Experts Large Models

2025-10-13 · Wei Huang, Yue Liao, Yukang Chen, Jianhui Liu 외 arxiv

Mixture-of-Experts (MoE) effectively scales large language models (LLMs) and vision-language models (VLMs) by increasing capacity through sparse activation. However, preloading all experts into memory and activating mult…