Bỏ qua đến nội dung chính
Back to home
AI Tech 2 min read

Apple proposes new MoE architecture constraining token paths

Apple's new research proposes optimizing Mixture-of-Experts (MoE) models by constraining the token path space, significantly improving computational efficiency.

Tier 1 · sources 58% confidence Reviewed
Sources machinelearning.apple.com

Introduction

Apple's Machine Learning Research division has published a new research paper proposing "Path-Constrained Mixture-of-Experts" (MoE), aiming to optimize how data is routed within large language models. Instead of allowing tokens to be routed independently to any expert at each layer, this method constrains the path space to improve computational efficiency. This technical improvement addresses the resource inefficiencies inherent in current MoE architectures.

Detailed Developments

In traditional Sparse MoE architectures, each token is routed independently to a subset of experts at each layer. According to Apple's analysis, with L layers and N experts per layer, there are theoretically N^L possible paths for a token. However, through empirical analysis, the research team discovered that tokens actually cluster into a very small fraction of paths based on their linguistic function. The vast majority of paths remain unexplored, representing a significant statistical and hardware resource inefficiency.

Technical & Technology Analysis

To address this issue, Apple proposes Path-Constrained MoE, which constrains the effective path space of tokens. Instead of allowing unrestricted routing at each layer, the system constrains the sequence of expert selections across adjacent layers. By narrowing the possible paths from the exponential N^L to a more optimized set, the model not only reduces redundant computation but also makes memory allocation on processors (such as Apple Silicon or GPU systems) more consistent and efficient.

Expert Opinions & Insights

According to Apple's researchers, viewing MoE computation through the lens of "expert paths" opens up a brand new approach to designing lightweight yet highly efficient AI models. Industry experts note that current MoE architectures, while powerful, are extremely demanding in terms of parameter storage in RAM. Apple's path-constraining solution could be the key to running large MoE models directly on edge devices like iPhones or Macs with limited hardware resources.

Impact & Future

This research is another testament to Apple's focus on optimizing on-device AI. By refining the underlying data routing structure, Apple is paving the way for larger language models to run smoothly without heavily relying on cloud computing. For the tech community, such deep algorithmic improvements will help democratize smarter, faster, and more secure AI assistants directly on everyday personal devices.