4.9 KiB
Dual Model MoE Concepts
Yes — several architectures are very close, but the exact “brain-like bilateral MoE where one side is language and the other is vision” is usually implemented as modality-specialized towers/experts plus a fusion bridge, not literally as two symmetric hemispheres.
1. CLIP-style dual encoders
image encoder → visual latent
text encoder → language latent
both projected into shared embedding space
CLIP and later dual-encoder VLMs use separate image/text encoders and align them contrastively. That is very close to “vision side + language side,” but it is not usually MoE because both sides are fixed pathways rather than dynamically routed experts. 1
2. Flamingo-style bridged models
vision cortex → visual tokens
language cortex → text generation
cross-attention bridge → multimodal binding
Flamingo’s paper describes bridging pretrained vision-only and language-only models and handling interleaved visual/textual data. 2
3. VLMo / Mixture-of-Modality-Experts
This is probably the closest named match to what you’re describing. VLMo uses a Mixture-of-Modality-Experts Transformer with modality-specific experts. The NeurIPS paper describes three expert types: a vision expert, a language expert, and a vision-language fusion expert. 34
left-ish module: language expert
right-ish module: vision expert
corpus-callosum-ish module: fusion expert
4. LIMoE: Language-Image MoE
LIMoE is explicitly a sparse Language-Image Mixture of Experts model. It accepts images and text and uses sparse expert routing, with the argument that MoE layers naturally partition by modality. 5
5. MoE-LLaVA / Uni-MoE
MoE-LLaVA applies sparse MoE routing to large vision-language models, activating top-k experts during deployment. Uni-MoE is another unified multimodal MoE direction. These are closer to “many cortical columns / expert patches” than a strict two-hemisphere model. 67 The brain analogy works, but only partially. Human language is often left-lateralized, but vision is not simply “the other side.” Primary visual cortex exists in both hemispheres, with each hemisphere processing the opposite visual field. Language lateralization is real, but the brain is more like:
bilateral visual substrate
left-dominant language network
cross-hemisphere integration
specialized association areas
rather than “left = language, right = vision.” 8910
V-expert: visual field / geometry / spatial latent
L-expert: language / symbolic / sequence latent
B-expert: binding / alignment / contradiction repair
R-router: decides which expert receives which token/patch/claim
M-memory: shared latent workspace
Γ = Router( V_latent ⊗ L_latent ⊗ B_fusion ⊗ ε_residual )
Where:
V_latent = vision-side manifold witness
L_latent = language-side symbolic witness
B_fusion = corpus-callosum / bind operator
ε_residual = mismatch between what is seen and what is said
So yes: the idea exists, especially in VLMo, LIMoE, MoE-LLaVA, and Flamingo-like systems. But the specific “dual-brain MoE” framing is still a useful architecture concept because most current systems are either:
dual encoder but not MoE
MoE but not cleanly bilateral
Your version would be more like a bilateral multimodal MoE with a dedicated binding commissure — language and vision as separate lawful manifolds, joined by a residual-checking fusion layer. That is a very defensible model shape. Sources:
-
Adapting Dual-encoder Vision-language Models for ... (arxiv.org) ↩︎
-
Flamingo: a Visual Language Model for Few-Shot Learning (arxiv.org) ↩︎
-
VLMo: Unified Vision-Language Pre-Training with Mixture ... (arxiv.org) ↩︎
-
VLMO: Unified Vision-Language Pre-Training with Mixture- ... (proceedings.neurips.cc) ↩︎
-
Multimodal Contrastive Learning with LIMoE (openreview.net) ↩︎
-
MoE-LLaVA: Mixture of Experts for Large Vision-Language ... (arxiv.org) ↩︎
-
Uni-MoE: Scaling Unified Multimodal LLMs With Mixture of ... (dl.acm.org) ↩︎
-
Choosing words: left hemisphere, right hemisphere, or both ... (pmc.ncbi.nlm.nih.gov) ↩︎
-
Language Is Both Localized and Lateralized - NCBI - NIH (www.ncbi.nlm.nih.gov) ↩︎
-
Cross-hemispheric communication: Insights on lateralized ... (www.sciencedirect.com) ↩︎