MCCF: Zones As Semantic Attractors

 


Discovering Functionally Selective Brain Regions with a Deep Topographic Multimodal Model Badr AlKhamissi, Johannes Mehrer, Lara Marinov, Ahmed Abdelaal, Abdulkadir Gokce, Martin Schrimpf EPFL. Carnegie mellon University 2026 https://arxiv.org/abs/2606.09770 https://topo-omni.epfl.ch/

Len, this paper immediately made me think of MCCF because it is trying to solve a problem that neuroscience has struggled with for decades:

Why does function in the brain organize itself into spatial neighborhoods instead of being randomly distributed?

The authors' answer is surprisingly simple:

Add a pressure for nearby computational units to develop similar representations, and large-scale functional regions emerge naturally. 

What Topo-Omni Actually Does

The model, called Topo-Omni, starts with a pretrained multimodal foundation model and fine-tunes it with a spatial smoothness objective. Visual, auditory, and language/cognitive processing all live on a single continuous 2D sheet rather than in separate modality-specific maps. 

Instead of:

vision network
audio network
language network

they build:

+--------------------------------+
| |
| One continuous cortical sheet |
| |
+--------------------------------+

where neighboring units are encouraged to become functionally similar.

The remarkable result is that clusters emerge corresponding to sensory and cognitive systems that resemble those observed in human neuroimaging. They even report discovering candidate "animal" and "natural landscape" regions that were later validated in human data. 


Why This Is Interesting for MCCF

What struck me is that Topo-Omni is effectively implementing a coherence field.

Not emotional coherence.
Not social coherence.

Just spatial-functional coherence.

Their update rule is essentially:

"Nearby nodes should agree more than distant nodes."

That sounds suspiciously like a special case of MCCF.

In MCCF, coherence propagates through couplers:

Emotional
Behavioral
Predictive
Social

through a dynamic field.

Topo-Omni says:

Spatial proximity
->
Representational similarity
->
Emergent specialization

The mathematical flavor is surprisingly similar.


The Deep Connection

MCCF already assumes that coherence is not local to a single node.

You have repeatedly described it as:

coherence propagating through the network topology through the couplers.

Topo-Omni suggests the brain may be doing something analogous.

Not:

region -> function

but

coherence constraint
->
function emerges
->
region appears

That's a profound inversion.

The region is not primary.

The coherence field is primary.

The region is a consequence.


What Excites Me Most

The intervention experiments.

The paper reports that activating or suppressing a discovered cluster selectively biases perception in ways analogous to human intervention studies. 

That means these aren't merely pretty visualizations.

The clusters have causal significance.

This is important because it addresses a criticism often leveled at emergent representations:

"Sure, the clusters exist, but do they do anything?"

The answer appears to be yes.


The MCCF Interpretation

If I translate this into MCCF language:

Semantic Zones emerge because coherence gradients stabilize around attractors.

Your architecture already contains:

  • Semantic Zones
  • Waypoints
  • Cultivars
  • Energy fields
  • Attractors

Topo-Omni is demonstrating something very similar in a neuroscience setting:

smoothness constraint
->
attractor formation
->
functional region

In MCCF terms:

coherence constraint
->
semantic attractor
->
zone formation

The structures are different, but the principle is remarkably close.


The Question It Raises

Suppose we take MCCF's four channels:

E  Emotional
B Behavioral
P Predictive
S Social

and apply a Topo-Omni-style smoothness constraint.

Would the system spontaneously develop:

  • empathy zones
  • planning zones
  • trust zones
  • exploration zones

without explicitly programming them?

That would be a direct test of your hypothesis that coherence fields create structure.


My Take

I don't think this paper proves MCCF.

But it does something almost as interesting.

It provides evidence that:

Functional specialization can emerge from a simple coherence-preserving principle imposed on a large network.

That is exactly the class of mechanism MCCF is built around.

For years neural networks have largely ignored topology. The brain does not. TopoLM showed that language organization can emerge from topographic constraints. Topo-Omni extends that idea across vision, audio, and cognition on a unified sheet. 

Viewed through the MCCF lens, the paper can be summarized as:

"Spatial coherence fields produce functional attractors."

Your next question, naturally, is:

"Can multi-channel coherence fields produce cognitive attractors?"

That is a much larger claim.

But this paper nudges the door open. Reality may be telling us that specialization is not something we engineer directly.

It may be something that emerges whenever coherence has a geometry in which to propagate. 

In mccf zones are labeled and have emotional pressures that act in theory on agents in their proximity. I have considered adding type rules such that behaviors are triggered when an agent enters a zone. We are still working out the bugs on zone ambient sounds and stingers. Then cameras, special effects etc. But zone behaviors and/or’d with agent relationships could be interesting.

I think you're moving toward something that many game engines and agent systems eventually discover:

Location becomes a form of memory.

