In Two Minds about Lifelong Learning: Exploring Hemispheric Redundancy and Specialisation in Neural Models
Summary
This paper proposes 4MAS, a novel neural architecture inspired by biological bilaterality and memory consolidation, to address catastrophic forgetting in lifelong learning, achieving competitive results on benchmark datasets.
View Cached Full Text
Cached at: 08/21/26, 10:24 AM
# In Two Minds about Lifelong Learning: Exploring Hemispheric Redundancy and Specialisation in Neural Models
Source: [https://arxiv.org/html/2608.19514](https://arxiv.org/html/2608.19514)
Benjamin SmithCorresponding author:Corresponding authorAffiliation:Data Science and AI, Monash University, Wellington Road, Clayton, 3800, Victoria, AustraliaLevin KuhlmannAffiliation:Data Science and AI, Monash University, Wellington Road, Clayton, 3800, Victoria, AustraliaGideon KowadloAffiliation:Data Science and AI, Monash University, Wellington Road, Clayton, 3800, Victoria, AustraliaAffiliation:Cerenaut, Victoria, Australia
###### Abstract
Persistent intelligent systems require the ability to learn continually, but current machine learning approaches face significant challenges in this area compared to biological learning systems\. Machine learning algorithms typically trade off retention of previously learned information and adaptation to new or changing data patterns\. When continual learning capabilities are absent, algorithms must undergo retraining using the entire data set, an approach that becomes impractical when original training data are unavailable due to storage constraints, financial or computational costs, or privacy restrictions\. However, biological animals can learn continually, without experiencing catastrophic forgetting\. This paper attempts to build a high\-level framework for how animals learn and preserve knowledge by modelling neural components and states that are known to be related to memory consolidation\. We focus on three concepts: experience replay, REM sleep, and bilaterality\. We propose 4MAS \(4 Module Awake/Sleep\), a novel macroarchitecture demonstrating how machine learning models might benefit from asymmetric hemispheres, each with their own long\- and short\-term memory mechanisms, and how a period of sleep between incremental learning tasks might benefit memory consolidation\. Finally, we present results showing that our architecture achieves competitive results on the Split\-MNIST, Split\-Fashion\-MNIST and Split\-CIFAR\-100 datasets, with 98\.3%, 84\.9%, and 29\.29% accuracy respectively\.
###### Keywords:
Continual Learning , Lifelong Learning , Experience Replay , Bilateral Deep Learning
††graphicalabstract:![[Uncaptioned image]](https://arxiv.org/html/2608.19514v1/graphical_abstract.png)## 1Introduction
Contemporary artificial neural networks suffer from catastrophic forgetting \(or catastrophic interference\)\[[42](https://arxiv.org/html/2608.19514#bib.bib26),[24](https://arxiv.org/html/2608.19514#bib.bib27)\], where learning new tasks rapidly erodes previously acquired skills\. While standard training assumes independent, identically distributed \(i\.i\.d\.\) data, real\-world applications present sequentially correlated distributions where class presentation frequencies vary arbitrarily\.
This forgetting stems from the stability\-plasticity dilemma: adapting weights to new data modifies parameters that are critical for earlier tasks\[[14](https://arxiv.org/html/2608.19514#bib.bib43),[16](https://arxiv.org/html/2608.19514#bib.bib39)\]\. Joint training across all data streams is fundamentally impossible in continual learning settings where future data are unavailable and past data are restricted by storage or privacy constraints\. Naive sequential fine\-tuning, while feasible, suffers from severe catastrophic forgetting\. Continual learning algorithms seek to resolve this dilemma without full dataset retraining\.
In contrast, biological brains mitigate forgetting through specialised neural architectures and consolidation states\. The mammalian hippocampus uses experience replay to weave together recent and distant memories, transferring knowledge to the neocortex during sleep\[[5](https://arxiv.org/html/2608.19514#bib.bib10),[8](https://arxiv.org/html/2608.19514#bib.bib23),[13](https://arxiv.org/html/2608.19514#bib.bib17)\]\. Furthermore, sleep phases like rapid\-eye\-movement \(REM\) sleep exhibit highly coordinated bilateral \(inter\-hemispheric\) activity, which contrasts with the unihemispheric states of slow\-wave sleep\[[37](https://arxiv.org/html/2608.19514#bib.bib19),[7](https://arxiv.org/html/2608.19514#bib.bib16)\]\. Finally, there is evidence that biological brains leverage two lateralised cortical hemispheres that acquire distinct representations, with the right hemisphere handling novel information and the left hemisphere optimised for stable routine tasks\[[18](https://arxiv.org/html/2608.19514#bib.bib13),[28](https://arxiv.org/html/2608.19514#bib.bib25)\]\.
Existing generative replay methods such as Generative Replay struggle to scale because a single generator must capture all historical distributions, leading to compounding representational drift\[[39](https://arxiv.org/html/2608.19514#bib.bib28)\]\. To address these limitations, we propose 4MAS \(4 Module Awake/Sleep\), a novel continual learning macroarchitecture that implements two asymmetric hemispheres—each with dedicated short\- and long\-term memory modules—and an explicit offline sleep phase for cross\-hemispheric consolidation; representing hippocampus and neocortex respectively\. By distributing replay across two specialised generators and anchoring the latent space during sleep, 4MAS minimises representational drift\.
Our main contributions are:
- 1\.We propose a dual\-hemisphere continual learning architecture \(4MAS\) that splits generative replay across specialised exploratory and conservative models, mimicking biological lateralisation\.
- 2\.We introduce an explicit wake\-sleep training cycle that uses cross\-hemispheric consolidation \(mutual fine\-tuning during a simulated sleep phase\) to stabilise latent spaces and prevent representational drift\.
- 3\.We demonstrate that 4MAS achieves competitive Class\-IL accuracies on Split\-MNIST \(98\.3%98\.3\\%\), Split\-Fashion\-MNIST \(84\.9%84\.9\\%\), and Split\-CIFAR\-100 \(29\.29%29\.29\\%\); while displaying extremely low representational drift across tasks\.
### 1\.1Biological motivation
Inspired by this neurobiological template, 4MAS employs two generative long\-term memories as an asymmetrical ensemble: one retains plasticity for novel task acquisition, while the other stabilises historical patterns\. Generative memories are paired with short\-term memory buffers, allowing for rehearsal akin to hippocampal replay\. Training follows an ultradian\-inspired cycle, alternating between a unihemispheric awake phase for task learning and a bilateral sleep phase for cross\-hemispheric memory harmonisation\.
## 2Background and related work
Continual learning is typically evaluated under three scenarios\[[41](https://arxiv.org/html/2608.19514#bib.bib34)\]of increasing difficulty:
- 1\.Task\-IL \(Task Incremental Learning\):The model learns a sequence of tasks with distinct data distributions and separate output spaces\. The task identity is explicitly provided during both training and inference, allowing the model to select task\-specific parameters or heads\.
- 2\.Domain\-IL \(Domain Incremental Learning\):The model is exposed to a sequence of tasks with varying input distributions that share a common output space\. The task identity is never provided, requiring the model to adapt to changing domains without contextual routing\.
- 3\.Class\-IL \(Class Incremental Learning\):The most challenging paradigm, where both input distributions and output spaces vary across tasks\. No task identifiers are available at training or inference\. The model must classify inputs across all classes seen so far, making it highly susceptible to catastrophic forgetting\.
When evaluating these models, performance is typically benchmarked against fine\-tuning \(sequential training without forgetting mitigation; lower bound\) and joint\-training \(simultaneous training on all data; upper bound\)\. To bridge the gap to joint\-training under Class\-IL constraints, algorithms are commonly grouped into regularisation, parameter isolation, and rehearsal\.
### 2\.1Regularisation
Regularisation methods restrict gradient updates to protect parameters that are critical for prior tasks\. Early approaches froze lower layers of a network after training on a task\[[12](https://arxiv.org/html/2608.19514#bib.bib21)\]\. Modern algorithms estimate parameter importance by calculating contribution to loss reduction \(e\.g\., Synaptic Intelligence\[[44](https://arxiv.org/html/2608.19514#bib.bib9)\]\), approximating Bayesian inference \(e\.g\., Elastic Weight Consolidation\[[16](https://arxiv.org/html/2608.19514#bib.bib39)\]\), or evaluating output function sensitivity \(e\.g\., Memory Aware Synapses\[[1](https://arxiv.org/html/2608.19514#bib.bib7)\]\)\. Recent methods perform geometric analysis to locate stable flat minima in the distribution manifold\[[25](https://arxiv.org/html/2608.19514#bib.bib11),[33](https://arxiv.org/html/2608.19514#bib.bib8)\]or approximate prior losses using the Hessian matrix eigenvalues\[[17](https://arxiv.org/html/2608.19514#bib.bib18)\]\.
While regularisation is highly effective in Task\-IL, it struggles in Class\-IL\[[19](https://arxiv.org/html/2608.19514#bib.bib33)\]\. The strict constraints designed to protect existing knowledge prevent the model from adapting to novel classes, leading to representational paralysis as constraints accumulate over sequential tasks\[[33](https://arxiv.org/html/2608.19514#bib.bib8)\]\.
### 2\.2Parameter isolation
Parameter isolation limits training to a subset of parameters or dynamically expands the network structure\. A common design adds task\-specific output heads to a pretrained feature\-extractor backbone\[[29](https://arxiv.org/html/2608.19514#bib.bib37),[6](https://arxiv.org/html/2608.19514#bib.bib36)\]\. Under network expansion, the network freezes historical weights and adds new neurons or columns for each task\[[38](https://arxiv.org/html/2608.19514#bib.bib22),[31](https://arxiv.org/html/2608.19514#bib.bib38)\]\. Another branch of research leverages Adaptive Resonance Theory to dynamically create category nodes as new distributions appear\[[11](https://arxiv.org/html/2608.19514#bib.bib4)\]\.
However, these approaches struggle in Class\-IL settings because they require task identity during inference to route data to the appropriate sub\-network\. Without explicit task identifiers, the model lacks an intrinsic mechanism for choosing the correct task pathway\. Although sparse neural activation in large networks can mitigate routing issues\[[32](https://arxiv.org/html/2608.19514#bib.bib35)\], parameter isolation remains difficult to scale without introducing capacity exhaustion or inference\-routing failures\[[4](https://arxiv.org/html/2608.19514#bib.bib3),[27](https://arxiv.org/html/2608.19514#bib.bib2)\]\.
### 2\.3Rehearsal: replay and generative replay
Rehearsal techniques interleave historical data with new task inputs\. Experience replay stores a memory buffer of real samples from earlier tasks, and Gradient Episodic Memory \(GEM\) uses those stored examples as inequality constraints on each update so the loss on previous tasks does not increase, which reduces forgetting while still allowing positive backward transfer\[[23](https://arxiv.org/html/2608.19514#bib.bib5)\]\. Maximally Interfered Retrieval \(MIR\) instead keeps a finite replay memory, estimates the parameter update from the current batch, and then replays the buffered samples whose losses would increase the most under that update, making it distinct from GEM because it prioritises most\-interfered samples rather than enforcing explicit gradient constraints\[[2](https://arxiv.org/html/2608.19514#bib.bib6)\]\. AdaER further adapts replay by using Contextually\-Cued Memory Recall to select memories based on both data\-conflicting and task\-conflicting cues, and it also updates the buffer with Entropy\-Balanced Reservoir Sampling to keep a more balanced, informative memory, distinguishing it from MIR’s interference\-only retrieval and GEM’s constraint\-based updates\[[21](https://arxiv.org/html/2608.19514#bib.bib29)\]\.
While buffer\-based replay is effective, it scales poorly because representing complex, high\-dimensional distributions requires a prohibitive number of stored samples\[[3](https://arxiv.org/html/2608.19514#bib.bib44)\]\.
Generative replay avoids storing real data by training a generative model to synthesise historical inputs\[[34](https://arxiv.org/html/2608.19514#bib.bib40)\]\. To scale beyond simple datasets, models reconstruct latent feature representations rather than raw training samples\. For example, Generative Feature Replay \(GFR\) uses a feature extractor to train a generator on latent distributions\[[22](https://arxiv.org/html/2608.19514#bib.bib41)\], mimicking biological systems where memory replay occurs at representational rather than raw sensory levels\[[30](https://arxiv.org/html/2608.19514#bib.bib30)\]\. Brain\-Inspired Replay \(B\-IR\) combines generative replay with parameter isolation to achieve state\-of\-the\-art results\[[39](https://arxiv.org/html/2608.19514#bib.bib28)\]\. Nonetheless, generative models suffer from representational drift as the feature extractor updates over time, requiring distillation constraints or frozen features to anchor the latent space\[[15](https://arxiv.org/html/2608.19514#bib.bib20)\]\.
## 3Methods
We present 4MAS \(4 Module Awake/Sleep\), a macroarchitecture for continual learning designed to model biological memory consolidation processes\. As illustrated in Figure[1](https://arxiv.org/html/2608.19514#S3.F1), the system consists of two lateralised hemispheres\. Each hemisphere contains:
1. 1\.A generative Long\-Term Memory \(LTM\) representing the neocortex, which learns task distributions and classifies incoming data\.
2. 2\.A Short\-Term Memory \(STM\) buffer representing the hippocampus, which stores a small set of episodic exemplars\.
The architecture restricts data flow to a biologically inspired model where task acquisition is unihemispheric and offline consolidation is bilateral, facilitating knowledge transfer and specialisation\.
Figure 1:Long\-term memory inputs and outputs: \(a\) LTM training on image\-label pairs\. \(b\) Synthetic sample generation with temperatureτ\\tau\. \(c\) Inference confidence\-based selection\.### 3\.1Benchmarks and experimental design
To evaluate 4MAS under the Class\-IL constraint, we employ Split\-MNIST\[[20](https://arxiv.org/html/2608.19514#bib.bib24),[40](https://arxiv.org/html/2608.19514#bib.bib12)\]and Split\-Fashion\-MNIST\[[43](https://arxiv.org/html/2608.19514#bib.bib42),[36](https://arxiv.org/html/2608.19514#bib.bib14)\], shown in Figure[2](https://arxiv.org/html/2608.19514#S3.F2)\. The standard 10\-class datasets are split into 5 sequential tasks of 2 classes each, presented without task identifiers at both training and inference\. Hyperparameter tuning and initial method development were conducted primarily on these two MNIST variants\. To test scalability and out\-of\-the\-box generalizability, we then expanded evaluation to the more challenging Split\-CIFAR\-100 dataset\[[40](https://arxiv.org/html/2608.19514#bib.bib12)\]\. Unless otherwise stated, each configuration is run for 10 random seeds, and we report the mean and standard error of the mean of each metric across seeds\. The model trains for 10 epochs per class, with a synthetic epoch length of 10,000 samples\. Ablation studies disentangle the contributions of the STM buffers, the dual\-hemisphere ensemble, and the sleep phase\.
Figure 2:Class\-IL datasets: \(a\) Split\-MNIST, \(b\) Split\-Fashion\-MNIST\.
### 3\.2Sleep/wake phases
The training cycle alternates between a unihemispheric “awake” phase and a bilateral “sleep” phase for each task, Figure[3](https://arxiv.org/html/2608.19514#S3.F3)\. During the awake phase, Algorithm[1](https://arxiv.org/html/2608.19514#alg1), each LTM hemisphere is trained on three randomly interleaved sources: new task data, exemplars stored in the ipsilateral STM from prior tasks, and self\-generated synthetic samples\. After training, the LTM evaluates the training data and updates its STM buffer with samples that meet the selection criteria \(Section[3\.4](https://arxiv.org/html/2608.19514#S3.SS4)\)\.
During the sleep phase, Algorithm[2](https://arxiv.org/html/2608.19514#alg2), LTMs undergo fine\-tuning on contralateral representations \(generations from the opposite LTM and exemplars from the opposite STM\) during a period where no new training data are available\. To allow subtle adjustments to internal representations without destroying learned task\-specific parameters, the sleep learning rate is scaled down by a multiplierλ=0\.1\\lambda=0\.1, mimicking the lower firing rates observed across brain regions during REM sleep\[[26](https://arxiv.org/html/2608.19514#bib.bib15)\]\.
Figure 3:Awake/sleep training phases: \(a\) Awake training: LTMs learn new task data interleaved with STM samples\. \(b\) Sleep training: LTMs are fine\-tuned on contralateral representations\.Algorithm 1Incremental task – awake phase1:Input:Task
t∈\[1,∞\)t\\in\[1,\\infty\), learning rate
α\\alpha, model parameters
θleft\\theta\_\{left\},
θright\\theta\_\{right\}, memories
ℳleft\\mathcal\{M\}\_\{left\},
ℳright\\mathcal\{M\}\_\{right\}, classes seen
CC, memory capacity
MM\.
2:for
h∈\{left,right\}h\\in\\\{left,right\\\}do
3:
w←\{wi\}i=1Cw\\leftarrow\\\{w\_\{i\}\\\}\_\{i=1\}^\{C\}where
wi=1/Cw\_\{i\}=1/C
4:for
e=1…Eawakee=1\\dots E\_\{awake\}do
5:Draw batch
βt\\beta\_\{t\}from
𝒟t\\mathcal\{D\}\_\{t\}\.
6:if
t\>1t\>1thengenerate replay
𝒢h∼pθh\(x\|z\)\\mathcal\{G\}\_\{h\}\\sim p\_\{\\theta\_\{h\}\}\(x\|z\)and set
β←βt∪𝒢h∪ℳh\\beta\\leftarrow\\beta\_\{t\}\\cup\\mathcal\{G\}\_\{h\}\\cup\\mathcal\{M\}\_\{h\}else
β←βt\\beta\\leftarrow\\beta\_\{t\}
7:
β←class\_weighted\_rebalance\(β,w\)\\beta\\leftarrow\\mathrm\{class\\\_weighted\\\_rebalance\}\(\\beta,w\)
8:
θh←θh−α∇θℒ\(θh,β\)\\theta\_\{h\}\\leftarrow\\theta\_\{h\}\-\\alpha\\nabla\_\{\\theta\}\\mathcal\{L\}\(\\theta\_\{h\};\\beta\)
9:
g←bincount\(argmaxcy^\(𝒢h\)\)g\\leftarrow\\mathrm\{bincount\}\\big\(\\arg\\max\_\{c\}\\hat\{y\}\(\\mathcal\{G\}\_\{h\}\)\\big\)
10:
w←\{1/\(gi\+ε\)\}i=1Cw\\leftarrow\\\{1/\(g\_\{i\}\+\\varepsilon\)\\\}\_\{i=1\}^\{C\}
11:endfor
12:for
i=1…Ci=1\\dots Cdo
13:
𝒫h,i←Oversample\(𝒟t,i∪ℳh,i\)\\mathcal\{P\}\_\{h,i\}\\leftarrow\\mathrm\{Oversample\}\(\\mathcal\{D\}\_\{t,i\}\\cup\\mathcal\{M\}\_\{h,i\}\)⊳\\trianglerightExpand candidate pool for classii
14:
ℳh,i←TopK⌊M/C⌋\(𝒫h,i,CONF\(y^\)\)\\mathcal\{M\}\_\{h,i\}\\leftarrow\\mathrm\{TopK\}\_\{\\lfloor M/C\\rfloor\}\\Big\(\\mathcal\{P\}\_\{h,i\},\\,CONF\(\\hat\{y\}\)\\Big\)⊳\\trianglerightSelect top\-k highest confidence
15:endfor
16:
ℳh←⋃i=1Cℳh,i\\mathcal\{M\}\_\{h\}\\leftarrow\\bigcup\_\{i=1\}^\{C\}\\mathcal\{M\}\_\{h,i\}
17:endfor
Algorithm 2Incremental task – sleep phase1:Input:Task
t∈\[1,∞\)t\\in\[1,\\infty\), learning rate
α\\alpha, models
θleft\\theta\_\{left\},
θright\\theta\_\{right\}, memories
ℳleft\\mathcal\{M\}\_\{left\},
ℳright\\mathcal\{M\}\_\{right\}, sleep learning multiplier
λ=0\.1\\lambda=0\.1\.
2:for
hhin
\{left,right\}\\\{left,right\\\}do
3:
w←\{wi\}i=1Cw\\leftarrow\\\{w\_\{i\}\\\}\_\{i=1\}^\{C\}where
wi=1/Cw\_\{i\}=1/C
4:for
e=1:Esleepe=1:E\_\{sleep\}do
5:
β←θh\(z\)∪ℳh\\beta\\leftarrow\\theta\_\{h\}\(z\)\\cup\\mathcal\{M\}\_\{h\}
6:
τh←θh−λα∇τℒ\(θh,β\)\\tau\_\{h\}\\leftarrow\\theta\_\{h\}\-\\lambda\\alpha\\nabla\_\{\\tau\}\\mathcal\{L\}\(\\theta\_\{h\};\\beta\)\.
7:endfor
8:endfor
### 3\.3Long\-term memories
Each LTM is both a generator and a classifier within a single variational auto\-encoder \(VAE\)\. The classification vector is appended to the input image, and the model is trained to reconstruct the joint vectorx⌢yx\\frown y\. This joint parameter space ensures that synthetic images and labels are tightly coupled\. Lety^\\hat\{y\}denote the reconstructed label channel, normalised over theCCclasses seen so far\. We define prediction confidence as the negative cross\-entropy ofy^\\hat\{y\}against its own arg\-max class:
CONF\(y^\)=−ℒCE\(y^,onehot\(argmaxcy^c\)\)=logmaxcy^cCONF\(\\hat\{y\}\)=\-\\mathcal\{L\}\_\{CE\}\\big\(\\hat\{y\},\\mathrm\{onehot\}\(\\arg\\max\_\{c\}\\hat\{y\}\_\{c\}\)\\big\)=\\log\\max\_\{c\}\\hat\{y\}\_\{c\}\(1\)CONF∈\(−∞,0\]CONF\\in\(\-\\infty,0\], with larger values indicating higher confidence\. SinceℒCE\\mathcal\{L\}\_\{CE\}is the same term the VAE minimises on the label channel, Equation[1](https://arxiv.org/html/2608.19514#S3.E1)doubles as a measure of reconstruction quality and requires no separate discriminative head, providing stability when learning new tasks\[[35](https://arxiv.org/html/2608.19514#bib.bib45)\]\. Confidence is used in three places: rejecting low\-confidence generations during replay, ranking candidates for STM storage \(Section[3\.4](https://arxiv.org/html/2608.19514#S3.SS4)\), and arbitrating between hemispheres at inference\.
Standard VAE latent samplingz∼𝒩\(0,I\)z\\sim\\mathcal\{N\}\(0,I\)can suffer from posterior collapse, producing low\-variance synthetic samples that degrade replay quality over sequential tasks\. To resolve this, we apply a temperature gainτ\\tauto the latent coordinates during sampling:z=τX,X∼𝒩\(0,I\)z=\\tau X,X\\sim\\mathcal\{N\}\(0,I\)\[[45](https://arxiv.org/html/2608.19514#bib.bib31)\]\. Settingτ\>1\\tau\>1expands the explored region of the latent space, generating sharper and more diverse samples, Figure[4](https://arxiv.org/html/2608.19514#S3.F4)\. During replay, low\-confidence generations near class boundaries are rejected to avoid interpolating between classes\. At inference, inputs are processed by both LTMs, and the class prediction from the hemisphere with higher confidence is selected\. To maintain class balance during replay, generation frequencies are weighted inversely to generation counts Algorithm[1](https://arxiv.org/html/2608.19514#alg1), line[10](https://arxiv.org/html/2608.19514#alg1.l10), biased linearly by task age\.


Figure 4:2\-dimensional mapping of the LTM’s latent space after training\.τ\\tauscales the sampling radius in units of the prior standard deviation\. High temperatureτ\>1\\tau\>1increases the diversity of output representations \(16 latent dimensions used in final configurations\)\.
### 3\.4Short\-term memories and lateralisation
Each STM acts as a memory buffer storing 50 exemplars\. We evaluate two buffer storage selection mechanisms:
1. 1\.Comparative Confidence Selection \(CCS\):Samples from the task and prior STM are passed through the post\-training LTM and ranked by confidence\. In symmetric configurations, moderate\-confidence quantile range samples \(∼50%\\sim 50\\%\) are selected in both hemispheres to represent distribution boundaries while retaining discernibility\. Under asymmetric configurations, STM storage selection is also lateralised: the Left Hemisphere selects high\-confidence anchor samples to reinforce representations against drift, while the Right Hemisphere selects moderate\-confidence samples to explore decision boundaries\. Specifically, we filter replay samples using the raw probabilitymaxcy^c=exp\(CONF\(y^\)\)∈\[0,1\]\\max\_\{c\}\\hat\{y\}\_\{c\}=\\exp\(CONF\(\\hat\{y\}\)\)\\in\[0,1\], retaining candidates within the moderate\-confidence quantile range\{L,R\}=\{0\.1,0\.5\}\\\{L,R\\\}=\\\{0\.1,0\.5\\\}\. This design helps avoid VAE posterior collapse and representational drift\.
2. 2\.Latent Space Cluster Centroids \(LSCC\):We apply K\-Means clustering in the VAE latent space across task and STM samples, retaining exemplars closest to the centroids\. This grounds representations and further prevents representational drift\.
To model biological hemispheric lateralisation \(stability vs\. plasticity\), we configure hyperparameter asymmetry\. The Left Hemisphere \(LH\) is configured for stability and routine processing \(lower generator temperatureτ\\tauand task\-age bias favouring older tasks\)\. The Right Hemisphere \(RH\) is configured for plasticity and exploration \(higher generator temperatureτ\\tauand no age bias\), enabling rapid adaptation to novel distributions\.
## 4Results and discussion
Our results show that 4MAS achieves competitive Class\-IL accuracies across all benchmarks:98\.3±0\.0%98\.3\\pm 0\.0\\%on Split\-MNIST,84\.9±0\.3%84\.9\\pm 0\.3\\%on Split\-Fashion\-MNIST, and29\.29±0\.29%29\.29\\pm 0\.29\\%on Split\-CIFAR\-100 \(Table[1](https://arxiv.org/html/2608.19514#S4.T1)\)\. These results are competitive with other recent Class\-IL methods, such as B\-IR \(93\.5%93\.5\\%,74\.6%74\.6\\%, and27\.85%27\.85\\%accuracy\)\[[40](https://arxiv.org/html/2608.19514#bib.bib12)\]and AdaER \(89\.6%89\.6\\%and74\.0%74\.0\\%accuracy\)\[[21](https://arxiv.org/html/2608.19514#bib.bib29)\]\. As shown in Table[1](https://arxiv.org/html/2608.19514#S4.T1), 4MAS demonstrates strong resilience to catastrophic forgetting\. On Split\-MNIST, 4MAS achieves98\.3%98\.3\\%accuracy, closely matching the Joint training ceiling of98\.0%98\.0\\%\. On Split\-Fashion\-MNIST, our method achieves84\.9±0\.3%84\.9\\pm 0\.3\\%, representing a significant advancement over B\-IR \(74\.6±0\.4%74\.6\\pm 0\.4\\%\) and GR \(71\.3±0\.3%71\.3\\pm 0\.3\\%\)\. This performance boost is directly tied to our low Forgetting scores \(1\.0%1\.0\\%on Split\-MNIST,10\.6%10\.6\\%on Split\-Fashion\-MNIST\) and exceptionally low representational drift \(1\.21\.2and1\.01\.0, respectively, compared to GR’s215\.0215\.0and48\.548\.5\)\. This demonstrates that the dual\-hemisphere and sleep\-phase architecture stabilises internal latent representations, preventing the drift that typically destabilises single\-generator networks\.
On the challenging Split\-CIFAR\-100 dataset and when scaling each architecture to 140M trainable parameters, 4MAS improves on the unilateral B\-IR baseline \(27\.85±0\.55%27\.85\\pm 0\.55\\%\) and significantly outperforms other generative replay methods\. The performance gap relative to Joint training \(51\.9±0\.4%51\.9\\pm 0\.4\\%\) is primarily due to the expressive capacity of the standard flat VAE decoder, which struggles to reconstruct high\-frequency details for 100 complex classes\.
### 4\.1Backward and Forward Transfer Analysis
To evaluate how sequence learning affects historical and future task performance, we analyze Backward Transfer \(BWT\) and Forward Transfer \(FWT\), as defined in\[[23](https://arxiv.org/html/2608.19514#bib.bib5)\]:
BWT=1T−1∑i=1T−1\(RT,i−Ri,i\),FWT=1T−1∑i=2T\(Ri−1,i−b¯i\)\\text\{BWT\}=\\frac\{1\}\{T\-1\}\\sum\_\{i=1\}^\{T\-1\}\(R\_\{T,i\}\-R\_\{i,i\}\),\\quad\\text\{FWT\}=\\frac\{1\}\{T\-1\}\\sum\_\{i=2\}^\{T\}\(R\_\{i\-1,i\}\-\\bar\{b\}\_\{i\}\)\(2\)
whereRT,iR\_\{T,i\}represents test accuracy on taskiiafter training on taskTT, andb¯i\\bar\{b\}\_\{i\}denotes random baseline performance for taskii\.
#### Backward Transfer Dynamics\.
Table[1](https://arxiv.org/html/2608.19514#S4.T1)demonstrates that 4MAS consistently minimises negative BWT compared to existing baselines\. On Split\-MNIST, Split\-Fashion\-MNIST, and Split\-CIFAR\-100, 4MAS achieves BWT scores of−1\.2%\-1\.2\\%,−10\.6%\-10\.6\\%, and−25\.8%\-25\.8\\%respectively, significantly outperforming competitive memory and replay methods \(B\-IR and GR\)\. 4MAS tracks closely with the offline Joint Training baseline \(e\.g\.,−25\.8%\-25\.8\\%vs\.−16\.2%\-16\.2\\%on CIFAR\-100\), confirming that our approach effectively freezes and preserves past decision boundaries during new class assimilation\.
#### Forward Transfer Limitations in Class\-IL\.
Across all methods,FWTremains near0\.0%0\.0\\%\. This behaviour is characteristic of Class\-IL benchmarks evaluated from scratch: without a shared pre\-trained feature extractor, feature representations learned on early tasks do not inherently transfer zero\-shot accuracy to orthogonal class boundaries in subsequent tasks\. Thus, performance superiority in 4MAS is driven almost entirely by backward stability rather than forward inductive bias\.
Table 1:Class\-IL evaluation across Split\-MNIST, Split\-Fashion\-MNIST, and Split\-CIFAR\-100 benchmarks\. Accuracy metrics report final task performance after learning all tasks\.
### 4\.2Sleep tuning
We evaluated sleep phase learning rates \(LRLR\) ranging from 0% to 200% of the awake phase rate \(Figure[5](https://arxiv.org/html/2608.19514#S4.F5)a\)\. On Split\-Fashion\-MNIST a reduced sleep rate of 5–10% \(≈2×10−5\\approx 2\\times 10^\{\-5\}\) performed best \(84\.9±0\.3%84\.9\\pm 0\.3\\%\), while removing sleep \(LR=0%LR=0\\%\) yielded74\.0±0\.59%74\.0\\pm 0\.59\\%\. Larger learning rates degraded performance, confirming that low sleep learning rates enable fine\-tuning on the contralateral representation without overwriting specialised features\.
Furthermore, average ensemble accuracy exceeded either isolated hemisphere\. This gain stems from effective confidence\-based routing between specialised hemispheres rather than standard ensemble variance reduction; indeed, without sleep\-phase consolidation, the ensemble fails to outperform the strongest individual hemisphere \(Section[4\.6](https://arxiv.org/html/2608.19514#S4.SS6)\)\. Hemispheric dominance shifted dynamically: wake training on new tasks increased RH dominance, while sleep consolidation restored LH dominance \(Figure[5](https://arxiv.org/html/2608.19514#S4.F5)b\)\. This shift aligns with Goldberg’s Novelty\-Routine hypothesis, reflecting a transition from initial RH\-driven processing of novel representations to consolidated, routinised LH schemas\.
\(a\)
\(b\)
Figure 5:\(a\) Performance variation with sleep phase learning rates \(LR\) as a percentage of awake phase LR, Split\-Fashion\-MNIST\. \(b\) Memory consolidation during sleep phase increased LH dominance, while new task learning during awake phase increased RH dominance; produced by lateralisation techniques \(class representation bias by age in LH and asymmetric generator temperatures\)
### 4\.3Lateralisation
Figure[6](https://arxiv.org/html/2608.19514#S4.F6)a shows that the LH accuracy decays slowly, maintaining stability, while the RH learns new tasks quickly but forgets faster, supporting the stability\-plasticity lateralisation described in the Novelty\-Routine hypothesis\[[9](https://arxiv.org/html/2608.19514#bib.bib32)\]\. Lateralising the generator temperature \(τ\\tau\) significantly improved performance \(Table[2](https://arxiv.org/html/2608.19514#S4.T2), Figure[6](https://arxiv.org/html/2608.19514#S4.F6)b\)\. Symmetrical temperatures \(τ=1\\tau=1orτ=2\\tau=2for both\) caused degraded performance or limited sleep benefits, whereas asymmetrical configurations \(τ=1\\tau=1for LH,τ∈\[2,4\]\\tau\\in\[2,4\]for RH\) showed consistent performance gains after each sleep phase\. This indicates that specialisation, elicited by asymmetrical parameterisation, provides an advantage and better use of total resources\.
Applying a task\-age class representation bias to the LH only \(biasing training toward older tasks\) improved the retention of earlier tasks by 15–26% \(Figure[7](https://arxiv.org/html/2608.19514#S4.F7)a\), allowing the ensemble to retain stability in LH while maintaining plasticity in RH\.
\(a\)
\(b\)
Figure 6:Fashion\-MNIST: \(a\) Hemispheric accuracy for each task\. \(b\)τ\\tau\-asymmetry results, with and without sleep training phase\.Table 2:LH and RH generator temperature vs Split\-Fashion\-MNIST accuracy\. Degraded performance observed for symmetrical temperatures\.
### 4\.4STM buffer selection
Evaluating CCS and LSCC selection mechanisms \(Table[3](https://arxiv.org/html/2608.19514#S4.T3)\) showed that storing moderate\-confidence samples \(∼50%\\sim 50\\%\) under CCS performed best, whereas selecting low\-confidence outliers led to VAE posterior collapse\. Storing latent space cluster centroids via K\-Means \(LSCC\) yielded the best and most consistent results across MNIST and Fashion\-MNIST tasks, indicating that the STM buffer is most effective when its primary role is grounding the latent space against representational drift rather than importing weakly\-learned outliers\. This aligns with neurobiological evidence showing that offline memory reactivation helps to preserve multiday representational stability\[[10](https://arxiv.org/html/2608.19514#bib.bib1)\]\.
The robust performance of the asymmetric threshold configuration \(L=0\.1,R=0\.5L=0\.1,R=0\.5\) on CIFAR\-100 is explained by a functional division of labour\. The left hemisphere, operating at a low generator temperature \(τ=1\\tau=1\), behaves as a stable anchor that preserves core, high\-confidence representations\. By setting a very conservative threshold \(L=0\.1L=0\.1\), we prevent representational drift during consolidation\. Conversely, the right hemisphere, operating at a high generator temperature \(τ=3\\tau=3\), acts as a flexible explorer\. Storing intermediate\-confidence boundary samples \(R=0\.5R=0\.5\) allows it to explore variations and refine task boundaries, leading to significantly enhanced ensemble consolidation\.
Confidence \- RH90%70%50%30%10%0%K\-MeansConfidence \- LH90%0\.75620\.76620\.76680\.76680\.75360\.75050\.765670%0\.76180\.77240\.77530\.77250\.76070\.75890\.779650%0\.76950\.77060\.77330\.76670\.76480\.75730\.777930%0\.77030\.77180\.77580\.76270\.75650\.72470\.779910%0\.76730\.77040\.76750\.75090\.73510\.7270\.77570%0\.75470\.77260\.76130\.74700\.72850\.72050\.7662K\-Means0\.77480\.77760\.77990\.77640\.76070\.75880\.776Table 3:Comparison of mechanisms for selecting memories for STM buffer storage\. Storing latent space centroids via K\-Means clustering produced the most consistent results on Split\-Fashion\-MNIST, whereas highly asymmetric confidence selection \(L=0\.1/R=0\.5L=0\.1/R=0\.5\) achieved peak performance on the more complex Split\-CIFAR\-100 benchmark\.\(a\)
\(b\)
Figure 7:\(a\) Biasing class representation by recency; weighting training heavily toward older classes significantly boosts early\-class accuracy with only minor performance degradation on recent classes\. \(b\) Effect of STM memory buffer size on accuracy; gains from larger buffers plateau after 200 samples, while also diminishing the relative impact of the sleep phase\.
### 4\.5Capacity and architectural scaling
To evaluate how model capacity influences continual learning performance, we systematically compared the parameter scaling behaviour of 4MAS against the unilateral B\-IR baseline across Split\-MNIST, Split\-Fashion\-MNIST, and Split\-CIFAR\-100 \(Figure[8](https://arxiv.org/html/2608.19514#S4.F8)\)\.
At lower parameter ranges \(e\.g\.,<30<30M parameters\), monolithic generative models demonstrate superior sample and parameter efficiency\. This is primarily because 4MAS splits its total parameter budget across two distinct hemispheric models \(LH and RH\) and requires sleep\-phase cross\-replay to consolidate knowledge, introducing an architectural capacity overhead\. When the overall parameter budget is highly constrained, the split\-hemisphere bottleneck limits the representation capacity of the individual generators\.
However, 4MAS demonstrates superior scalability as model capacity increases\. Unilateral networks typically suffer from severe representational drift and catastrophic interference when forced to represent a large number of conflicting class distributions in a single unified latent space\[[40](https://arxiv.org/html/2608.19514#bib.bib12)\]\. Consequently, performance of B\-IR \(and other unilateral models\) plateaus or degrades at larger scales\. In contrast, 4MAS’s bilateral hemispheric partitioning and stability\-plasticity division of labour mitigate representational drift, enabling monotonic scaling\. At larger parameter scales \(≥70\\geq 70M parameters\), 4MAS consistently outperforms B\-IR on the more complex Fashion\-MNIST benchmark and approaches parity on the CIFAR\-100 benchmark\.
\(a\)
\(b\)
\(c\)
Figure 8:Capacity scaling curves comparing our bilateral 4MAS architecture against the unilateral B\-IR baseline across \(a\) Split\-MNIST, \(b\) Split\-Fashion\-MNIST, and \(c\) Split\-CIFAR\-100\. The plots show final accuracy as a function of total model parameters \(in millions\)\.
### 4\.6Ablation studies
To evaluate the contribution of each component, we performed ablations on the STM buffer size, the sleep phase, and the dual\-hemisphere structure\. Varying the unilateral STM buffer size from 0 to 1,000 samples \(Figure[7](https://arxiv.org/html/2608.19514#S4.F7)b\) showed diminishing gains beyond 200 samples, improving Split\-Fashion\-MNIST accuracy from 73\.4% \(fully ablated STM\) to 81\.3%\. In the absence of a sleep phase, small buffer sizes severely degraded performance \(63\.2%63\.2\\%at size 0\), while larger buffers offset this loss, narrowing the sleep phase benefit to<1%<1\\%\.
Ablation comparisons \(Figure[9](https://arxiv.org/html/2608.19514#S4.F9)\) show that configurations including the sleep phase consistently perform best on both datasets\. Without sleep, the ensemble accuracy matches its single best\-performing hemisphere, confirming that sleep\-based cross\-replay is crucial for bilateral knowledge integration\. In particular, the comparative confidence levels of each hemisphere are aligned during sleep training, allowing for system accuracy to exceed either hemisphere’s individual accuracy\.
Figure 9:Ablation performance for Split\-MNIST and Split\-Fashion\-MNIST\. Configurations including the sleep phase consistently perform best on both datasets, where sleep informed hemispheric confidence levels lead to system accuracy exceeding individual hemisphere accuracies\.
## 5Limitations and future work
Generative models in this study were standard non\-convolutional VAEs, chosen to evaluate task\-agnostic macroarchitectures\. Future research should scale generators to convolutional VAEs, GANs, or diffusion models to handle more complex image distributions\. Additionally, regularisation mechanisms \(e\.g\., EWC or SI\) could be integrated in tandem with our replay structure to further boost stability, as demonstrated in hybrid models like B\-IR\[[39](https://arxiv.org/html/2608.19514#bib.bib28)\]\.
While we evaluated 4MAS up to a 50\-task Split\-CIFAR\-100 benchmark, autonomous agents in the real world require handling longer task horizons\. Subsequent work should test 4MAS under unbounded dynamic streams, explore diverse forms of hemispheric asymmetry, and investigate additional biological mechanisms, such as slow\-wave sleep modelling, to enhance persistent lifelong learning\.
## 6Conclusion
Lifelong learning in artificial networks remains constrained by catastrophic forgetting\. Addressing this challenge, this paper introduced 4MAS, a novel continual learning macroarchitecture derived from biological memory consolidation\. By modelling experience replay, bilateral sleep consolidation, and inter\-hemispheric lateralisation, 4MAS employs two asymmetric LTM/STM hemispheres that coordinate via a consolidation sleep phase\. Our empirical results on Split\-MNIST, Split\-Fashion\-MNIST, and CIFAR\-100 demonstrate competitive performance and robust knowledge retention against representational drift\. our analysis reveals that functional specialisation is essential to these gains: while symmetrical configurations degraded performance or restricted sleep benefits, asymmetrical parameterisation consistently produced post\-sleep performance enhancements, demonstrating that lateralised specialisation improves overall resource utilisation\.
This work illustrates how system\-level neurobiological structures can be abstracted to manage the stability\-plasticity trade\-off\. Moving beyond local weight\-level constraints, system\-level bilateral consolidation offers a promising path toward persistent and adaptable artificial intelligence\.
## References
- \[1\]R\. Aljundi, F\. Babiloni, M\. Elhoseiny, M\. Rohrbach, and T\. Tuytelaars\(2018\)Memory Aware Synapses: Learning what \(not\) to forget\.InProceedings of the European conference on computer vision \(ECCV\),pp\. 139–154\.External Links:[Link](https://openaccess.thecvf.com/content_ECCV_2018/html/Rahaf_Aljundi_Memory_Aware_Synapses_ECCV_2018_paper.html)Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1)\.
- \[2\]R\. Aljundi, E\. Belilovsky, T\. Tuytelaars, L\. Charlin, M\. Caccia, M\. Lin, and L\. Page\-Caccia\(2019\)Online Continual Learning with Maximal Interfered Retrieval\.Advances in Neural Information Processing Systems32\.External Links:[Link](https://proceedings.neurips.cc/paper/2019/hash/15825aee15eb335cc13f9b559f166ee8-Abstract.html)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p1.1)\.
- \[3\]Y\. Balaji, M\. Farajtabar, D\. Yin, A\. Mott, and A\. Li\(2020\)The Effectiveness of Memory Replay in Large Scale Continual Learning\.arXiv\(en\)\.External Links:[Link](http://arxiv.org/abs/2010.02418),[Document](https://dx.doi.org/10.48550/arXiv.2010.02418)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p2.1)\.
- \[4\]Z\. Chen, A\. Wuerkaixi, S\. Cui, H\. Li, D\. Li, J\. Zhang, B\. Han, G\. Niu, H\. Liu, Y\. Yang, S\. Yang, C\. Zhang, and T\. Ren\(2025\)Learning without Isolation: Pathway Protection for Continual Learning\.arXiv\(en\)\.Note:arXiv:2505\.18568 \[cs\]External Links:[Link](http://arxiv.org/abs/2505.18568),[Document](https://dx.doi.org/10.48550/arXiv.2505.18568)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p2.1)\.
- \[5\]S\. Corkin\(2002\)What’s new with the amnesic patient H\.M\.?\.Nature Reviews Neuroscience3\(2\),pp\. 153–160\(en\)\.External Links:ISSN 1471\-0048,[Link](https://www.nature.com/articles/nrn726),[Document](https://dx.doi.org/10.1038/nrn726)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[6\]J\. Donahue, Y\. Jia, O\. Vinyals, J\. Hoffman, N\. Zhang, E\. Tzeng, and T\. Darrell\(2013\)DeCAF: A Deep Convolutional Activation Feature for Generic Visual Recognition\.arXiv\.External Links:[Link](http://arxiv.org/abs/1310.1531),[Document](https://dx.doi.org/10.48550/arXiv.1310.1531)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p1.1)\.
- \[7\]M\. Ghosh, F\. Yang, S\. P\. Rice, V\. Hetrick, A\. L\. Gonzalez, D\. Siu, E\. K\.W\. Brennan, T\. T\. John, A\. M\. Ahrens, and O\. J\. Ahmed\(2022\)Running speed and REM sleep control two distinct modes of rapid interhemispheric communication\.Cell Reports40\(1\),pp\. 111028\(en\)\.External Links:ISSN 22111247,[Link](https://linkinghub.elsevier.com/retrieve/pii/S2211124722008221),[Document](https://dx.doi.org/10.1016/j.celrep.2022.111028)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[8\]B\. Giri, H\. Miyawaki, K\. Mizuseki, S\. Cheng, and K\. Diba\(2019\)Hippocampal Reactivation Extends for Several Hours Following Novel Experience\.The Journal of Neuroscience39\(5\),pp\. 866–875\(en\)\.External Links:ISSN 0270\-6474, 1529\-2401,[Link](https://www.jneurosci.org/lookup/doi/10.1523/JNEUROSCI.1950-18.2018),[Document](https://dx.doi.org/10.1523/JNEUROSCI.1950-18.2018)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[9\]E\. Goldberg\(2018\)A New Look at the Old Riddle : Novelty, Routines and the Evolution of the Bicameral Brain\.20\(3\) \(en\)\.Cited by:[§4\.3](https://arxiv.org/html/2608.19514#S4.SS3.p1.1)\.
- \[10\]A\. D\. Grosmark, F\. T\. Sparks, M\. J\. Davis, and A\. Losonczy\(2021\)Reactivation predicts the consolidation of unbiased long\-term cognitive maps\.Nature Neuroscience24\(11\),pp\. 1574–1585\(en\)\.External Links:ISSN 1546\-1726,[Link](https://www.nature.com/articles/s41593-021-00920-7),[Document](https://dx.doi.org/10.1038/s41593-021-00920-7)Cited by:[§4\.4](https://arxiv.org/html/2608.19514#S4.SS4.p1.1)\.
- \[11\]S\. Grossberg\(2013\)Adaptive Resonance Theory: How a brain learns to consciously attend, learn, and recognize a changing world\.Neural Networks37,pp\. 1–47\.External Links:ISSN 0893\-6080,[Link](https://www.sciencedirect.com/science/article/pii/S0893608012002584),[Document](https://dx.doi.org/10.1016/j.neunet.2012.09.017)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p1.1)\.
- \[12\]S\. Gutstein, O\. Fuentes, and E\. Freudenthal\(2008\)Knowledge transfer in deep convolutional neural nets\.International Journal on Artificial Intelligence Tools17\(03\),pp\. 555–567\.External Links:ISSN 0218\-2130,[Link](https://www.worldscientific.com/doi/abs/10.1142/S0218213008004059),[Document](https://dx.doi.org/10.1142/S0218213008004059)Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1)\.
- \[13\]T\. L\. Hayes, G\. P\. Krishnan, M\. Bazhenov, H\. T\. Siegelmann, T\. J\. Sejnowski, and C\. Kanan\(2021\)Replay in Deep Learning: Current Approaches and Missing Biological Elements\.Neural Computation,pp\. 1–44\(en\)\.External Links:ISSN 0899\-7667, 1530\-888X,[Link](https://direct.mit.edu/neco/article/doi/10.1162/neco_a_01433/107071/Replay-in-Deep-Learning-Current-Approaches-and),[Document](https://dx.doi.org/10.1162/neco%5Fa%5F01433)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[14\]R\. Kemker, M\. McClure, A\. Abitino, T\. Hayes, and C\. Kanan\(2017\)Measuring Catastrophic Forgetting in Neural Networks\.arXiv\.External Links:[Link](http://arxiv.org/abs/1708.02072),[Document](https://dx.doi.org/10.48550/arXiv.1708.02072)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p2.1)\.
- \[15\]V\. Khan, S\. Cygert, K\. Deja, T\. Trzcinski, and B\. Twardowski\(2024\)Looking Through the Past: Better Knowledge Retention for Generative Replay in Continual Learning\.IEEE Access12,pp\. 45309–45317\.External Links:ISSN 2169\-3536,[Link](https://ieeexplore.ieee.org/document/10474374),[Document](https://dx.doi.org/10.1109/ACCESS.2024.3379148)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p3.1)\.
- \[16\]J\. Kirkpatrick, R\. Pascanu, N\. Rabinowitz, J\. Veness, G\. Desjardins, A\. Rusu, K\. Milan, J\. Quan, T\. Ramalho, A\. Grabska\-Barwinska, D\. Hasabis, C\. Clopath, D\. Kumaran, and R\. Hadsell\(2017\)Overcoming catastrophic forgetting in neural networks\.\(en\)\.External Links:[Link](https://www.pnas.org/doi/10.1073/pnas.1611835114),[Document](https://dx.doi.org/10.1073/pnas.1611835114)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p2.1),[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1)\.
- \[17\]Y\. Kong, L\. Liu, H\. Chen, J\. Kacprzyk, and D\. Tao\(2024\)Overcoming Catastrophic Forgetting in Continual Learning by Exploring Eigenvalues of Hessian Matrix\.IEEE Transactions on Neural Networks and Learning Systems35\(11\),pp\. 16196–16210\.External Links:ISSN 2162\-2388,[Link](https://ieeexplore.ieee.org/document/10190202),[Document](https://dx.doi.org/10.1109/TNNLS.2023.3292359)Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1)\.
- \[18\]L\. F\. Koziol\(2014\)The Novelty\-Routinization Principle of Brain Organization\.InThe Myth of Executive Functioning: Missing Elements in Conceptualization, Evaluation, and Assessment,L\. F\. Koziol \(Ed\.\),pp\. 27–31\(en\)\.External Links:ISBN 978\-3\-319\-04477\-4,[Link](https://doi.org/10.1007/978-3-319-04477-4_8),[Document](https://dx.doi.org/10.1007/978-3-319-04477-4%5F8)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[19\]M\. D\. Lange, R\. Aljundi, M\. Masana, S\. Parisot, X\. Jia, A\. Leonardis, G\. Slabaugh, and T\. Tuytelaars\(2021\)A continual learning survey: Defying forgetting in classification tasks\.IEEE Transactions on Pattern Analysis and Machine Intelligence,pp\. 1–1\(en\)\.Note:arXiv:1909\.08383 \[cs\]External Links:ISSN 0162\-8828, 2160\-9292, 1939\-3539,[Link](http://arxiv.org/abs/1909.08383),[Document](https://dx.doi.org/10.1109/TPAMI.2021.3057446)Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p2.1)\.
- \[20\]Y\. Lecun, L\. Bottou, Y\. Bengio, and P\. Haffner\(1998\)Gradient\-based learning applied to document recognition\.Proceedings of the IEEE86\(11\),pp\. 2278–2324\.External Links:ISSN 1558\-2256,[Link](https://ieeexplore.ieee.org/document/726791/),[Document](https://dx.doi.org/10.1109/5.726791)Cited by:[§3\.1](https://arxiv.org/html/2608.19514#S3.SS1.p1.1)\.
- \[21\]X\. Li, B\. Tang, and H\. Li\(2024\)AdaER: An adaptive experience replay approach for continual lifelong learning\.Neurocomputing572,pp\. 127204\.External Links:ISSN 0925\-2312,[Link](https://www.sciencedirect.com/science/article/pii/S0925231223013279),[Document](https://dx.doi.org/10.1016/j.neucom.2023.127204)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p1.1),[§4](https://arxiv.org/html/2608.19514#S4.p1.1)\.
- \[22\]X\. Liu, C\. Wu, M\. Menta, L\. Herranz, B\. Raducanu, A\. D\. Bagdanov, S\. Jui, and J\. v\. d\. Weijer\(2020\)Generative Feature Replay For Class\-Incremental Learning\.arXiv\.External Links:[Link](http://arxiv.org/abs/2004.09199),[Document](https://dx.doi.org/10.48550/arXiv.2004.09199)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p3.1)\.
- \[23\]D\. Lopez\-Paz and M\. A\. Ranzato\(2017\)Gradient Episodic Memory for Continual Learning\.Advances in Neural Information Processing Systems30\.External Links:[Link](https://proceedings.neurips.cc/paper/2017/hash/f87522788a2be2d171666752f97ddebb-Abstract.html)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p1.1),[§4\.1](https://arxiv.org/html/2608.19514#S4.SS1.p1.1)\.
- \[24\]M\. McCloskey and N\. J\. Cohen\(1989\)Catastrophic Interference in Connectionist Networks: The Sequential Learning Problem\.InPsychology of Learning and Motivation,G\. H\. Bower \(Ed\.\),Vol\.24,pp\. 109–165\.External Links:[Link](https://www.sciencedirect.com/science/article/pii/S0079742108605368),[Document](https://dx.doi.org/10.1016/S0079-7421%2808%2960536-8)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p1.1)\.
- \[25\]S\. I\. Mirzadeh, M\. Farajtabar, R\. Pascanu, and H\. Ghasemzadeh\(2020\)Understanding the Role of Training Regimes in Continual Learning\.Advances in Neural Information Processing Systems33,pp\. 7308–7320\(en\)\.External Links:[Link](https://proceedings.neurips.cc/paper/2020/hash/518a38cc9a0173d0b2dc088166981cf8-Abstract.html?ref=https://githubhelp.com)Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1)\.
- \[26\]N\. Niethard, M\. Hasegawa, T\. Itokazu, C\. N\. Oyanedel, J\. Born, and T\. R\. Sato\(2016\)Sleep\-Stage\-Specific Regulation of Cortical Excitation and Inhibition\.Current Biology26\(20\),pp\. 2739–2749\(English\)\.External Links:ISSN 0960\-9822,[Link](https://www.cell.com/current-biology/abstract/S0960-9822(16)30979-4),[Document](https://dx.doi.org/10.1016/j.cub.2016.08.035)Cited by:[§3\.2](https://arxiv.org/html/2608.19514#S3.SS2.p2.1)\.
- \[27\]N\. Omi, S\. Sen, and A\. Farhadi\(2025\)Load Balancing Mixture of Experts with Similarity Preserving Routers\.arXiv\(en\)\.Note:arXiv:2506\.14038 \[cs\]External Links:[Link](http://arxiv.org/abs/2506.14038),[Document](https://dx.doi.org/10.48550/arXiv.2506.14038)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p2.1)\.
- \[28\]C\. S\. Prat, J\. Gallée, and B\. L\. Yamasaki\(2023\)Getting language right: Relating individual differences in right hemisphere contributions to language learning and relearning\.Brain and Language239,pp\. 105242\.External Links:ISSN 0093\-934X,[Link](https://www.sciencedirect.com/science/article/pii/S0093934X23000214),[Document](https://dx.doi.org/10.1016/j.bandl.2023.105242)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[29\]A\. S\. Razavian, H\. Azizpour, J\. Sullivan, and S\. Carlsson\(2014\)CNN Features off\-the\-shelf: an Astounding Baseline for Recognition\.arXiv\.External Links:[Link](http://arxiv.org/abs/1403.6382),[Document](https://dx.doi.org/10.48550/arXiv.1403.6382)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p1.1)\.
- \[30\]E\. T\. Rolls, X\. Yan, G\. Deco, Y\. Zhang, V\. Jousmaki, and J\. Feng\(2024\)A ventromedial visual cortical ‘Where’ stream to the human hippocampus for spatial scenes revealed with magnetoencephalography\.Communications Biology7\(1\),pp\. 1–16\(en\)\.External Links:ISSN 2399\-3642,[Link](https://www.nature.com/articles/s42003-024-06719-z),[Document](https://dx.doi.org/10.1038/s42003-024-06719-z)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p3.1)\.
- \[31\]A\. A\. Rusu, N\. C\. Rabinowitz, G\. Desjardins, H\. Soyer, J\. Kirkpatrick, K\. Kavukcuoglu, R\. Pascanu, and R\. Hadsell\(2022\)Progressive Neural Networks\.arXiv\.External Links:[Link](http://arxiv.org/abs/1606.04671),[Document](https://dx.doi.org/10.48550/arXiv.1606.04671)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p1.1)\.
- \[32\]N\. Shazeer, A\. Mirhoseini, K\. Maziarz, A\. Davis, Q\. Le, G\. Hinton, and J\. Dean\(2017\)Outrageously Large Neural Networks: The Sparsely\-Gated Mixture\-of\-Experts Layer\.arXiv\.External Links:[Link](http://arxiv.org/abs/1701.06538),[Document](https://dx.doi.org/10.48550/arXiv.1701.06538)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p2.1)\.
- \[33\]G\. Shi, J\. Chen, W\. Zhang, L\. Zhan, and X\. Wu\(2021\)Overcoming Catastrophic Forgetting in Incremental Few\-Shot Learning by Finding Flat Minima\.Advances in neural information processing systems 34\(en\)\.Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1),[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p2.1)\.
- \[34\]H\. Shin, J\. K\. Lee, J\. Kim, and J\. Kim\(2017\)Continual Learning with Deep Generative Replay\.arXiv\(en\)\.External Links:[Link](http://arxiv.org/abs/1705.08690),[Document](https://dx.doi.org/10.48550/arXiv.1705.08690)Cited by:[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p3.1)\.
- \[35\]P\. Skierś and K\. Deja\(2025\)Joint Diffusion models in Continual Learning\.arXiv\(en\)\.External Links:[Link](http://arxiv.org/abs/2411.08224),[Document](https://dx.doi.org/10.48550/arXiv.2411.08224)Cited by:[§3\.3](https://arxiv.org/html/2608.19514#S3.SS3.p1.2)\.
- \[36\]G\. Sokar, D\. C\. Mocanu, and M\. Pechenizkiy\(2021\)SpaceNet: Make Free Space For Continual Learning\.Neurocomputing439,pp\. 1–11\(en\)\.Note:arXiv:2007\.07617 \[cs\]External Links:ISSN 09252312,[Link](http://arxiv.org/abs/2007.07617),[Document](https://dx.doi.org/10.1016/j.neucom.2021.01.078)Cited by:[§3\.1](https://arxiv.org/html/2608.19514#S3.SS1.p1.1)\.
- \[37\]M\. Tamaki, J\. W\. Bang, T\. Watanabe, and Y\. Sasaki\(2016\)Night Watch in One Brain Hemisphere during Sleep Associated with the First\-Night Effect in Humans\.Current Biology26\(9\),pp\. 1190–1194\(en\)\.External Links:ISSN 09609822,[Link](https://linkinghub.elsevier.com/retrieve/pii/S0960982216301749),[Document](https://dx.doi.org/10.1016/j.cub.2016.02.063)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p3.1)\.
- \[38\]A\. V\. Terekhov, G\. Montone, and J\. K\. O’Regan\(2015\)Knowledge Transfer in Deep Block\-Modular Neural Networks\.InBiomimetic and Biohybrid Systems,S\. P\. Wilson, P\. F\.M\.J\. Verschure, A\. Mura, and T\. J\. Prescott \(Eds\.\),Cham,pp\. 268–279\(en\)\.External Links:ISBN 978\-3\-319\-22979\-9,[Document](https://dx.doi.org/10.1007/978-3-319-22979-9%5F27)Cited by:[§2\.2](https://arxiv.org/html/2608.19514#S2.SS2.p1.1)\.
- \[39\]G\. M\. van de Ven, H\. T\. Siegelmann, and A\. S\. Tolias\(2020\)Brain\-inspired replay for continual learning with artificial neural networks\.Nature Communications11\(1\),pp\. 4069\(en\)\.External Links:ISSN 2041\-1723,[Link](https://www.nature.com/articles/s41467-020-17866-2),[Document](https://dx.doi.org/10.1038/s41467-020-17866-2)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p4.1),[§2\.3](https://arxiv.org/html/2608.19514#S2.SS3.p3.1),[§5](https://arxiv.org/html/2608.19514#S5.p1.1)\.
- \[40\]G\. M\. Van De Ven, T\. Tuytelaars, and A\. S\. Tolias\(2022\)Three types of incremental learning\.Nature Machine Intelligence4\(12\),pp\. 1185–1197\(en\)\.External Links:ISSN 2522\-5839,[Link](https://www.nature.com/articles/s42256-022-00568-3),[Document](https://dx.doi.org/10.1038/s42256-022-00568-3)Cited by:[§3\.1](https://arxiv.org/html/2608.19514#S3.SS1.p1.1),[§4\.5](https://arxiv.org/html/2608.19514#S4.SS5.p3.1),[§4](https://arxiv.org/html/2608.19514#S4.p1.1)\.
- \[41\]G\. M\. v\. d\. Ven and A\. S\. Tolias\(2019\)Three scenarios for continual learning\.arXiv\(en\)\.External Links:[Link](http://arxiv.org/abs/1904.07734),[Document](https://dx.doi.org/10.48550/arXiv.1904.07734)Cited by:[§2](https://arxiv.org/html/2608.19514#S2.p1.1)\.
- \[42\]B\. Wickramasinghe, G\. Saha, and K\. Roy\(2024\)Continual Learning: A Review of Techniques, Challenges, and Future Directions\.IEEE Transactions on Artificial Intelligence5\(6\),pp\. 2526–2546\.External Links:ISSN 2691\-4581,[Link](https://ieeexplore.ieee.org/document/10341211),[Document](https://dx.doi.org/10.1109/TAI.2023.3339091)Cited by:[§1](https://arxiv.org/html/2608.19514#S1.p1.1)\.
- \[43\]H\. Xiao, K\. Rasul, and R\. Vollgraf\(2017\)Fashion\-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms\.arXiv\(en\)\.External Links:[Link](http://arxiv.org/abs/1708.07747),[Document](https://dx.doi.org/10.48550/arXiv.1708.07747)Cited by:[§3\.1](https://arxiv.org/html/2608.19514#S3.SS1.p1.1)\.
- \[44\]F\. Zenke, B\. Poole, and S\. Ganguli\(2017\)Continual Learning Through Synaptic Intelligence\.Proceedings of machine learning research\(en\)\.Cited by:[§2\.1](https://arxiv.org/html/2608.19514#S2.SS1.p1.1)\.
- \[45\]F\. Zhou, T\. Zhao, L\. V\. Nguyen, and Z\. Yao\(2024\)A Parallel Gumbel\-Softmax VAE Framework with Performance\-Based Tuning\.InECAI 2024,pp\. 1784–1791\(en\)\.External Links:[Link](https://ebooks.iospress.nl/doi/10.3233/FAIA240689),[Document](https://dx.doi.org/10.3233/FAIA240689)Cited by:[§3\.3](https://arxiv.org/html/2608.19514#S3.SS3.p2.1)\.
## Appendix AHyperparameter Searches and Optimisation
This appendix provides detail on the hyperparameter tuning sweeps conducted to optimise the 4MAS architecture across the three benchmarks: Split\-MNIST, Split\-Fashion\-MNIST, and Split\-CIFAR\-100\. These searches cover the grid\-search sweeps logged in the main project database \(comprising 4,328 unique trials\) as well as the sequential Bayesian optimisation sweeps conducted using the Optuna framework\. Hyperparameter sweeps reported in this Appendix are single runs\.
### A\.1Split\-MNIST and Split\-Fashion\-MNIST Grid Searches
For both Split\-MNIST and Split\-Fashion\-MNIST, we ran systematic parameter grids to evaluate the interaction of model size, latent representation dimensions, and generator capacity under our bilateral sleep\-consolidation model\.
The range of hyperparameters explored in these grid searches is summarised in Table[4](https://arxiv.org/html/2608.19514#A1.T4)\.
Table 4:Hyperparameter search space for Split\-MNIST and Split\-Fashion\-MNIST\.Large model capacity paired with a larger VAE dimension and low latent dimensionality \(16\) consistently yielded optimal Class\-IL accuracy by preserving high\-fidelity reconstructions without latent\-space drift\.
### A\.2Split\-CIFAR\-100 Optuna Optimisation Sweeps
Due to the increased complexity of CIFAR\-100, we executed 14 distinct optimisation sweeps using the Optuna framework, focusing on architectural changes, pre\-training steps, and latent alignment strategies\. The best\-performing trial configuration for each sweep is documented in Table[5](https://arxiv.org/html/2608.19514#A1.T5)\.
Table 5:Best configurations and parameters across Split\-CIFAR\-100 Optuna sweeps\.
### A\.3Split\-CIFAR\-100 Architectural Grid Search
To clarify the contribution of supervised contrastive loss, left\-hemisphere parameter freezing, and bilateral sleep\-consolidation \(BSS\) active gating, we conducted a 16\-configuration grid search on Split\-CIFAR\-100\. The complete experimental results of this grid search are summarised in Table[6](https://arxiv.org/html/2608.19514#A1.T6)\.
Table 6:Grid search performance over generative model types, supervised contrastive \(SupCon\) weights, left\-hemisphere parameter freezing, and BSS active gating\.
### A\.4Split\-CIFAR\-100 Ablation and Asymmetry Trials
To systematically investigate the roles of comparative confidence selection \(CCS\), latent space cluster centroids \(LSCC\), pre\-training tasks \(1 vs\. 5\), and synaptic intelligence \(SI\) regularisation on the Split\-CIFAR\-100 benchmark, we evaluated several design configurations\. The results are summarised in Table[7](https://arxiv.org/html/2608.19514#A1.T7)\.
Table 7:Split\-CIFAR\-100 performance across selection strategies \(CCS, LSCC, Hybrid\), pre\-training task horizons, and local SI regularisation\.Selection Strategy \(LH / RH\)Left Centroid \(LL\)Right Centroid \(RR\)Pre\-trainingTasksSynapticIntelligence \(SI\)Class\-ILAcc \(%\)CCS \(Symmetric Baseline\)0\.50\.51No21\.38CCS \(Symmetric\)0\.50\.52No25\.34CCS \(Symmetric\)0\.50\.53No29\.18CCS \(Symmetric\)0\.50\.54No30\.46CCS \(Symmetric\)0\.50\.55No29\.01CCS \(Left\-Skewed\)0\.70\.31No21\.78CCS \(Right\-Skewed\)0\.30\.71No23\.80CCS \(Asymmetric Champion\)0\.10\.51No25\.97CCS \(Asymmetric Low\)0\.10\.11No22\.96CCS \(Asymmetric High\)0\.20\.81No22\.34CCS \(Sweeter Spot\)0\.050\.551No25\.63CCS \(Asymmetric \+ LH SI\)0\.10\.51Yes16\.27LSCC \(Symmetric K\-Means\)K\-MeansK\-Means1No8\.79LSCC \(Symmetric K\-Means\)K\-MeansK\-Means5No10\.39Hybrid \(LSCC / CCS Asymmetric\)K\-Means0\.51No13\.20Hybrid \(LSCC / CCS Asymmetric\)K\-Means0\.52No17\.58Hybrid \(LSCC / CCS Asymmetric\)K\-Means0\.53No20\.09Hybrid \(LSCC / CCS Asymmetric\)K\-Means0\.54No18\.72Hybrid \(LSCC / CCS Asymmetric\)K\-Means0\.55No22\.75Hybrid \(LSCC / CCS, Seed 1001\)K\-Means0\.55No20\.14
### A\.5Split\-CIFAR\-100 Architecture Capacity and Parameter Scaling
To investigate the capacity limits and scaling robustness of 4MAS relative to B\-IR, we evaluated both architectures across a range of total parameter capacities \(from 14M to 140M parameters\)\. The comparative results are summarized in Table[8](https://arxiv.org/html/2608.19514#A1.T8)\.
Table 8:Split\-CIFAR\-100 Class\-IL performance across parameter capacity scales\.As shown in Table[8](https://arxiv.org/html/2608.19514#A1.T8), when properly initialized with pre\-trained convolutional features \(using the ‘–pre\-convE‘ flag\), the B\-IR baseline scales robustly and monotonically with parameter capacity, rising from21\.0%21\.0\\%\(13\.3M scale\) to27\.85%27\.85\\%\(143\.8M scale\)\. Similarly, 4MAS scales monotonically and robustly across all parameter scales, rising from13\.16%13\.16\\%\(14M scale\) to18\.41%18\.41\\%\(35M scale\),24\.45±0\.32%24\.45\\pm 0\.32\\%\(70M scale\), and achieving a peak accuracy of29\.26%at 130\.8M capacity \(fb=1\.0, mb=20\.0, bg=0\.90\) under strict single\-task pre\-training constraints, outperforming the unilateral B\-IR baseline as well as the 147\.8M v5 configuration \(29\.01%29\.01\\%\) which utilized multi\-task pre\-training\. This breakthrough is achieved by resolving representation anchoring bottlenecks at scale via an expanded rehearsal buffer \(stmsize= 4000\)\. Importantly, 4MAS maintains significantly lower forgetting \(25\.8±1\.2%25\.8\\pm 1\.2\\%at 70M scale and23\.4%23\.4\\%at 140M scale\) than B\-IR \(52\.82±1\.97%52\.82\\pm 1\.97\\%and52\.92%52\.92\\%\), verifying that bilateral sleep consolidation consistently provides superior retention of past task knowledge across all capacity scales\.
### A\.6VAE Hyperparameter Seed Replications and Task Trajectories
To verify the statistical consistency and trajectory stability of top\-performing VAE hyperparameter configurations and Quality\-Gated rehearsal regimes, multiple random seed replications were evaluated across all 10 tasks on Split\-CIFAR\-100\. Figure[10](https://arxiv.org/html/2608.19514#A1.F10)illustrates the post\-REM joint accuracy trajectory as a function of class scale \(10 to 100 classes\) with standard deviation error bars\.
Figure 10:Continual learning post\-REM accuracy trajectories across class scale \(10 to 100 classes\) for top VAE configurations and Quality\-Gated replay regimes, showing mean performance and standard deviation error bars across random seeds\.Similar Articles
The Art of Not Forgetting A Local Learning Architecture for Continual Learning
This paper introduces CMP (Cognitive Memory Primitive), a continual-learning architecture that uses sparse relational codes and local learning to reduce catastrophic forgetting, demonstrating better backward transfer than a Transformer with EWC on a byte-level language modeling protocol.
@yoheinakajima: https://x.com/yoheinakajima/status/2081741659260477666
This thread explores how the brain's dual memory systems (hippocampus and neocortex) offer lessons for building long-running AI agents, arguing that agents need a fast episodic capture and slow consolidation mechanism to avoid catastrophic interference, rather than relying solely on frozen models with temporary scaffolding.
@dair_ai: // Memory as a Model // The paper augments any LLM with a separate trained memory model that stores, retrieves, and int…
MeMo introduces a modular memory model that augments any LLM to store, retrieve, and integrate new knowledge without retraining or catastrophic forgetting. It outperforms RAG-based methods on benchmarks like BrowseComp-Plus, NarrativeQA, and MuSiQue.
SuperLocalMemory V3.3: The Living Brain -- Biologically-Inspired Forgetting, Cognitive Quantization, and Multi-Channel Retrieval for Zero-LLM Agent Memory Systems
SuperLocalMemory V3.3 introduces a unified memory and learning system for AI agents with biologically-inspired forgetting, multi-channel retrieval, and P2P mesh coordination. The system achieves 74.8% on LoCoMo benchmarks and features triple-stream learning, lifecycle management, and EU AI Act compliance.
MemLens: Benchmarking Multimodal Long-Term Memory in Large Vision-Language Models
MemLens is a new benchmark for evaluating memory capabilities in large vision-language models through multi-session conversations. It compares long-context and memory-augmented approaches, revealing limitations in both and motivating hybrid architectures.