-
Notifications
You must be signed in to change notification settings - Fork 0
Architecture
devlux76 edited this page Mar 14, 2026
·
1 revision
This page describes the high-level architecture of CORTEX and the major subsystems.
CORTEX models three biological brain regions working in concert:
- Hippocampus — Fast associative encoding and incremental prototype construction.
- Cortex — Intelligent routing, dialectical retrieval, and coherence.
- Daydreamer — Background consolidation and maintenance.
Each region is responsible for a distinct phase of the memory lifecycle. Together they form a pipeline from ingestion through retrieval.
- Medoid — An actual memory node (page) selected as the representative of a cluster.
- Centroid — A computed geometric average (never stored as a real node).
-
Metroid — A transient, structured dialectical search probe (
{ m1, m2, c }) used at query time.
- Ingestion: Hippocampus embeds content and creates/update prototypes.
- Retrieval: Cortex constructs Metroids and performs dialectical search for coherent context.
- Consolidation: Daydreamer updates prototypes, prunes edges, and maintains stability.
For the full algorithmic detail, see Retrieval & Metroid Algorithm.