Topo-Omni deep topographic multimodal model for discovering functionally selective brain regions across visual, auditory, and language processing streams. Activation: topographic model, multimodal brain model, cortical organization, brain regions discovery.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill topo-omni-deep-topographic-multimodal --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Topo Omni Deep Topographic Multimodal?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-topo-omni-deep-topographic-multimodal)More formats (shields.io, HTML) on the badges page.
---
name: topo-omni-deep-topographic-multimodal
description: Topo-Omni deep topographic multimodal model for discovering functionally selective brain regions across visual, auditory, and language processing streams. Activation: topographic model, multimodal brain model, cortical organization, brain regions discovery.
---
## Context
Paper: arXiv:2606.09770 - "Discovering Functionally Selective Brain Regions with a Deep Topographic Multimodal Model"
Authors: Badr AlKhamissi, Johannes Mehrer, Lara Marinov, Ahmed Abdelaal, Abdulkadir Gokce, Martin Schrimpf
Submitted: 8 Jun 2026
Category: Neurons and Cognition (q-bio.NC), Machine Learning (cs.LG)
## Problem
- Existing topographic models are **unimodal** (only visual or auditory)
- Spatial constraints are applied **separately per layer**, yielding fragmented maps
- Cannot capture **contiguity** of cortical processing streams
- Cannot model **integration across modalities** (visual ↔ auditory ↔ language)
## Core Methodology
Topo-Omni unifies visual, auditory, and language/cognitive processing into a **single contiguous in-silico sheet**:
### 1. Architecture Design
```
Single Topographic Sheet (shared spatial layout)
├── Visual Processing Stream (V1 → V2 → V4 → IT)
├── Auditory Processing Stream (A1 → A2 → A4)
└── Language/Cognitive Stream (semantic, syntactic regions)
All streams share the same 2D spatial coordinates
```
### 2. Training Procedure
- **Base model**: Pretrained multimodal foundation model (CLIP-style visual/audio + language)
- **Spatial smoothness objective**: L2 penalty on activations of neighboring units
- Loss = Task_loss + λ · ∑_{neighbors} ||h_i - h_j||²
- **Fine-tuning**: Apply spatial constraint across ALL layers simultaneously (not per-layer)
### 3. Cluster Discovery
- **Emergent clusters**: Model develops spatially contiguous regions
- **Validation**: Compare clusters to human fMRI/MEG localizer data
- Visual clusters: Retinotopic maps (V1-V4), face patches (FFA)
- Auditory clusters: Tonotopic maps (A1-A4), speech-selective (STG)
- Language clusters: Semantic networks, syntactic processing areas
### 4. Intervention Validation
- **Driving clusters**: Optimize activations → selective perceptual bias (e.g., enhance face detection)
- **Suppressing clusters**: Zero activations → selective impairment (paralleles TMS studies)
- **Result**: Model clusters behave like human brain regions under intervention
### 5. Novel Cluster Screening
- Screen in-silico for undiscovered clusters
- Identified: **Natural landscape networks** (nature scene processing)
- Identified: **Animal networks** (animal categorization regions)
- Validated in human neuroimaging data
## Key Results
1. **Single spatial principle** organizes representations across modalities
2. **Cross-modal clusters**: Visual-auditory integration regions emerge naturally
3. **Contiguous processing streams**: No fragmentation between sensory stages
4. **Testable hypotheses**: Novel clusters predict undiscovered human brain regions
## Implementation Steps
1. **Initialize multimodal encoder** (vision + audio + language)
2. **Assign 2D coordinates** to all units (single sheet topology)
3. **Define neighborhood graph** (adjacent units share spatial proximity)
4. **Add spatial smoothness loss**: λ=0.1-0.5 (tune for cluster size)
5. **Fine-tune on multimodal tasks** with spatial constraint active
6. **Extract cluster boundaries**: Threshold activation gradients
7. **Validate against neuroimaging**: Compare to fMRI localizer data
## Pitfalls
- **λ too high**: Over-smoothing → no selective regions emerge
- **λ too low**: No spatial organization → fragmented maps
- **Per-layer constraints**: Avoid separate spatial losses per layer (breaks contiguity)
- **Unimodal training**: Must include all modalities to develop cross-modal integration
- **No foundation model**: Random initialization fails → need pretrained features
## Verification
```python
# Check cluster formation
import numpy as np
activations = model.encode_multimodal(inputs)
spatial_coords = model.get_coordinates()
# Compute spatial smoothness
smoothness_loss = 0
for i, j in neighborhood_pairs:
smoothness_loss += np.linalg.norm(activations[i] - activations[j])**2
# Verify cluster selectivity
cluster_id = detect_cluster(activations, spatial_coords)
selectivity = compute_selectivity(cluster_id, task_labels)
assert selectivity > 0.7 # clusters should be task-selective
```
## Applications
- Brain region discovery (screen for novel functional areas)
- Neuroimaging validation (compare model clusters to fMRI)
- Intervention studies (drive/suppress clusters → test hypotheses)
- Multimodal AI design (single-sheet architecture for cross-modal integration)
## References
- Paper: https://arxiv.org/abs/2606.09770
- Code: (check paper supplementary / GitHub)
- Related: Retinotopic mapping, Tonotopic mapping, Semantic networks
## Activation Keywords
topographic model, multimodal brain, cortical organization, brain regions discovery, spatial smoothness, cross-modal integration, contiguous processing streams, topographic multimodal model, visual auditory language integrationIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!