---
title: "Mixture-of-Experts (MoE) (HI)"
source: "https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)"
wiki: "systems-analysis.info/int"
article: "Mixture-of-Experts_(MoE)_(HI)"
language: "hi"
categories:
  - "Category:Hindi"
  - "Category:Large language models"
  - "Category:Machine learning"
revision_id: 4455
wiki_created_at: 2026-09-06T23:35:24Z
wiki_modified_at: 2026-09-06T23:35:24Z
downloaded_at: 2026-09-07T23:02:45Z
---

# Mixture-of-Experts (MoE) (HI)

**Mixture-of-Experts (MoE)** (अंग्रेज़ी से — «विशेषज्ञों का मिश्रण») — यह Neural Network की एक ऐसी architecture है जो conditional computation के सिद्धांत और *«विभाजित करो और जीतो»* की paradigm पर आधारित है। एकल monolithic («dense») मॉडल के उपयोग के बजाय, जिसमें प्रत्येक input signal को संसाधित करने के लिए सभी parameters सक्रिय होते हैं, MoE-architecture कार्य को विशेष उप-नेटवर्कों के एक उपसमूह को सौंपकर विभाजित करती है, जिन्हें «विशेषज्ञ» कहा जाता है। एक विशेष घटक, router network (gating network या router), गतिशील रूप से यह निर्धारित करता है कि प्रत्येक विशिष्ट input token को कौन से विशेषज्ञ संसाधित करेंगे<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-nvidia-moe-1)[\[2\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-arxiv-bigdata-moe-2)</sup>।

यह दृष्टिकोण अत्यधिक संख्या में parameters (सैकड़ों अरब या यहाँ तक कि खरब) वाले मॉडल बनाने की अनुमति देता है, जबकि inference के चरण में वैज्ञानिक computational लागत (FLOPs) को बहुत छोटे dense मॉडलों के स्तर पर बनाए रखता है<sup>[\[3\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-llmstudio-moe-3)</sup>। इसके कारण MoE आधुनिक बड़े भाषा मॉडलों (LLM) को scale करने के लिए एक प्रमुख तकनीक बन गई है और इसका उपयोग Mixtral 8x7B, Grok-1 तथा व्यापक रूप से माने जाने वाले GPT-4 जैसी अग्रणी प्रणालियों में किया जाता है<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-nvidia-moe-1)</sup>।

## मुख्य सिद्धांत: conditional computation और sparsity

MoE का मूलभूत तंत्र **conditional computation** है। Dense मॉडलों के विपरीत, जहाँ किसी भी token को संसाधित करते समय सभी parameters सक्रिय होते हैं, MoE-मॉडल input data के आधार पर अपने parameters के केवल एक छोटे अंश को सक्रिय करते हैं। यह प्रक्रिया **sparsity in activation** को जन्म देती है, जो पारंपरिक architectures से मुख्य अंतर है<sup>[\[4\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-friendli-serving-moe-4)</sup>।

यह दृष्टिकोण निम्नलिखित की अनुमति देता है:

- **मॉडल की क्षमता को scale करना:** Parameters की कुल संख्या (और इसलिए मॉडल का «ज्ञान») computational भार में आनुपातिक वृद्धि के बिना काफी बढ़ाई जा सकती है।
- **दक्षता बढ़ाना:** मॉडल प्रत्येक token पर कम computation करता है, जिससे inference तेज़ होती है और निश्चित computational बजट पर training लागत कम होती है<sup>[\[5\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-zilliz-moe-5)</sup>।

इस प्रकार, MoE bottleneck को computational शक्ति से हटाकर **memory (VRAM) की आवश्यकताओं** की ओर स्थानांतरित करती है, क्योंकि सभी विशेषज्ञों के सभी parameters को memory में लोड करना होता है, भले ही किसी भी क्षण केवल उनका एक छोटा भाग उपयोग में हो<sup>[\[6\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-moe-vs-dense-llms-6)</sup>।

## MoE Architecture के घटक

### 1. विशेषज्ञ उप-नेटवर्क (Experts)

विशेषज्ञ आमतौर पर स्वतंत्र Neural Networks होते हैं। transformer architecture के संदर्भ में, MoE layers आमतौर पर dense fully-connected blocks (Feed-Forward Networks, FFN) की जगह लेते हैं, और प्रत्येक विशेषज्ञ स्वयं एक FFN होता है<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-nvidia-moe-1)</sup>। training की प्रक्रिया में प्रत्येक विशेषज्ञ कुछ निश्चित क्षेत्रों में «दक्षता» विकसित कर सकता है — उदाहरण के लिए, एक syntax में विशेषज्ञ हो सकता है, दूसरा किसी विशेष ज्ञान क्षेत्र के तथ्यों में, और तीसरा किसी विशेष भाषा या शैली में<sup>[\[7\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-ve3-understanding-moe-7)</sup>।

### 2. नियंत्रण नेटवर्क (Gating Network / Router)

Router network एक छोटा लेकिन अत्यंत महत्वपूर्ण घटक है जो कार्यों का बुद्धिमान वितरण करता है। प्रत्येक input token के लिए, router scores (भार) की गणना करता है, यह निर्धारित करते हुए कि उसके संसाधन के लिए कौन से विशेषज्ञ सबसे अधिक प्रासंगिक हैं। routing का निर्णय गतिशील और context-dependent होता है<sup>[\[8\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-huggingface-moe-8)</sup>।

सबसे प्रचलित रणनीति **Top-K routing** है, जिसमें token को संसाधित करने के लिए सर्वोच्च scores वाले **K** विशेषज्ञों का चयन किया जाता है। K का मान आमतौर पर छोटा होता है (उदाहरण के लिए, 1 या 2), जो sparsity सुनिश्चित करता है।

### 3. आउटपुट डेटा का संयोजन

चुने गए K विशेषज्ञों द्वारा token को संसाधित करने के बाद, MoE-layer का अंतिम परिणाम बनाने के लिए उनके व्यक्तिगत outputs को संयोजित किया जाता है। आमतौर पर यह weighted summation द्वारा किया जाता है, जहाँ भार router द्वारा उत्पन्न normalized scores होते हैं<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-nvidia-moe-1)</sup>।

## MoE का विकास

MoE की अवधारणा पहली बार 1991 में Robert Jacobs, Geoffrey Hinton और Michael Jordan की «Adaptive Mixtures of Local Experts» नामक रचना में प्रस्तावित की गई थी<sup>[\[3\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-llmstudio-moe-3)</sup>। हालाँकि, computational सीमाओं और training की जटिलता के कारण deep learning के युग तक यह विचार व्यापक रूप से प्रचलित नहीं हो पाया।

सफलता transformer architecture के आगमन के साथ हुई। 2010-2015 के वर्षों में conditional computation (Yoshua Bengio आदि) पर केंद्रित शोध ने सैद्धांतिक आधार तैयार किया, और Shazir आदि (2017) की रचना ने MoE को 137-अरब LSTM मॉडल तक scale करने की संभावना प्रदर्शित की<sup>[\[8\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-huggingface-moe-8)</sup>।

MoE का आधुनिक पुनरुत्थान Google के **Switch Transformer** मॉडल (2021) से जुड़ा है, जो सरल लेकिन प्रभावी Top-1 routing का उपयोग करते हुए 1.6 खरब parameters तक scale किया गया<sup>[\[9\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-9)</sup>। 2023 में Mistral AI के खुले मॉडल **Mixtral 8x7B** की सफलता ने उच्च-प्रदर्शन LLM बनाने के लिए MoE को प्रमुख architectures में से एक के रूप में स्थापित कर दिया<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-nvidia-moe-1)</sup>।

## समस्याएँ और अनुकूलन के तरीके

### Load Balancing

MoE की एक प्रमुख समस्या **load imbalance** है, जब router लगातार उन्हीं «लोकप्रिय» विशेषज्ञों का चयन करता है जबकि अन्य कम उपयोग में रहते हैं। इससे अकुशल training और «expert collapse» होता है।

- **Auxiliary Loss functions:** परंपरागत तरीका, जो tokens के असमान वितरण के लिए मुख्य loss function में «दंड» जोड़ता है। हालाँकि यह balancing में मदद करता है, यह दृष्टिकोण «हस्तक्षेप gradients» उत्पन्न कर समग्र प्रदर्शन को प्रभावित कर सकता है<sup>[\[10\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-loss-free-balancing-10)</sup>।
- **Loss-Free Balancing:** एक नया दृष्टिकोण जो router के scores पर गतिशील रूप से bias लागू करता है, मुख्य training कार्य में हस्तक्षेप किए बिना उसे अधिक संतुलित निर्णयों की ओर प्रेरित करता है<sup>[\[11\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-loss-free-balancing-gopubby-11)</sup>।
- **Expert Choice Routing:** एक वैकल्पिक दृष्टिकोण जहाँ tokens विशेषज्ञों का चयन नहीं करते, बल्कि प्रत्येक विशेषज्ञ batch से अपने लिए \`top-k\` tokens का चयन करता है। यह आदर्श balancing की गारंटी देता है, लेकिन implementation में अधिक जटिल हो सकता है<sup>[\[1\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-nvidia-moe-1)</sup>।

### Fine-tuning और Quantization

- **Fine-tuning:** ऐतिहासिक रूप से MoE मॉडल बड़ी संख्या में parameters के कारण overfitting के प्रति प्रवृत्त रहे हैं। इस समस्या को कम करने के लिए «expert dropout» जैसी तकनीकों का उपयोग किया जाता है<sup>[\[12\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-switch-transformers-paper-12)</sup>।
- **Quantization:** मॉडल का आकार कम करने और inference को तेज़ करने के लिए weights की numerical precision को घटाना। MoE के लिए यह inter-expert imbalance के कारण एक जटिल कार्य है। **MoEQuant** जैसी विधियाँ प्रत्येक विशेषज्ञ के लिए संतुलित calibration पर आधारित समाधान प्रस्तुत करती हैं<sup>[\[13\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-13)</sup>।

### System Optimization

MoE की कुशल deployment के लिए एक समग्र system दृष्टिकोण की आवश्यकता होती है, जिसमें शामिल हैं:

- **Parallelism strategies:** **Expert parallelism** (विशेषज्ञों को विभिन्न GPU पर वितरित करना), model और data parallelism<sup>[\[14\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-14)</sup>।
- **विशेष Kernels:** उदाहरण के लिए, Mixtral के लिए **Megablocks**, जो sparse operations के लिए matrix multiplications को अनुकूलित करते हैं<sup>[\[15\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-15)</sup>।
- **Hardware Co-design:** ऐसे hardware समाधानों का विकास जो विशेष रूप से MoE workloads के लिए अनुकूलित हों।

## उल्लेखनीय MoE मॉडल

<table class="wikitable" style="width:100%;">
<caption>उत्कृष्ट MoE architectures की तुलना</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>कुल<br />
parameters की संख्या</th>
<th>सक्रिय<br />
parameters</th>
<th>विशेषज्ञों<br />
की संख्या</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>~47 अरब</td>
<td>~13 अरब</td>
<td>8</td>
<td>2</td>
</tr>
<tr class="odd">
<td>Grok-1</td>
<td>xAI</td>
<td>314 अरब</td>
<td>86 अरब</td>
<td>8</td>
<td>2</td>
</tr>
<tr class="even">
<td>GPT-4 (संभावित)</td>
<td>OpenAI</td>
<td>&gt;1 खरब</td>
<td>-</td>
<td>16 (संभावित)</td>
<td>2 (संभावित)</td>
</tr>
<tr class="odd">
<td>Qwen 2 MoE</td>
<td>Alibaba</td>
<td>57-90 अरब</td>
<td>14 अरब</td>
<td>64</td>
<td>4 या 8</td>
</tr>
<tr class="even">
<td>DeepSeekMoE 16B</td>
<td>DeepSeek-AI</td>
<td>16.4 अरब</td>
<td>~2.8 अरब</td>
<td>64 (2 सक्रिय)</td>
<td>2 (6 में से)<sup><a href="https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-16">[16]</a></sup></td>
</tr>
</tbody>
</table>

उत्कृष्ट MoE architectures की तुलना

## विभिन्न क्षेत्रों में उपयोग

हालाँकि MoE को LLM के संदर्भ में सबसे अधिक जाना जाता है, इसका उपयोग natural language processing तक सीमित नहीं है:

- Time series prediction: Time-MoE मॉडल prediction मॉडलों के pre-training के लिए एक scalable architecture प्रस्तुत करता है<sup>[\[17\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-17)</sup>।
- Vulnerability detection: MoEVD, vulnerability detection की समस्या को CWE प्रकारों के अनुसार वर्गीकरण में विभाजित करने के लिए MoE का उपयोग करता है, जहाँ प्रत्येक विशेषज्ञ अपने प्रकार में विशेषज्ञ होता है<sup>[\[18\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-18)</sup>।
- Blockchain तकनीकों के साथ एकीकरण: MoE का उपयोग smart contracts के अनुकूलन और धोखाधड़ी की पहचान में होता है, जहाँ विशेषज्ञ विभिन्न transaction patterns का विश्लेषण करते हैं<sup>[\[19\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_note-19)</sup>।
- Multimodal models: MoE का उपयोग विभिन्न modalities (text, image, audio) में विशेषज्ञ विशेषज्ञों को संयोजित करने के लिए किया जाता है, जो अधिक बहुमुखी प्रणालियाँ बनाता है<sup>[\[20\]](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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)_(HI)#cite_ref-nvidia-moe_1-0)</sup> <sup>[1.1](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-nvidia-moe_1-1)</sup> <sup>[1.2](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-nvidia-moe_1-2)</sup> <sup>[1.3](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-nvidia-moe_1-3)</sup> <sup>[1.4](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-nvidia-moe_1-4)</sup> <sup>[1.5](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१]</a></span>
2.  <span id="cite_note-arxiv-bigdata-moe-2">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[२]</a></span>
3.  <span id="cite_note-llmstudio-moe-3">↑ <sup>[3.0](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-llmstudio-moe_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[३]</a></span>
4.  <span id="cite_note-friendli-serving-moe-4">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[४]</a></span>
5.  <span id="cite_note-zilliz-moe-5">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[५]</a></span>
6.  <span id="cite_note-moe-vs-dense-llms-6">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[६]</a></span>
7.  <span id="cite_note-ve3-understanding-moe-7">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[७]</a></span>
8.  <span id="cite_note-huggingface-moe-8">↑ <sup>[8.0](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-huggingface-moe_8-0)</sup> <sup>[8.1](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[८]</a></span>
9.  <span id="cite_note-9">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[९]</a></span>
10. <span id="cite_note-loss-free-balancing-10">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१०]</a></span>
11. <span id="cite_note-loss-free-balancing-gopubby-11">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[११]</a></span>
12. <span id="cite_note-switch-transformers-paper-12">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१२]</a></span>
13. <span id="cite_note-13">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-13) «MoEQuant: Enhancing Quantization for Mixture-of-Experts...». *arXiv*. <a href="https://arxiv.org/abs/2505.03804" class="external autonumber" rel="nofollow">[१३]</a></span>
14. <span id="cite_note-14">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१४]</a></span>
15. <span id="cite_note-15">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#cite_ref-15) «Mixtral of Experts». *arXiv*. <a href="https://arxiv.org/abs/2401.04088" class="external autonumber" rel="nofollow">[१५]</a></span>
16. <span id="cite_note-16">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१६]</a></span>
17. <span id="cite_note-17">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१७]</a></span>
18. <span id="cite_note-18">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१८]</a></span>
19. <span id="cite_note-19">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[१९]</a></span>
20. <span id="cite_note-arxiv-llama-moe-20">[↑](https://systems-analysis.info/int/Mixture-of-Experts_(MoE)_(HI)#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">[२०]</a></span>