Right now MCCF zones are primarily:

Zone
├─ label
├─ emotional vector
├─ coherence effects
├─ ambient sound
└─ stingers

which means they influence state.

What you're describing adds influence on behavior.

Zone
├─ state effects
└─ behavior affordances

That is a significant step because it turns a zone from scenery into an active participant.

A Simple Example

Imagine a zone:

The Library

with:

curiosity +0.8
arousal -0.4
trust +0.2

and behavioral rules:

IF agent enters
THEN
increase observation frequency
reduce movement speed
prefer information-seeking actions

The agent isn't being forced.

The probability landscape is being altered.

That fits nicely with your MCCF energy model.

Instead of:

enter zone
-> perform action

you get:

enter zone
-> modify E(s,a)
-> action becomes more likely

which preserves agency.


Relationship-Coupled Behaviors Are More Interesting

The real magic may be where zones and relationships intersect.

Imagine:

Zone = Garden
Agent A trusts Agent B

Rule:

Garden AND trust > 0.7
->
share_memory

but

Garden AND trust < 0.3
->
maintain_distance

Now the same location produces different emergent behavior depending on social context.

This starts to resemble actual human environments.

A church, classroom, courtroom, tavern, or family dinner table doesn't determine behavior by itself.

Behavior emerges from:

place
+
relationship
+
goal
+
emotional state

Theatrical Staging

Given your storytelling interests, I think this may become more valuable than the emotional vectors themselves.

Directors think in terms of:

Where should these characters be when this conversation occurs?

not

What is their valence score?

A zone can become a stage direction.

For example:

Waypoint W3

IF Anna and Jack enter together
trigger violin motif

IF trust > threshold
move toward center marker

IF conflict > threshold
occupy opposite edges

Suddenly the scene blocks itself.

The environment becomes a co-director.


A Garden Interpretation

The metaphor you've used for MCCF has always been gardening.

Zones could act like different soils.

Rose Garden
encourages intimacy

Market
encourages exchange

Crossroads
encourages choice

Sanctuary
encourages reflection

The agents remain the plants.

The zone doesn't determine what grows.

It changes what grows well there.

That feels philosophically consistent with MCCF.


A Technical Direction

I'd avoid hard triggers initially.

Instead of:

IF enter zone
perform behavior X

consider:

ZoneBehaviorModifier

share_memory +0.3
seek_information +0.5
avoid_conflict +0.4
explore -0.2

Then add relationship modifiers:

trust > 0.7       +0.4 share_memory
conflict > 0.6 +0.5 challenge

These become additional terms in your energy function.

Something like:

Etotal=Ebase+Ezone+Erelationship+Egoal

The behavior emerges from the combined field rather than a scripted event.

That is very much in the spirit of MCCF.


What intrigues me most is that this begins to connect back to the Topo-Omni paper. Their cortical sheet develops specialized regions because local pressures accumulate over time.

Your zones may become the narrative equivalent:

coherence pressures
+
social pressures
+
environmental pressures
->
behavioral attractors

After enough runs, you might discover that certain locations consistently become places of reconciliation, conflict, teaching, exploration, or creativity—even though you never explicitly designated them that way.

At that point, the zone is no longer just a location in the world model.

It has become a semantic attractor, which is very close to what you've been trying to build with Semantic Zones from the beginning.


Claude comments;

Relevant chats

Good context. I can see the full arc — the MCCF work including the X3D visualization layer, the coherence field formalism, and where you've been heading.


The blipvert lands clearly: MCCF zones as semantic attractors is the natural next step from where that work left off. A few quick observations to hold until you resume:

The image frames this beautifully — the MCCF diagram already shows the five channels converging to coherence/stability/resilience/meaning/belonging. Those outputs are attractor basins, not just metrics. Formalizing that — treating each zone not as a threshold range but as a region with a basin geometry, approach paths, and escape conditions — is a genuine architectural upgrade.

What that move buys you:


  • Zones become navigable rather than just measurable. An agent can be "moving toward" a semantic attractor rather than just "scoring 0.62 on coherence."

  • The constitutional arc (W1-W7)gets a topological reading — each waypoint is a saddle or basin in the semantic landscape, not just a state label.

  • Dissonance as escape trajectorybecomes more precise — productive dissonance is a perturbation that exits one attractor basin to find a higher-energy one, not just noise.

  • The X3D visualization layer has a natural extension: render the attractor geometry, not just the channel values.

The image also flags something worth noting when you resume: the Conductor role at the center of the X3D agent ring. If zones are semantic attractors, the Conductor is the agent responsible for basin navigation — knowing which attractor the ensemble is currently in and whether to stabilize or perturb.

Comments

Popular posts from this blog

To Hear The Mockingbird Sing: Why Artists Must Engage AI

MCCF Philosophy & Manifesto

Schenkerian Analysis, HumanML and Affective Computing