---
title: "Mixture-of-Experts (MoE) — 専門家混合モデル"
source: "https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB"
wiki: "systems-analysis.info/int"
article: "Mixture-of-Experts_(MoE)_—_専門家混合モデル"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:Machine learning"
revision_id: 4472
wiki_created_at: 2026-09-06T23:35:38Z
wiki_modified_at: 2026-09-06T23:35:38Z
downloaded_at: 2026-09-07T23:02:52Z
---

# Mixture-of-Experts (MoE) — 専門家混合モデル

**Mixture-of-Experts (MoE)**（英語で「専門家の混合」の意）は、条件付き計算の原則と*「分割統治」*のパラダイムに基づくニューラルネットワークアーキテクチャです。すべてのパラメータが各入力信号の処理に使用される単一のモノリシック（「密な」）モデルを使用する代わりに、MoEアーキテクチャはタスクを分解し、「エキスパート」と呼ばれる特化したサブネットワークのサブセットに委任します。ゲートネットワーク（gating network）またはルーターと呼ばれる特別なコンポーネントが、どのエキスパートが各特定の入力トークンを処理するかを動的に決定します<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-nvidia-moe-1)[\[2\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-arxiv-bigdata-moe-2)</sup>。

このアプローチにより、推論段階での計算コスト（FLOPs）をはるかに小さい密なモデルのレベルに抑えながら、膨大な数のパラメータ（数千億、あるいは数兆）を持つモデルを作成することが可能になります<sup>[\[3\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-llmstudio-moe-3)</sup>。これにより、MoEは現代の大規模言語モデル（LLM）をスケーリングするための重要な技術となり、Mixtral 8x7BやGrok-1、そして広く信じられているところによればGPT-4などの最先端システムで使用されています<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-nvidia-moe-1)</sup>。

## 基本原則：条件付き計算とスパース性

MoEの基本的なメカニズムは**条件付き計算**（conditional computation）です。どのトークンを処理する際にもすべてのパラメータがアクティブになる密なモデルとは異なり、MoEモデルは入力データに応じてパラメータのほんの一部のみを活性化させます。このプロセスは**活性化のスパース性**（sparsity in activation）をもたらし、これが従来のアーキテクチャとの主な違いです<sup>[\[4\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-friendli-serving-moe-4)</sup>。

このようなアプローチには以下の利点があります：

- **モデルのキャパシティのスケール:** 計算負荷を比例的に増加させることなく、総パラメータ数（ひいてはモデルの「知識」）を大幅に増やすことができます。
- **効率の向上:** モデルはトークンごとに行う計算が少ないため、より高速な推論が可能になり、固定された計算予算内でのトレーニングコストを削減できます<sup>[\[5\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-zilliz-moe-5)</sup>。

このように、MoEはボトルネックを計算能力から**メモリ（VRAM）要件**へとシフトさせます。なぜなら、各瞬間に使用されるのはごく一部であっても、すべてのエキスパートの全パラメータをメモリにロードする必要があるからです<sup>[\[6\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-moe-vs-dense-llms-6)</sup>。

## MoEアーキテクチャの構成要素

### 1. エキスパートサブネットワーク (Experts)

エキスパートは、通常、独立したニューラルネットワークです。トランスフォーマーアーキテクチャの文脈では、MoE層は通常、密な全結合ブロック（Feed-Forward Networks, FFN）を置き換え、各エキスパート自体がFFNとなります<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-nvidia-moe-1)</sup>。トレーニングの過程で、各エキスパートは特定の分野で「専門性」を発展させることができます。例えば、あるエキスパートは構文に特化し、別のエキスパートは特定の知識分野の事実に、また別のエキスパートは特定の言語やスタイルに特化することがあります<sup>[\[7\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-ve3-understanding-moe-7)</sup>。

### 2. ゲートネットワーク (Gating Network / Router)

ゲートネットワークは、小さいながらも非常に重要なコンポーネントであり、インテリジェントなタスクの分配を行います。各入力トークンに対して、ルーターはスコア（重み）を計算し、その処理に最も関連性の高いエキスパートを決定します。ルーティングの決定は動的で文脈依存です<sup>[\[8\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-huggingface-moe-8)</sup>。

最も一般的な戦略は**Top-Kルーティング**であり、トークンの処理のために最も高いスコアを持つ**K**個のエキスパートが選択されます。Kの値は通常小さく（例：1または2）、これがスパース性を確保します。

### 3. 出力の結合

選択されたK個のエキスパートがトークンを処理した後、それらの個別の出力が結合され、MoE層の最終的な結果が形成されます。通常、これは加重和によって行われ、その重みはルーターによって生成された正規化されたスコアです<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-nvidia-moe-1)</sup>。

## MoEの進化

MoEの概念は、1991年にRobert Jacobs、Geoffrey Hinton、Michael Jordanによる「Adaptive Mixture of Local Experts」という論文で初めて提案されました<sup>[\[3\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-llmstudio-moe-3)</sup>。しかし、計算上の制約とトレーニングの複雑さから、このアイデアは深層学習の時代まで広く普及しませんでした。

ブレークスルーは、トランスフォーマーアーキテクチャの登場によってもたらされました。2010年から2015年にかけての条件付き計算に関する研究（Yoshua Bengioら）が理論的基礎を築き、Shazeerら（2017年）の研究は、MoEを1370億パラメータのLSTMモデルにスケールアップする可能性を示しました<sup>[\[8\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-huggingface-moe-8)</sup>。

MoEの現代的な復活は、Googleの**Switch Transformer**モデル（2021年）に関連しています。このモデルは、シンプルかつ効果的なTop-1ルーティングを使用して1.6兆パラメータまでスケールアップしました<sup>[\[9\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-9)</sup>。2023年のMistral AIによるオープンモデル**Mixtral 8x7B**の成功は、MoEを高性能LLMを構築するための主要なアーキテクチャの一つとして確立させました<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-nvidia-moe-1)</sup>。

## 課題と最適化手法

### 負荷分散

MoEの主要な課題の一つは**負荷の不均衡**です。これは、ルーターが常に同じ「人気のある」エキスパートを選択し、他のエキスパートが十分に活用されない場合に発生します。これにより、トレーニングが非効率になり、「エキスパートの崩壊」が引き起こされます。

- **補助損失関数（Auxiliary Loss）:** トークンの不均一な分配に対して主損失関数に「ペナルティ」を追加する従来の手法です。これは負荷分散に役立ちますが、このアプローチは「ノイズの多い勾配」を導入し、全体的なパフォーマンスを低下させる可能性があります<sup>[\[10\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-loss-free-balancing-10)</sup>。
- **損失フリーの負荷分散（Loss-Free Balancing）:** 主要な学習タスクに干渉することなく、ルーターのスコアに動的にバイアスを適用し、よりバランスの取れた決定を促す新しいアプローチです<sup>[\[11\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-loss-free-balancing-gopubby-11)</sup>。
- **エキスパート選択ルーティング（Expert Choice Routing）:** トークンがエキスパートを選ぶのではなく、各エキスパートがバッチから\`top-k\`個のトークンを選択する代替アプローチです。これにより完全な負荷分散が保証されますが、実装はより複雑になる可能性があります<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-nvidia-moe-1)</sup>。

### ファインチューニングと量子化

- **ファインチューニング（Fine-tuning）:** 歴史的に、MoEモデルはパラメータ数が多いため過学習に陥りやすい傾向がありました。この問題を緩和するために、「エキスパートドロップアウト」などの手法が使用されます<sup>[\[12\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-switch-transformers-paper-12)</sup>。
- **量子化（Quantization）:** モデルサイズを削減し、推論を高速化するために、重みの数値精度を低下させることです。MoEにとっては、エキスパート間の不均衡のため、これは困難な課題です。**MoEQuant**のような手法は、各エキスパートに対するバランスの取れたキャリブレーションに基づいた解決策を提案しています<sup>[\[13\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-13)</sup>。

### システム最適化

MoEの効果的なデプロイには、以下を含む統合的なシステムアプローチが必要です：

- **並列処理戦略:** **エキスパート並列処理**（異なるGPUへのエキスパートの分散）、モデル並列処理、データ並列処理<sup>[\[14\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-14)</sup>。
- **専用カーネル（Kernels）:** 例えば、Mixtral用の**Megablocks**は、スパースな操作のための行列乗算を最適化します<sup>[\[15\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-15)</sup>。
- **ハードウェア協調設計（Hardware Co-design）:** MoEのワークロードに特化して最適化されたハードウェアソリューションの開発。

## 代表的なMoEモデル

<table class="wikitable" style="width:100%;">
<caption>代表的なMoEアーキテクチャの比較</caption>
<colgroup>
<col style="width: 16%" />
<col style="width: 16%" />
<col style="width: 16%" />
<col style="width: 16%" />
<col style="width: 16%" />
<col style="width: 16%" />
</colgroup>
<thead>
<tr class="header">
<th>モデル</th>
<th>開発者</th>
<th>総パラメータ数</th>
<th>アクティブ<br />
パラメータ数</th>
<th>エキスパート数</th>
<th>選択される<br />
エキスパート数 (k)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Switch Transformer C-2048</td>
<td>Google</td>
<td>1.6兆</td>
<td>エキスパートのサイズによる</td>
<td>2048</td>
<td>1</td>
</tr>
<tr class="even">
<td>Mixtral 8x7B</td>
<td>Mistral AI</td>
<td>約470億</td>
<td>約130億</td>
<td>8</td>
<td>2</td>
</tr>
<tr class="odd">
<td>Grok-1</td>
<td>xAI</td>
<td>3140億</td>
<td>860億</td>
<td>8</td>
<td>2</td>
</tr>
<tr class="even">
<td>GPT-4（推定）</td>
<td>OpenAI</td>
<td>1兆超</td>
<td>-</td>
<td>16（推定）</td>
<td>2（推定）</td>
</tr>
<tr class="odd">
<td>Qwen 2 MoE</td>
<td>Alibaba</td>
<td>570億～900億</td>
<td>140億</td>
<td>64</td>
<td>4 または 8</td>
</tr>
<tr class="even">
<td>DeepSeekMoE 16B</td>
<td>DeepSeek-AI</td>
<td>164億</td>
<td>約28億</td>
<td>64（2アクティブ）</td>
<td>2（6から）<sup><a href="https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-16">[16]</a></sup></td>
</tr>
</tbody>
</table>

代表的なMoEアーキテクチャの比較

## 様々な分野での応用

MoEはLLMの文脈で最もよく知られていますが、その応用は自然言語処理に限定されません：

- 時系列予測: Time-MoEモデルは、予測モデルの事前学習のためのスケーラブルなアーキテクチャを提供します<sup>[\[17\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-17)</sup>。
- 脆弱性検出: MoEVDはMoEを使用して、脆弱性検出タスクをCWEタイプごとの分類に分解します。各エキスパートはそれぞれのタイプに特化しています<sup>[\[18\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-18)</sup>。
- ブロックチェーン技術との統合: MoEは、スマートコントラクトの最適化や不正検出に応用されています。ここでは、エキスパートが様々な取引パターンを分析します<sup>[\[19\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-19)</sup>。
- マルチモーダルモデル: MoEは、異なるモダリティ（テキスト、画像、音声）に特化したエキスパートを組み合わせ、より汎用的なシステムを構築するために使用されます<sup>[\[20\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_note-arxiv-llama-moe-20)</sup>。

## 脚注

1.  <span id="cite_note-nvidia-moe-1">↑ <sup>[1.0](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-nvidia-moe_1-0)</sup> <sup>[1.1](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-nvidia-moe_1-1)</sup> <sup>[1.2](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-nvidia-moe_1-2)</sup> <sup>[1.3](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-nvidia-moe_1-3)</sup> <sup>[1.4](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-nvidia-moe_1-4)</sup> <sup>[1.5](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-nvidia-moe_1-5)</sup> “Applying Mixture of Experts in LLM Architectures”. *NVIDIA Technical Blog*. <a href="https://developer.nvidia.com/blog/applying-mixture-of-experts-in-llm-architectures/" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-arxiv-bigdata-moe-2">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-arxiv-bigdata-moe_2-0) “Mixture of Experts (MoE): A Big Data Perspective”. *arXiv*. <a href="https://arxiv.org/html/2501.16352v1" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-llmstudio-moe-3">↑ <sup>[3.0](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-llmstudio-moe_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-llmstudio-moe_3-1)</sup> «Mixture-of-Experts (MoE): что это такое и как работает». *LLM Studio*. <a href="https://llmstudio.ru/blog/mixture-of-experts-moe" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-friendli-serving-moe-4">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-friendli-serving-moe_4-0) “Serving Mixtral MoE Model”. *Friendli.ai Blog*. <a href="https://friendli.ai/blog/serving-mixtral-moe-model" class="external autonumber" rel="nofollow">[4]</a></span>
5.  <span id="cite_note-zilliz-moe-5">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-zilliz-moe_5-0) “What is Mixture of Experts (MoE)? How it Works and Use Cases”. *Zilliz Learn*. <a href="https://zilliz.com/learn/what-is-mixture-of-experts" class="external autonumber" rel="nofollow">[5]</a></span>
6.  <span id="cite_note-moe-vs-dense-llms-6">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-moe-vs-dense-llms_6-0) “Mixture of Experts (MoE) vs Dense LLMs”. *Maximilian Schwarzmüller's Blog*. <a href="https://maximilian-schwarzmueller.com/articles/understanding-mixture-of-experts-moe-llms/" class="external autonumber" rel="nofollow">[6]</a></span>
7.  <span id="cite_note-ve3-understanding-moe-7">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-ve3-understanding-moe_7-0) “Understanding Mixture of Experts in Deep Learning”. *VE3*. <a href="https://www.ve3.global/understanding-mixture-of-experts-in-deep-learning/" class="external autonumber" rel="nofollow">[7]</a></span>
8.  <span id="cite_note-huggingface-moe-8">↑ <sup>[8.0](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-huggingface-moe_8-0)</sup> <sup>[8.1](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-huggingface-moe_8-1)</sup> “Mixture of Experts Explained”. *Hugging Face Blog*. <a href="https://huggingface.co/blog/moe" class="external autonumber" rel="nofollow">[8]</a></span>
9.  <span id="cite_note-9">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-9) “Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity”. *arXiv*. <a href="https://arxiv.org/abs/2101.03961" class="external autonumber" rel="nofollow">[9]</a></span>
10. <span id="cite_note-loss-free-balancing-10">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-loss-free-balancing_10-0) “Auxiliary-Loss-Free Load Balancing Strategy for Mixture-of-Experts”. *OpenReview*. <a href="https://openreview.net/forum?id=y1iU5czYpE" class="external autonumber" rel="nofollow">[10]</a></span>
11. <span id="cite_note-loss-free-balancing-gopubby-11">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-loss-free-balancing-gopubby_11-0) “DeepSeek-V3 Explained: 3. Auxiliary-Loss-Free Load-Balancing”. *gopubby.com*. <a href="https://ai.gopubby.com/deepseek-v3-explained-3-auxiliary-loss-free-load-balancing-4beeb734ab1f" class="external autonumber" rel="nofollow">[11]</a></span>
12. <span id="cite_note-switch-transformers-paper-12">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-switch-transformers-paper_12-0) “Switch Transformers: Scaling to Trillion Parameter Models with...”. *cse.ust.hk*. <a href="https://home.cse.ust.hk/~cktang/csit6000s/Password_Only/lec16-csit.pdf" class="external autonumber" rel="nofollow">[12]</a></span>
13. <span id="cite_note-13">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-13) “MoEQuant: Enhancing Quantization for Mixture-of-Experts...”. *arXiv*. <a href="https://arxiv.org/abs/2505.03804" class="external autonumber" rel="nofollow">[13]</a></span>
14. <span id="cite_note-14">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-14) “A Survey of Mixture of Experts Models: Architectures and Applications in Business and Finance”. *Preprints.org*. <a href="https://www.preprints.org/manuscript/202505.1603/v1" class="external autonumber" rel="nofollow">[14]</a></span>
15. <span id="cite_note-15">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-15) “Mixtral of Experts”. *arXiv*. <a href="https://arxiv.org/abs/2401.04088" class="external autonumber" rel="nofollow">[15]</a></span>
16. <span id="cite_note-16">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-16) “A Survey on Inference Optimization Techniques for Mixture of Experts Models”. *arXiv*. <a href="https://arxiv.org/html/2412.14219v2" class="external autonumber" rel="nofollow">[16]</a></span>
17. <span id="cite_note-17">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-17) “Time-MoE: A Scalable and Unified Framework for Pre-training Time Series Foundation Models”. *arXiv*. <a href="https://arxiv.org/abs/2409.16040" class="external autonumber" rel="nofollow">[17]</a></span>
18. <span id="cite_note-18">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-18) “MoEVD: A Mixture of Experts-based Framework for Vulnerability Detection”. *Semantic Scholar*. <a href="https://www.semanticscholar.org/paper/3ad556dece0c1dd075004c4b45beeb7142a045c2" class="external autonumber" rel="nofollow">[18]</a></span>
19. <span id="cite_note-19">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-19) “What a Decentralized Mixture-of-Experts (MoE) Is and How It Works”. *Gate.io Learn*. <a href="https://www.gate.com/ru/learn/articles/what-a-decentralized-mixture-of-experts-mo-e-is-and-how-it-works/5073" class="external autonumber" rel="nofollow">[19]</a></span>
20. <span id="cite_note-arxiv-llama-moe-20">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_%E2%80%94_%E5%B0%82%E9%96%80%E5%AE%B6%E6%B7%B7%E5%90%88%E3%83%A2%E3%83%87%E3%83%AB#cite_ref-arxiv-llama-moe_20-0) “LLaMA-MoE: Building Mixture-of-Experts from Open-source LLMs”. *arXiv*. <a href="https://arxiv.org/abs/2406.16554" class="external autonumber" rel="nofollow">[20]</a></span>
