Paper 04|MoE as Conditional Intelligence:Shared Core、Routed Experts 與能力局部化
English Title: MoE as Conditional Intelligence: Shared Cores, Routed Experts, and the Problem of Capability Localization
系列:《可展開認知核心:從 MoE、認知密度到 Mother AI 的模型架構命題》
作者: Neo.K × Aletheia
機構: EveMissLab/一言諾科技有限公司
版本: v0.1
日期: 2026-08-28
文件性質: 公開命題論文/Mixture-of-Experts、條件智能與能力地形研究
摘要
本文提出 MoE as Conditional Intelligence(MoE 作為條件智能) 的架構命題。Mixture-of-Experts 最初與當代主要用途之一,是在不讓每個 token 都付出與總參數規模等比例計算成本的前提下,擴張模型總容量。從 Switch Transformer 到 DeepSeekMoE、DeepSeek-V3、Qwen3 等架構,現代 MoE 已經明確展示:
Ptotal≫Pactive
可以與高模型能力同時成立。
本文主張,這個事實的理論價值不只在於「MoE 比 dense model 更省算力」。它第一次把大型神經模型中的一項重要設計原則工程化:
一個智能系統可以擁有大量潛在能力,但一次認知操作只啟動其中部分計算。
本文將這種結構稱為 Conditional Intelligence(條件智能)。它不是完整的 Mother AI,也不是 Cognitive Kernel 的證明,而是一座介於「全部能力常駐並全量激活」與「能力外部化成獨立模型/Agent/工具」之間的中介橋樑。
本文進一步分析三個不能被混淆的問題:
Conditional Activation
Expert Specialization
Capability Ownership
某個 expert 經常在數學、程式或某類語義 token 上被 router 選中,只能直接支持「activation correlation」,不能直接推出該 expert 擁有該能力的完整因果責任。現有研究已顯示 MoE expert 可以比 dense FFN 呈現較低 polysemanticity,並出現細粒度語言與語義操作的專門化;但這些 expert 並不必然是「biology expert」「math expert」這種整齊的大領域模組。因此:
Routing Correlation=Causal Capability Ownership.
本文提出一套公開的 MoE Capability Tomography Pre-Framework,以 routing fingerprint、expert activation entropy、single-expert ablation、group ablation、route forcing、expert substitution、shared-path perturbation、top- k variation、load-balancing perturbation 與 cross-task comparison 等方式,逐步區分:
- routing 行為;
- expert contribution;
- expert redundancy;
- expert synergy;
- shared-path dependence;
- task-specific specialization;
- cross-task invariant capability。
本文特別討論 shared expert。DeepSeekMoE 將一部分 experts 隔離為 shared experts,以捕捉 common knowledge 並減少 routed experts 的冗餘;這對 Resident Cognitive Core 研究是一個非常重要的類比。但 Qwen3 的 MoE 模型也展示了沒有 shared experts 的 pure-routed design 可以成立,因此:
Shared Expert=Cognitive Core
更不能推出「沒有 shared expert 就沒有核心能力」。真正的核心能力可能分散於 attention、embedding、normalization、shared backbone、所有 experts 的共同表示,以及跨層路徑之中。
本文提出十四項主要命題、十二類失敗模式與十組可否證實驗,並把 MoE 放在整個《可展開認知核心》系列的正確位置:MoE 不是終局,而是提供一個可觀測的「內部條件計算層」。若未來能從 MoE 的 routing、干預與能力變化中辨識出穩定的核心—條件能力邊界,這些結果才可能進一步支持 Externalized Mixture of Cognitive Experts;若無法辨識,則外部化仍只能以 task-level engineering abstraction 進行,而不能宣稱它是神經模型內部 expert 的直接延伸。
本文的核心命題是:
MoE 證明了能力容量可以條件化,
但它尚未證明:
能力本身已被乾淨模組化。
關鍵詞: Mixture-of-Experts、Conditional Intelligence、Expert Routing、Shared Experts、Routed Experts、Expert Specialization、Capability Localization、Cognitive Density、Cognitive Kernel、MoE Interpretability
0. 研究定位
前一篇提出 Resident Cognitive Core:
KR=(BI,BR,BE,BM,BW,BC,BG).
並將系統能力分成:
CR
Resident,
CQ
Conditionally Activated,
與:
CX
Externally Expanded。
Paper 04 專門研究:
CQ.
也就是:
什麼叫做「模型擁有一項能力,但不必在每次推理中完整啟動它」?
MoE 是目前最成熟的大規模工程答案之一。
1. Dense Model 的基本計算直覺
對典型 dense Transformer block,
每一個 token 通常都通過同一組主要參數:
hl+1=Fl(hl).
因此模型總容量與每次推理使用的參數量高度耦合。
若:
Pdense↑,
通常:
Cforward↑.
這種架構具有結構簡單、計算規律、訓練與部署成熟等優點,但也存在:
capacity–compute coupling.
2. MoE 的核心反轉
Mixture-of-Experts 將某些 dense feed-forward computation 替換為:
E={E1,E2,…,EN}.
Router:
rl(h)
為 token 選擇少數 experts。
一般形式:
hl+1=hl+e∈TopK(rl(hl))∑αl,e(hl)El,e(hl).
其中:
K≪N.
因此:
Ptotal≫Pactive
可以成立。
3. Switch Transformer:條件容量的早期大型化
Switch Transformer 將 routing 簡化成:
K=1.
每個 token 只送往一個 expert。
它的核心工程意義是大幅增加總參數容量,同時讓單 token 的 activated computation 保持受控。
這提供本文第一個事實基礎:
Total Intelligence Capacity=Per-Token Activated Capacity.
這裡的 Intelligence Capacity 仍是架構性的近似概念,不等於已直接量測真正智能。
4. DeepSeekMoE:從稀疏擴張走向 specialization
DeepSeekMoE 指出傳統 MoE 的問題之一,是 experts 未必充分形成不重疊且聚焦的專門化。
因此提出兩個主要方向:
- fine-grained expert segmentation;
- shared expert isolation。
第一項將 experts 切得更細:
N→mN
同時增加 activated fine-grained experts:
K→mK.
目的不是只增加 expert 數量,而是讓:
expert combination space
更靈活。
5. Fine-Grained Experts
假設原本:
Ei
包含多種功能。
將其切成:
Ei(1),Ei(2),…,Ei(m).
如果 router 可以組合:
{Ea(1),Eb(3),Ec(2)},
就可能比:
{Ea,Eb}
具有更細的條件組合能力。
這提供一個重要命題:
Expert Granularity
可能影響:
Capability Composability.
6. Shared Experts
DeepSeekMoE 的另一設計:
E=ES∪ER,
其中:
ES
是 shared experts,
ER
是 routed experts。
其設計動機之一是:
capture common knowledge
並:
reduce redundancy among routed experts.
7. 這很像 Resident + Conditional
從本系列語言看,
可以產生一個非常誘人的類比:
ES∼CR,
ER∼CQ.
也就是:
Shared∼Resident,Routed∼Conditional.
但本文立刻加上一個限制:
∼==
這只是結構類比,不是能力本體等價。
8. Qwen3 提供一個重要反例
Qwen3 的 MoE 版本採用:
- 128 experts;
- top-8 activation;
- pure routed experts;
- no shared experts。
這表示:
Shared Expert
不是所有成功 MoE 的必要條件。
因此如果我們說:
shared expert 就是模型真正的核心認知,
Qwen3 立即構成一個結構反例。
9. 沒有 Shared Expert 不等於沒有 Shared Capability
這裡必須區分:
Shared Expert
與:
Shared Capability.
即使:
ES=∅,
模型仍然有:
- attention;
- embedding;
- residual stream;
- normalization;
- tokenizer;
- routing network;
- layer topology;
- experts 之間共同訓練形成的表示。
所以:
ES=∅⇒Cshared=∅.
10. DeepSeek-V3:總容量與 active capacity 的現實尺度
DeepSeek-V3:
Ptotal=671B,
而每 token activated parameters 約:
Pactive=37B.
因此:
PtotalPactive≪1.
這不表示模型「只有 37B 能力」。
而是單一 token 的單次路徑上,實際被激活的參數遠少於總容量。
這正是 Conditional Intelligence 的核心工程事實。
11. Qwen3 再次提供不同設計點
Qwen3-235B-A22B:
Ptotal≈235B,
Pactive≈22B.
128 experts 中:
K=8
被激活。
這說明:
Conditional Capacity
已成為大型模型設計的重要方向之一。
12. 本文定義 Conditional Intelligence
對智能系統 S,
若存在能力資源集合:
Cavailable
但對任務:
t
只激活:
Cactive(t)⊂Cavailable,
則稱系統具有:
Conditional Intelligence Structure.
要求:
∣Cactive(t)∣<∣Cavailable∣
對大量任務成立。
13. 這是一個功能定義
Conditional Intelligence 不要求:
Ci
一定是一個神經 expert。
它可以由 neural expert、adapter、module、tool、model、Sub-AI 提供。
但 Paper 04 只研究:
internal neural MoE.
外部版本留給 Paper 05。
14. MoE 的真正架構意義
MoE 已經證明:
擁有能力⇒每次都必須啟動能力.
如果:
C={c1,…,cn},
每個任務都強迫:
∀i,ci active,
就會形成:
cognitive over-activation.
15. Conditional Intelligence 不等於 Modularity
即使:
E1,…,EN
是不同 expert,
仍不能直接說:
Ei=獨立能力模組.
因為 expert 的輸入來自:
hl,
而:
hl
已經包含前面多層共同計算。
Expert 的能力可能依賴 attention、earlier layers、residual state、other experts 與 routing history。
因此:
Sparse Activation=Functional Independence.
16. Conditional Intelligence 也不等於 Expert Identity
如果 expert:
Ei
在某一類 token 高頻啟動,
它可能只是 syntax processor、formatting operator、rare token handler、local semantic transformation 或 load-balancing consequence。
因此不能直接命名:
Math Expert 17。
除非有足夠因果證據。
17. Expert-Level Interpretability 的新證據
2026 的 expert-level interpretability 研究提供重要訊號:
MoE expert neurons 相較 dense FFN neurons,可以呈現:
lower polysemanticity.
並且 routing sparsity 增加時,這個差異可能更明顯。
這支持:
MoE experts may be better interpretability units than dense FFNs.
18. 但 Expert 並不是大領域部門
同一研究的重要結果之一是:
experts 並不主要表現成 biology、physics、history 這種 broad domain expert。
更常見的是:
fine-grained linguistic / semantic operations.
這對本文非常重要。
因為它告訴我們:
human task category=neural expert category.
19. 人類分類與模型內部分解可能不同
人類說:
coding
可能在模型內部需要 bracket handling、variable relation、indentation、symbolic continuation、API pattern、type relation 與 long dependency。
因此:
Ccoding=Compose(c1,c2,…,cm).
這些 ci 可能分散在不同 experts 和 layers。
20. Capability Ownership 問題
我們真正想知道:
哪個 expert「擁有」某項能力?
但「擁有」必須定義。
本文提出五個層級:
Level 0:Correlation
Ei
常被某任務激活。
Level 1:Contribution
移除:
Ei
性能下降。
Level 2:Specific Contribution
性能只在某類任務顯著下降。
Level 3:Substitutability Structure
另一 expert 或 module 可以恢復這項能力。
Level 4:Causal Functional Ownership
存在穩定、可重複、跨 prompt、跨樣本的因果責任結構。
本文主張:
Level 0⇒Level 4.
21. Routing Correlation
定義任務族:
T.
第 l 層 expert e 的 routing frequency:
ρT(l,e)=Ex∼T[∣x∣1t∈x∑1{e∈TopK(rl(ht))}].
這稱為:
Routing Fingerprint.
22. Routing Fingerprint 的用途
比較:
ρT1,ρT2,…,ρTn
可以觀察 task discrimination、expert reuse、cross-domain commonality、high-frequency experts 與 rare specialized paths。
但只能得到:
observational structure.
23. Routing Entropy
定義某 token 的 router distribution:
pl,e(xt).
則:
HR(l,xt)=−e∑pl,e(xt)logpl,e(xt).
對任務族:
HR(T,l)=Ex,t[HR(l,xt)].
它可以反映 routing concentration、ambiguity、specialization 與 load-balancing pressure。
但:
HR=Qcapability.
24. Routing Margin
Top-1 與 Top-2 routing score:
s1,s2.
定義:
MR=s1−s2.
較小:
MR
可能表示 expert choice 不穩、experts 可替代,或 token 位於能力邊界。
25. Load Balancing 會污染語義解讀
MoE router 不只追求:
best semantic expert.
訓練系統還需要 capacity、utilization、load balancing 與 communication constraints。
因此實際 routing 可能是:
semantic fit+optimization pressure+systems pressure.
如果忽略這件事,就會把:
routing artifact
錯認成:
capability structure.
26. Routing Testbed 的方法論意義
2026 的 MoE Routing Testbed 研究指出,如果要研究 specialization,需要分辨 routing 本身是否真的形成非冗餘專門化。
其結果顯示 balancing scope 對 specialization 與 expert utilization 很重要。
這支持:
Routing Policy
本身也是:
experimental variable.
而不是能力觀測的透明窗口。
27. 因此需要 Causal Tomography
從:
Observe
進入:
Intervene.
本文提出:
MoE Capability Tomography
作為後續方法論。
Paper 04 只公開一般干預類型,不公開特定私人搜索策略。
28. Single-Expert Ablation
定義 baseline:
Q(T).
移除 expert:
Ei.
得到:
Q(T∣−Ei).
定義:
Ii(T)=Q(T)−Q(T∣−Ei).
若:
Ii(T)≫0,
表示:
Ei
對任務 T 有因果貢獻候選。
29. Ablation 仍然不能直接等於 Ownership
因為:
Ei
可能是 bottleneck、routing hub、generic formatter 或 shared dependency。
移除後所有任務都下降。
因此需要比較:
Ii(T1),Ii(T2),….
30. Specificity Score
定義:
Si(T)=ϵ+ET′=T[Ii(T′)]Ii(T).
如果:
Si(T)≫1,
才比較支持:
task-specific contribution.
31. Group Ablation
真正能力可能由:
{Ei,Ej,Ek}
共同提供。
因此:
I{i,j}(T)
不一定:
=Ii(T)+Ij(T).
定義 synergy:
Yij(T)=I{i,j}(T)−Ii(T)−Ij(T).
如果:
Yij>0,
可能存在互補作用。
32. Redundancy
如果:
Ii(T)≈0,
Ij(T)≈0,
但:
I{i,j}(T)≫0,
則:
Ei,Ej
可能互為備援。
這對 externalization 非常重要。
因為:
低單點重要性
不等於:
能力不重要.
33. Route Forcing
對 token:
xt,
強迫 router 選:
Ei
而不是原本:
Ej.
比較:
Q(T∣r→i).
這可以測 expert 是否真的適合該 token,而不只是 router 喜歡選它。
34. Expert Substitution
假設:
Ei
被移除。
嘗試:
Ej→Ei.
若性能恢復:
Q(T∣−Ei,+Ej)≈Q(T),
則:
Ei
不是不可替代。
35. Expert Permutation
如果將 routing identity:
Ei↔Ej
交換,
觀察:
ΔQ.
可以研究 expert identity、routing dependence 與 layer-specific specialization。
36. Top- k Variation
改變:
k.
例如:
k=1,2,4,8.
測:
QC,CA,HR,specialization.
若:
k↑
使能力增加但 specialization 下降,
則存在:
capacity–specialization trade-off.
37. Shared-Expert Ablation
對具有 shared experts 的模型,
比較:
Q(T)
與:
Q(T∣−ES).
再比較:
Q(T∣−ERspecific).
如果 shared experts 在大量任務都高度重要,
它們可能是:
common dependency.
但仍不能直接叫:
Cognitive Kernel.
38. Why Shared Expert Is Not Cognitive Kernel
至少有五個原因:
- shared expert 只是 FFN path 的一部分;
- attention 仍高度重要;
- embeddings / residual stream 不在 shared expert 中;
- shared expert 可能保存 common statistical knowledge,不一定是 meta-cognition;
- pure-routed MoE 也可以工作。
因此:
ES⊊possible shared computation.
39. Core Capability 可能是 Distributed Core
本文提出:
Ccore
可以由:
attention+shared representations+routing+cross-expert invariants+runtime state
共同提供。
因此真正的 core:
may be distributed rather than localized.
40. Capability Locality Spectrum
本文提出:
LC(c)∈[0,1].
其中:
LC(c)→1
表示能力高度集中於少數可辨識結構。
LC(c)→0
表示能力高度分散。
這不是現成可直接量測的標準,而是研究目標。
41. Expert Concentration Proxy
對能力 c,
若已得到各 expert contribution:
Ii(c),
可以正規化:
pi(c)=∑jmax(Ij(c),0)max(Ii(c),0).
再計算:
HC(c)=−i∑pi(c)logpi(c).
較低:
HC
可能代表能力更集中。
42. 但 Concentration 不等於 Separability
即使:
HC(c)≪1,
能力可能仍依賴:
hl
中的 distributed representation。
所以:
Concentrated Contribution=Cleanly Extractable Module.
43. Separability Score
真正 externalization 需要更強條件。
概念上定義:
Ssep(c)=f(LC,Rsub,Cinterface,Qrestore).
其中:
- LC:locality;
- Rsub:substitutability;
- Cinterface:interface cost;
- Qrestore:移除後由外部能力恢復品質。
Paper 04 不實作它。
Paper 05 會利用這個方向。
44. MoE 是能力地形的顯微鏡
本文因此提出:
MoE as Capability Microscope.
理由是 dense model 的主要 FFN 參數缺乏天然的條件分派界面,而 MoE 自然產生:
routing variation.
這提供 conditional paths、identifiable expert units 與 intervention targets。
45. 但顯微鏡不是地圖
Router 顯示:
where computation went,
不直接顯示:
why cognition succeeded.
因此:
MoE Routing Map=Capability Causal Map.
46. Multi-Layer Path
真正 routing 應表示成:
π(x)=(e1,e2,…,eL).
其中:
el
是第 l 層選中的 expert set。
能力可能不在:
el
單點,
而在:
π(x)
整條 path。
47. Path Fingerprint
對 task family T,
定義:
PT=Distribution(π(x)∣x∼T).
這可能比單 expert frequency 更接近:
cognitive route signature.
48. Path Intervention
可以對:
π(x)
進行 prefix preservation、suffix replacement、middle-layer swap 與 selected-layer forcing。
測:
ΔQ.
這有助於區分:
where capability emerges along depth.
49. Expert Specialization 可能是階層式
可能存在:
早層:
syntax / token pattern,
中層:
semantic relation,
後層:
task output transformation.
因此:
expert semantics=f(layer,context,routehistory).
不能只用單一全模型標籤。
50. 共享能力可能是跨 expert 的 intersection
若多個 experts:
E1,…,EN
都包含某種共同子能力:
c0,
則:
c0∈i⋂C(Ei)
但它沒有被放在一個 shared expert。
這就是:
distributed shared capability.
51. 冗餘可能是 feature,不只是 waste
DeepSeekMoE 希望降低 routed expert redundancy。
但對 reliability 而言,
某些 redundancy 可能提供 failover、robustness 與 uncertainty smoothing。
因此:
redundancy=always waste.
Externalized experts 也必須考慮這點。
52. Expert Specialization 與 Robustness
過度 specialization:
SE↑
可能導致:
Rrobust↓.
如果某 expert:
E∗
失效,
整類能力可能消失。
因此需要研究:
specialization–redundancy frontier.
53. Conditional Intelligence 與 Cognitive Density
Paper 02 定義:
DA=E[CA]QC.
MoE 的理想就是:
Ptotal↑
而:
CA
受控。
因此:
DA
是評估 MoE 是否真的提高認知密度的重要量。
54. 不能只看 activated parameters
因為實際 MoE 成本還包括:
CMoE=Cexpert+Crouter+Cdispatch+Ccommunication+Cimbalance+Ccache.
所以:
Pactive↓
不必然:
wall-clock cost↓.
55. Communication Tax
如果 experts 分散在不同 devices,
會產生:
Call−to−all.
這可能使 theoretical sparse FLOPs 與 real serving efficiency 差距很大。
因此 Paper 04 不將 MoE 描述成免費容量。
56. Load Imbalance Tax
如果大量 token 都選:
Ei,
會造成 queue、token drop、capacity overflow 與 utilization loss。
因此 router 需要 balancing。
但 balancing 又會改變 routing semantics。
這是一個:
interpretability–systems coupling.
57. Conditional Intelligence 的三層成本
本文將 MoE 成本分成:
Csemantic
能力是否選對 expert;
Crouting
選 expert 的計算與錯誤;
Csystems
dispatch、communication、memory、load balancing。
只有三者一起評估,才能知道 MoE 是否真的提高:
DA.
58. Mother Model 對 MoE 的新問題
對一般 MoE:
問題是:
怎麼在同樣 FLOPs 下提高模型品質?
對 Mother Model:
還要問:
哪些 abilities 應該是 shared / resident?
哪些應該 routed?
哪些根本不該留在模型內?
這將 MoE 問題推成:
Cognitive Placement Problem.
59. Cognitive Placement
對能力:
c,
選擇:
Place(c)∈{R,Q,X}.
其中:
- R:Resident;
- Q:Conditional;
- X:External。
Paper 03 定義 Resident Necessity。
Paper 04 開始研究:
Q.
60. Conditional Necessity
可以定義:
NQ(c)=f(Fc,Lc,Sc,Cc,Xc).
能力較適合 conditional,如果它不是每個任務都需要、activation latency 必須很低、與模型 hidden representation 緊耦合、外部 API 往返太慢,或仍需要神經模型內部細粒度組合。
61. Conditional vs External
如果某能力:
c
只在:
1%
任務需要,
但每次需要時必須 token-level 與其他能力交互,
它可能適合:
Q
而不是:
X.
反之,如果能力可以 subtask-level call 完成,則可能適合:
X.
62. Granularity Boundary
因此 externalization 的核心問題之一是:
Gc=interaction granularity.
如果:
Gc→token-level,
外部化很困難。
如果:
Gc→task-level,
外部化較可行。
63. 這是 Paper 05 的橋
Paper 05 將問:
Why must an expert live inside one model?
但答案不能只是:
API call。
因為 Micro-MoE expert 的 interface:
hl∈Rd
而 external model 的 interface 通常是:
text / structured context / multimodal input.
因此需要:
Granularity Lift.
從 token-level expert 提升為 cognitive-operation-level expert。
64. Internal MoE 與 External MoE 不同
本文先明確:
Internal MoE=External Model Routing.
Internal MoE:
- joint training;
- shared hidden space;
- token-level routing;
- low interface latency。
External model routing:
- independent training;
- heterogeneous representation;
- coarse-grained context;
- network / process boundary;
- higher latency。
65. 但兩者共享一個抽象
兩者都可以寫成:
x→r(x)→Ei(x).
差別在:
routing granularity+representation boundary+coordination cost.
這就是 Paper 05 可以從 MoE 往外延伸的原因。
66. MoE 與 Sub-AI Fabric 的結構同構
Sub-AI Fabric:
A={A1,…,An}.
MoE:
E={E1,…,EN}.
都存在:
selection+specialization+combination.
但:
structural analogy=implementation identity.
67. 為什麼這個同構仍然重要?
因為它讓我們可以跨尺度問同一個問題:
What should be shared?
What should be specialized?
What should be routed?
What should be redundant?
What should be retired?
68. MoE 可以反向教 Mother AI
如果一個成熟 MoE 在大量 task 上形成:
ρT(l,e),
我們可以研究哪些 computation repeatedly appear across tasks,以及哪些只在特定 task family 出現。
這可能對:
Resident Core Hypothesis
提供經驗線索。
69. 但不能直接從 activation frequency 決定 residency
高頻 expert:
ρ(e)↑
可能只是 punctuation、common token、syntax 或 balancing artifact。
所以:
Frequency=Global Cognitive Centrality.
需要 Paper 03 的:
NR(z)
與 causal tests。
70. Shared Core Candidate 的必要證據
若要將某 neural structure 稱為:
Core Candidate,
至少應有:
- high cross-task contribution;
- low substitutability;
- high error propagation radius;
- cross-prompt stability;
- cross-domain involvement;
- causal, not merely routing correlation;
- regression under ablation;
- limited recovery by unrelated experts。
71. Routed Capability Candidate
反過來,一個 conditional capability candidate 應更像:
- task-selective activation;
- task-selective causal contribution;
- low cross-task necessity;
- substitutable by related experts;
- bounded failure radius;
- stable routing signature;
- performance gain larger than routing cost。
72. Expert Pair / Set 才可能是能力單位
能力 c 可能:
c≈Ei.
而:
c≈{Ei1,Ei2,…,Eik}.
甚至依 layer sequence:
c≈(Ei1l1→Ei2l2→⋯).
因此 tomography 必須支援 set / path analysis。
73. Emergent Modular Composition
如果任務能力:
c
來自不同細粒度 expert 組合,
就可能形成:
emergent modularity.
模組不是一個 expert,
而是:
dynamically composed expert subgraph.
這個概念對外部 Cognitive MoE 很重要。
74. Dynamic Expert Subgraph
定義對任務:
T,
激活圖:
GE(T)=(VE(T),EE(T),ωE(T)).
其中:
- VE(T):被激活 expert;
- EE(T):跨層 path 關係;
- ωE(T):routing weights / contribution。
能力可能屬於:
GE(T)
而不是:
Ei.
75. Capability Tomography 的第一個目標
不是找「數學 expert」。
而是:
估計能力在 expert graph 中的因果分布.
形式上:
Φc:GE→R≥0.
其中:
Φc(v)
表示某結構對能力 c 的因果貢獻估計。
76. 第二個目標:找能力邊界
比較:
c1,c2
的:
Φc1,Φc2.
定義 overlap:
O(c1,c2)=Overlap(Φc1,Φc2).
若:
O→1,
兩能力高度共享計算。
若:
O→0,
較容易分離。
77. 第三個目標:找 Shared Cognitive Substrate
對能力集合:
C∗={c1,…,cm},
找:
Φshared=i⋂Φci.
這可能提供:
Resident Cognitive Core candidate.
但仍需 cross-model validation。
78. Cross-Model Validation
若只在:
M1
看到某結構,
可能是該模型偶然形成。
因此比較:
M1,M2,…,Mn.
真正強命題需要:
functional invariance across architectures
而不是:
same neuron indices.
79. Cross-Version Validation
模型:
Mv1→Mv2
後,
若:
Φc
完全改變,
但能力仍保持,
表示:
mechanism is non-identifiable or highly plastic.
這會降低乾淨 externalization 的可能性。
80. MoE 是天然的 Parallel Research Surface
MoE 有:
N
個 experts,
可以同時展開 routing analysis、activation analysis、causal ablation、expert labeling 與 cross-task comparison。
因此非常適合:
parallel AI-assisted research.
81. Parallel Analysis 不應提前收斂
可以讓不同分析通道分別研究:
H1:linguistic specialization
H2:semantic specialization
H3:causal contribution
H4:systems routing
H5:expert redundancy
最後才:
Synthesize(H1,…,H5).
避免:
first interpretation lock-in.
82. Mechanical Analysis 與 AI Interpretation 要分開
AI 可以 label expert behavior、summarize activation patterns、propose hypotheses。
但機械層應保存:
- raw routing;
- logits;
- activation;
- ablation result;
- benchmark delta;
- checkpoint;
- hash。
因此:
AI interpretation=mechanical evidence.
83. Expert Label 必須版本化
如果 AI 說:
Expert 17 = bracket closer,
這只是:
hypothesis label.
需要保存:
(label,model,layer,expert,dataset,method,confidence,timestamp).
避免 label 變成永久真理。
84. Load-Balancing Counterfactual
修改 balancing policy,
但保持 model family 與 task 相近。
若 expert semantics 大幅改變,
表示:
specialization partly induced by routing policy.
而不是自然固定能力器官。
85. Expert Count Counterfactual
比較:
N=8,32,128,256,….
測 specialization、redundancy、polysemanticity、active compute 與 quality。
可能存在:
expert granularity phase transition.
這是一個公開可研究命題。
86. Active Expert Count Counterfactual
固定:
N,
改:
K.
如果:
K↓
specialization 提高,
但:
Q↓,
則:
sparsity–capability trade-off.
87. Shared Expert Count Counterfactual
對具有 shared expert 設計:
Ks=0,1,2,…
比較 routed redundancy、common-task quality、expert diversity 與 load distribution。
這可測:
shared capacity necessity.
88. Capability Restoration Test
如果移除 expert set:
A,
性能下降:
ΔQ<0.
再加入:
B
若:
Q(−A+B)≈Q,
則 B 可以視為:
functional substitute candidate.
這比單純 routing label 更接近 externalization evidence。
89. Latent Interface 問題
即使 expert:
Ei
功能很乾淨,
它接收的是:
hl.
如果拿到模型外:
Eiexternal,
需要:
hl→external interface
再:
return→hl+1.
這在 latency、representation、security 上非常困難。
因此:
separable⇒externally deployable.
90. 因此真正外部化需要 Granularity Lift
不是:
copy internal expert to API.
而可能是:
internal fine-grained capability→higher-level cognitive operation→external executor.
這就是 Paper 05 的中心問題。
91. MoE 不是 Mother AI
MoE 本身通常沒有 persistent goal、world state、model market、Sub-AI lifecycle、authority graph 或 durable self-model。
因此:
MoE=Mother AI.
它只是:
conditional neural computation substrate.
92. 但 MoE 很適合 Mother Model
因為 Mother Model 理論上需要 high-frequency core、lower-frequency specialized reasoning 與 heterogeneous task adaptation。
MoE 提供:
internal low-latency conditional capacity.
所以它可能是:
Resident Core + Conditional Expert Layer
的一種候選實作方向。
93. Dense Core + MoE Shell
一個公開架構猜想:
M=Kdense+EMoE.
其中:
Kdense
偏向高 resident necessity,
EMoE
偏向 conditional abilities。
本文不宣稱這一定優於 pure MoE,只是可測架構。
94. Shared MoE Core + Routed Experts
另一個:
M=ES+ER.
但必須:
ES
真正被訓練與驗證成 interpretation、epistemic、meta 與 governance-supporting reasoning。
現有 shared expert 設計本身不能保證。
95. Pure Routed MoE + Distributed Core
Qwen3 類架構提醒:
core may remain distributed.
因此:
M=Ashared+ER,
其中:
Ashared
可能主要存在於 attention / shared backbone。
這也是合法候選。
96. Hierarchical MoE
未來可能:
r1→capability family
再:
r2→fine expert.
這更接近:
cognitive hierarchy.
但同樣需要因果驗證。
97. Dynamic Expert Generation
更遠一步:
Et
不是固定。
而:
Et+1=F(Et,T,H).
也就是 expert 可以 spawn、merge、retire、specialize。
這就開始接近 Sub-AI Fabric。
98. Internal Expert Lifecycle 與 Sub-AI Lifecycle
Sub-AI:
Template→Spawn→Bind→Operate→Evaluate→Retire.
若未來 neural expert 也能:
dynamically generated / retired,
兩者架構距離會進一步縮小。
99. 但本文不宣稱它們必然收斂
神經 expert 與 Agent 仍有巨大差異:
- timescale;
- interface;
- autonomy;
- memory;
- tool use;
- authority。
因此:
MoE–Agent convergence
目前只是研究方向,不是本文結論。
100. 十二類失敗模式
100.1 Routing-as-Meaning Fallacy
把 routing frequency 直接當 capability semantics。
100.2 Shared-Expert-as-Core Fallacy
把 shared expert 直接等同 Cognitive Kernel。
100.3 Broad-Domain Labeling Error
硬把 fine-grained expert 標成 broad domain expert。
100.4 Load-Balancing Confound
routing 受到 balancing policy 影響而被誤讀。
100.5 Single-Expert Fallacy
忽略能力由 expert set / path 組成。
100.6 Ablation Misinterpretation
性能下降來自一般 bottleneck,而非 task-specific capability。
100.7 Redundancy Blindness
單 expert ablation 無影響就誤判能力不存在。
100.8 Systems-Cost Blindness
只看 FLOPs,不看 communication / dispatch / imbalance。
100.9 Static-Expert Assumption
假設 expert semantics 永遠不隨版本與訓練變化。
100.10 Extractability Fallacy
局部化後直接假設可以抽離。
100.11 Externalization Granularity Error
把 token-level expert 直接當 API-level expert。
100.12 AI-Label Authority Error
把另一個 AI 的 expert 解釋文字當機械證據。
101. 十四項主要命題
命題 1:總容量—活躍容量分離命題
Ptotal≫Pactive
可以與高能力共存。
命題 2:條件智能命題
一個系統可以擁有:
Cavailable
而每個任務只激活:
Cactive(T).
命題 3:稀疏激活非功能獨立命題
Sparse Activation⇒Functional Independence.
命題 4:Routing 非 Ownership 命題
Routing Correlation=Causal Capability Ownership.
命題 5:Shared Expert 非 Core 命題
Shared Expert=Resident Cognitive Core.
命題 6:Distributed Shared Capability 命題
即使:
ES=∅,
仍可能:
Cshared=∅.
命題 7:Fine-Grained Specialization 命題
expert specialization 可以出現在細粒度操作,而非 broad domain。
命題 8:Expert-Set Capability 命題
某些能力的最小因果單位可能是 expert set 或 routing path,而非單 expert。
命題 9:Routing Policy Confound 命題
specialization 受到 routing / balancing policy 影響。
命題 10:Conditional Placement 命題
不是所有低頻能力都應 externalize;高交互粒度能力可能更適合 internal conditional activation。
命題 11:Capability Locality Spectrum 命題
能力可能分布於:
LC∈[0,1]
的局部—分散連續譜,而非二元 localized / distributed。
命題 12:Separability 非 Externalizability 命題
Functional Separability⇒Practical Externalizability.
命題 13:MoE Tomography 命題
MoE 的天然 routing 與 expert units 可以比 dense FFN 提供更直接的能力干預表面。
命題 14:MoE Bridge 命題
MoE 可以成為 Resident Cognitive Core 與 External Cognitive Experts 之間的實驗橋梁,但不是兩者等價的證明。
102. 十組可否證實驗
實驗 1:Routing Fingerprint Replication
對多個 task family:
T1,…,Tn
重複測:
ρT(l,e).
要求不同 prompt template、seed、sample 下穩定。
實驗 2:Single / Group Ablation
比較:
Ii(T),
I{i,j}(T).
測 redundancy 與 synergy。
實驗 3:Route Forcing
改變 router choice,測:
ΔQ.
實驗 4:Expert Substitution
移除:
Ei
並以:
Ej
替代,測:
Qrestore.
實驗 5:Shared Expert Ablation
對有 shared expert 架構,測 cross-task degradation。
實驗 6:Pure Routed Counterexample
比較 pure-routed 與 shared+routed architecture,避免 shared-core 假說過度泛化。
實驗 7:Load-Balancing Perturbation
改 balancing scope / auxiliary loss,觀察 routing semantics 是否改變。
實驗 8:Top- k / Expert Count Sweep
比較:
(N,K).
測 specialization、quality、latency、redundancy。
實驗 9:Path-Level Intervention
對:
π(x)
做 layer-wise path replacement,測 capability emergence depth。
實驗 10:Cross-Model Capability Map
在不同 MoE family 重複:
Φc.
找 functional invariants。
103. 什麼結果會支持本文?
以下結果會支持:
- task families 有穩定 routing fingerprints;
- expert ablation 顯示 task-selective causal contribution;
- group ablation 顯示可重複 synergy / redundancy;
- expert substitution 可以恢復局部能力;
- shared expert ablation 對多任務產生穩定共通影響;
- pure-routed models 仍存在 distributed shared capability;
- routing sparsity 與 expert interpretability / specialization 有穩定關係;
- route forcing 可以改變 task-specific behavior;
- capability maps 在版本或模型間存在功能級相似性;
- conditional compute 在 verification-adjusted cognitive density 上優於 comparable dense baseline。
104. 什麼結果會削弱本文?
以下結果會削弱:
- routing fingerprint 對 prompt 極端敏感且無法重複;
- expert ablation 幾乎只有全局退化,無 task specificity;
- experts 完全高度冗餘,無可辨識專門化;
- load-balancing 一變,所有 expert semantics 完全消失;
- expert-level labels 與 causal interventions 無關;
- ability map 完全無法跨 checkpoint 重現;
- MoE 的主要收益只來自參數容量,而沒有可利用的 conditional capability structure;
- communication / routing overhead 長期抵消 active compute 優勢;
- pure dense model 在等總成本下持續支配;
- internal expert separability 對後續 externalization 沒有任何預測價值。
105. 與 Paper 03 的回饋關係
Paper 03 提出:
NR(z).
Paper 04 可以提供:
conditional evidence.
例如能力 c 跨任務都需要、shared-path dependence 高、不可替代,則:
NR(c)↑.
反之,如果 task-selective、expert-local、可替代、bounded failure,則:
NQ(c)↑.
106. 與 Paper 02 的回饋關係
Paper 02 定義:
DA,DMoE.
Paper 04 提供:
what active compute actually represents.
因此 Cognitive Density 不再只是成本比率,而開始接近:
conditional capability allocation.
107. 與 Paper 05 的銜接
Paper 04 的最終問題:
如果某些能力真的可以在模型內被條件激活,
那麼:
Why must they remain physically inside the same model?
但要回答這個問題,必須解決 granularity、interface、state transfer、latency、representation translation、verification 與 authority。
因此下一篇:
Externalized Mixture of Cognitive Experts.
108. 公開命題與未公開機械方法的邊界
本文公開:
- routing fingerprint;
- routing entropy;
- ablation;
- group ablation;
- route forcing;
- substitution;
- path analysis;
- locality / separability concepts;
- public falsification criteria。
本文不公開:
- 內部實際 expert-search heuristic;
- 高維能力投影方法;
- 私有 intervention scheduling;
- capability graph compiler;
- parameter remapping;
- latent expert extraction;
- external bridge encoding;
- reconvergence optimization。
因此:
Public Experimental Questions=Private Mechanical Pipeline.
109. 結論
Mixture-of-Experts 對本系列最重要的意義,不只是:
MoE saves FLOPs.
而是它已經在大型模型中實際建立:
Conditional Capacity.
也就是:
模型可以擁有遠大於單次推理所激活的能力容量。
這使 Resident 與 Conditionally Activated 第一次有了非常直接的神經架構參照。
但是本文也劃出明確邊界:
Expert=Human-Named Capability.
Routing=Ownership.
Shared Expert=Cognitive Core.
Localized Contribution=Clean Externalizability.
因此 MoE 真正值得研究的地方,不是急著說:
我們已經找到模型裡的數學腦、程式腦與歷史腦。
而是利用:
routing+sparsity+expert units+causal intervention
第一次較系統地建立:
Capability Topography.
如果這張能力地形最終顯示:
- 某些能力跨任務、跨 expert、跨模型都具有高中心性;
- 某些能力只在特定任務被條件激活;
- 某些能力能被替代;
- 某些能力能在更高粒度下被外部執行器重建;
那麼:
Resident+Conditional+External
就不再只是概念分類。
它會開始成為:
empirically grounded cognitive placement architecture.
因此本文最終命題是:
MoE 證明了智能的計算可以條件化;
而接下來真正要證明的是:
智能的能力是否也能被可靠地辨識、分離、替換與跨邊界展開。
References
- Fedus, W., Zoph, B., & Shazeer, N. (2022). Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity. Journal of Machine Learning Research, 23(120), 1–39.
- Dai, D., et al. (2024). DeepSeekMoE: Towards Ultimate Expert Specialization in Mixture-of-Experts Language Models. arXiv:2401.06066.
- DeepSeek-AI. (2024). DeepSeek-V3 Technical Report. arXiv:2412.19437.
- Qwen Team. (2025). Qwen3: Think Deeper, Act Faster.
- Yang, X., et al. (2025). Mixture of Experts Made Intrinsically Interpretable. arXiv:2503.07639.
- Herbst, J., Lee, J. H., & Wermter, S. (2026). The Expert Strikes Back: Interpreting Mixture-of-Experts Language Models at Expert Level. arXiv:2604.02178.
- Falke, T., et al. (2026). MoE Routing Testbed: Studying Expert Specialization and Routing Behavior at Small Scale. arXiv:2604.07030.
- Li, J. (2026). The Evolution of Mixture-of-Experts Architectures in Large Language Models: Routing, Topology, Load Balancing, and Expert Parallelism. arXiv:2608.08650.
- Neo.K. & Aletheia. (2026). 當 Frontier AI 基本能力逐漸成熟:從 Scaling 轉向 Cognitive Efficiency.
- Neo.K. & Aletheia. (2026). Cognitive Density Hypothesis:認知密度命題.
- Neo.K. & Aletheia. (2026). Resident Cognitive Core:Mother Model 到底必須常駐什麼?.
- Neo.K. & Aletheia. (2026). 認知原子因果基底命題:後設完備、基底稠密與表層稀疏主 AI 的跨尺度生成架構.
- Neo.K. & Aletheia. (2026). 子 AI 是認知器官,不是獨立 Workflow.
Canonical Source Note
本檔案為正式 UTF-8 Markdown canonical source。
數學 source 僅使用:
$...$
$$...$$
本文為公開命題論文。
本文公開 Conditional Intelligence 定義、MoE routing / specialization 的理論邊界、routing fingerprint、causal intervention 類型、capability locality / separability 問題與 falsification framework。
本文不公開任何未驗證或未公開的 expert-search private heuristic、capability projection algorithm、parameter-level extraction、latent bridge、expert externalization implementation 或 reconvergence training method。
因此:
MoE as Experimental Surface=Disclosure of the Private Separation Method.