Skip to main content

Can Post-Training Adaptation Replace Continual Learning? Evidence from EEG Emotion Recognition

K. Ghamati & A. Zaraki • ICSR 2026 (SS03) • University of Hertfordshire

Accepted at ICSR 2026 · Special Session SS03
Khashayar Ghamati & Abolfazl Zaraki
Robotics Research Group, University of Hertfordshire, UK

We tried to give a frozen Large Language Model an episodic memory of a user's brain activity, hoping that accumulating experience across sessions would let it recognise their emotions better over time. Instead, accuracy collapsed. This paper investigates why — and argues that the collapse points to a fundamental, often-missed distinction between continual learning (which updates weights) and post-training adaptation (which does not).

Venue ICSR 2026 (SS03)
Publisher Springer LNCS
Dataset NeuroSense (4-ch Muse EEG)
Model Claude Haiku 4.5 (frozen)
Task 4-class VAD quadrant
Finding 40% → 12% (p = 0.002)

The result is both a cautionary empirical finding for builders of adaptive LLM-based HRI systems and a conceptual separator between two ideas the field frequently treats as interchangeable. The sections below walk through the motivating question, the architecture of our Continual In-Context Learning framework, the experimental design, and the context-pollution mechanism that drives the failure — and what each of these means for deploying adaptive AI on social robots.

1The Central Question

Emotion recognition from physiological signals is a foundational capability for socially intelligent robots. EEG provides a direct, non-invasive measure of neural activity through spectral power distributions and hemispheric asymmetries, and consumer-grade headbands such as the Muse have made brain-computer interfaces accessible for everyday HRI. In our earlier Personalised LLM (PLLM) framework, we showed that a pre-trained LLM can interpret EEG spectral features and classify emotional state when prompted with a prior session's results — but that work only held one session in memory, used static prompt engineering, and carried all of its reasoning through a single monolithic prompt.

Two limitations followed naturally. First, a single-session context discards the longitudinal information that makes personalisation meaningful: a user's neural signature for “calm” is a property of many sessions, not one. Second, a monolithic prompt blurs distinct reasoning steps (signal quality assessment, classification, memory consolidation) that really ought to be addressed by specialised components. These limitations sit at the heart of a broader question currently unresolved in the social-robotics and LLM communities:

Can post-training adaptation — manipulating only the context of a frozen model — substitute for parameter-level continual learning in practical deployment?

The appeal of saying “yes” is obvious: no gradient computation, no training infrastructure, immediate applicability to any hosted LLM. The worry is equally clear: without parameter updates, the model cannot truly learn from its experience — it can only see more of it. Whether “seeing more” is enough is an empirical question, and this paper answers it with a controlled comparison on a task where the ground truth is slippery enough for any optimistic assumption to break.

2Two Paradigms, Often Conflated

Before describing the system, it helps to pin down the two paradigms we are comparing. Continual learning modifies a model's internal parameters in response to new experience. When a continual learner encounters a new user's EEG patterns, gradient-based updates adjust its weights so that subsequent predictions draw on genuinely updated representations. The canonical difficulty is catastrophic forgetting: learning new patterns can overwrite previously encoded knowledge. Mitigations such as Elastic Weight Consolidation and experience replay are well-studied; when continual learning works, improvement is robust because parameters have been shaped by ground-truth signals.

Post-training adaptation is a structurally different thing. Parameters stay frozen; all adaptation happens through the input context at inference time. In-context learning (ICL), chain-of-thought prompting, and tool-augmented agents all fall under this umbrella. The attractive consequence is that any capable pre-trained LLM becomes usable on new tasks without retraining. The subtle cost is that the model has no mechanism to verify that its own accumulated context is reliable: unless an external signal intervenes, the model treats its earlier outputs with the same authority as the neuroscientific guidelines baked into the system prompt. This distinction sounds philosophical; in our experiments, it becomes sharply empirical.

Working Definitions

Continual learning. Parameter-level updates from new experience. Challenge: catastrophic forgetting. Guarantee: correct patterns can be encoded into the network when supervision is available.

Post-training adaptation. Behaviour changes purely through input context; parameters never move. Challenge: no intrinsic mechanism to detect unreliable context. Guarantee: none — context quality must be managed externally.

3System Architecture

To test post-training adaptation in its strongest continual form, we designed a framework that deliberately isolates context manipulation as the sole mechanism of adaptation. Anthropic's Claude Haiku 4.5 acts as the reasoning backbone with frozen parameters throughout every experiment. Any change in classification behaviour across conditions is therefore attributable solely to what enters the context window — not to weight updates. The system is organised into four layers (Fig. 1): a Data Layer, a Skills Layer, a Memory Layer, and a Pipeline Layer that orchestrates the three.

Four-layer architecture: Data Layer (BIDS EEG loader, Welch features, natural-language representation), Skills Layer (EEG Analysis, Emotion Classifier, Memory Consolidation on Claude), Memory Layer (episodic memory store and knowledge consolidator), and Pipeline Layer (three experimental conditions).

Figure 1. Four-layer architecture. EEG data are converted to spectral features and text, then processed by three LLM skills orchestrated under three experimental conditions. The model's parameters are frozen throughout.

3.1 Data Layer — From Raw EEG to Natural Language

The Data Layer handles loading of 4-channel Muse EEG (AF7, TP9, TP10, AF8 at 256 Hz) from BIDS-format datasets. Using Welch's method with 2-s Hann windows and 50% overlap, we compute absolute band powers for delta (0.5–4 Hz), theta (4–8 Hz), alpha (8–13 Hz), beta (13–30 Hz), and gamma (30–100 Hz) by trapezoidal integration of the power spectral density, along with relative band powers normalised by total power per channel. Frontal asymmetry is computed as FAI = ln(PAF8) − ln(PAF7) per band, where positive values indicate greater right-frontal activation associated with withdrawal motivation and negative valence. Time-domain statistics (mean and standard deviation of amplitude per channel) round out the feature set.

Critically, these features are then converted into a structured natural-language representation of roughly 1,900 characters that includes interpretive labels (for example, “alpha: 12.5% of total — moderate”). This linguistic encoding is the bridge that makes post-training adaptation possible at all: rather than fine-tuning the model on raw EEG tensors, we translate the signal into the domain where a frozen LLM's pre-trained reasoning capabilities can be applied directly. It is also the layer at which the model's biases become visible: the Muse's characteristic delta dominance under movement artefacts is carried through to the text the model reads, and the prompt must explicitly instruct the model to discount it.

3.2 Skills Layer — Three Specialised LLM Skills

We decompose the reasoning into three composable skills, each implementing a common Skill interface and producing JSON-schema-validated output:

Emotion Classifier
Receives EEG features, stimulus information, and optional participant history. Returns a structured classification: the VAD quadrant (HAHV, HALV, LAHV, LALV), continuous valence and arousal in [−1, 1], a confidence estimate, and natural-language reasoning. Its prompt includes neuroscientific guidelines, Muse-specific calibration advice, and the quadrant boundary definitions.
EEG Analysis
Provides signal-level interpretation: dominant frequency band, inferred cognitive state, artefact detection, and a quality score. Its output can inform the classifier's downstream reasoning when signal quality is a concern.
Memory Consolidation
Compresses multiple episodic memories into a concise participant profile — an emotional-tendency distribution, recurring patterns, and key observations — so that longitudinal context fits within a finite context window.

3.3 Memory Layer — Episodic Store and Consolidation

The Memory Layer maintains per-participant JSON ParticipantMemory objects containing a list of EpisodeEntry records (session ID, classified emotion, confidence, features summary, reasoning, stimulus), a running emotional-profile distribution, and a consolidated summary. Memory is formatted back into natural language and injected into the classification prompt, including the consolidated summary and the most recent episodes. Every 5 sessions, the Memory Consolidation Skill runs: it compresses the accumulated episodes into a new summary, preventing context overflow and (in principle) lifting recurring longitudinal patterns into a compact form the classifier can reason over.

3.4 Pipeline Layer — The Experimental Conditions

Finally, the Pipeline Layer defines how skills and memory interact under each experimental condition. By varying only the context given to the frozen classifier — none, one prior session, or the full consolidated history — we obtain a clean experimental handle on post-training adaptation as a replacement for continual learning.

Frozen by Design

At no point are the LLM's parameters updated. All three conditions share identical pre-trained weights and differ only in context. This makes context the sole independent variable in the experiment — the cleanest possible empirical test of context-only adaptation.

4Experimental Design

4.1 Dataset

We use the NeuroSense dataset, a publicly available EEG corpus for emotion recognition. It comprises 30 university students (16 male, 14 female, aged 18–35), each completing 40 sessions in which they listen to a music stimulus. Two sessions are corrupted and excluded. EEG is acquired using the Muse consumer headband with 4 channels (AF7, TP9, TP10, AF8) at 256 Hz. Each stimulus carries crowd-sourced valence and arousal ratings on a 1–9 scale, mapped to VAD quadrants around a 5.0 midpoint; the dataset is approximately balanced across HAHV (299), HALV (300), LAHV (299), and LALV (300).

4.2 Three Conditions

A — Zero-Shot
No participant context. Each session is classified independently using only EEG features plus neuroscientific guidelines. Tests the frozen model's raw biosignal reasoning capability.
B — Single-Session ICL
Only the immediately preceding session's classification (quadrant, confidence, reasoning) is provided as context. Replicates the prior PLLM approach with minimal post-training memory.
C — Continual ICL
Full episodic memory with periodic consolidation — the classifier receives the consolidated profile and recent episode history. The post-training analogue of continual learning.

For all three conditions the first 5 sessions per participant build context and the remaining sessions are used for evaluation (n = 50 evaluation sessions across 10 participants). Chance level on the 4-class quadrant task is 25%.

4.3 Metrics

We report accuracy, F1 score (macro and weighted), Cohen's κ, and Matthews Correlation Coefficient (MCC) with 95% bootstrap confidence intervals (n = 10,000 resamples), plus per-class F1 for each VAD quadrant. Statistical comparison uses McNemar's test for paired classifier comparison and the Wilcoxon signed-rank test for per-participant accuracy differences. We additionally compute continual-learning metrics — retention rate and forward transfer — to make the comparison to the continual-learning literature direct.

5Results

40.0%
Zero-Shot Accuracy
32.0%
Single-Session ICL
12.0%
Continual ICL
p = 0.002
McNemar (Zero-Shot vs Continual ICL)

5.1 LLMs as Biosignal Reasoners (Zero-Shot)

The Zero-Shot condition — in which the LLM receives no participant-specific context whatsoever — achieves 40.0% accuracy on this 4-class task, substantially above the 25% chance level. This demonstrates that a frozen LLM can meaningfully interpret EEG spectral features when given appropriate neuroscientific guidelines through prompt engineering: the model leverages frontal asymmetry patterns, relative band power distributions, and stimulus context to make above-chance classifications. This extends our prior PLLM work to a more rigorous comparative evaluation and establishes an important baseline: the frozen model possesses genuine — if limited — biosignal reasoning capabilities. The question is then whether post-training context accumulation can build on that foundation.

Table 1. Classification performance across conditions (4-class, chance = 25%).

Condition Accuracy 95% CI F1 Macro κ MCC
Zero-Shot 0.400 [0.260, 0.540] 0.263 0.194 0.241
Single-Session ICL 0.320 [0.200, 0.440] 0.205 0.096 0.122
Continual ICL 0.120 [0.040, 0.220] 0.105 0.043 0.073

Best values in bold. 95% CIs via bootstrap (n = 10,000). McNemar (Zero-Shot vs Continual ICL): χ² = 9.39, p = 0.002.

5.2 Per-Class Performance

Per-class analysis exposes an uneven competence. All three conditions score F1 = 0 on the high-arousal quadrants (HAHV, HALV); correct predictions concentrate entirely in the low-arousal quadrants. This systematic failure on high-arousal classes is attributable to the Muse headband's characteristic delta dominance — movement artefacts inflate delta band power to 47–66% of total power, and the prompt must explicitly instruct the model to discount this dominance rather than interpret it as a marker of low arousal. The model evidently learns to recognise this low-arousal signature but struggles to distinguish genuine high arousal (beta/gamma spikes) from artefactual noise.

Table 2. Per-class F1 for each VAD quadrant.

Condition HAHV HALV LAHV LALV
Zero-Shot0.0000.0000.5240.529
Single-Session ICL0.0000.0000.5220.296
Continual ICL0.0000.0000.1250.296

5.3 Per-Participant Variation

Per-participant analysis reveals substantial individual variation, with Zero-Shot accuracy ranging from 0% to 80% across participants. This spread reflects differences in EEG signal quality driven by electrode-skin impedance variability, the distinctiveness of each participant's neural emotional signatures, and the specific composition of quadrant labels within each participant's evaluation sessions — a finding consistent with traditional EEG-based emotion recognition literature. Participants for whom Zero-Shot performs well tend to have clearer spectral differentiation between emotional states, while those with noisier or more ambiguous signals approach chance-level performance regardless of condition.

6Context Pollution: When Memory Hurts

The most counter-intuitive finding — and the one that makes this paper interesting — is that both ICL conditions perform below the zero-shot baseline. Single-Session ICL drops to 32.0% and Continual ICL falls to just 12.0%, below the 25% chance level. McNemar's test confirms that the Zero-Shot vs.\ Continual ICL difference is statistically significant (χ² = 9.39, p = 0.002), while the Zero-Shot vs.\ Single-Session ICL difference is not (p = 0.502). The Wilcoxon signed-rank test on per-participant accuracies yields a borderline p = 0.055 for Zero-Shot vs.\ Continual ICL, consistent with the limited statistical power of 10 participants.

The model's own incorrect early classifications, fed back as context, create a self-reinforcing error cascade.

6.1 The Mechanism, Step by Step

We term this failure mode context pollution. It unfolds in four steps. First, during the context-building phase (sessions 1–5), the model classifies each session using only EEG features — and, given the inherent difficulty of consumer-grade EEG interpretation, frequently gets them wrong. Second, these predictions, together with their erroneous reasoning, are stored in the episodic memory and injected into prompts for subsequent classifications. Third, the model anchors on this accumulated context, interpreting new EEG data through the lens of prior (wrong) conclusions rather than reasoning independently from the features. Fourth, because nothing in the loop verifies whether the accumulated context is correct, errors compound with each new session.

6.2 The Locked-In Prediction Phenomenon

The compounding effect is most visible in the raw outputs. For 8 out of 10 participants under Continual ICL, the model locks onto a single quadrant (HALV for 6 participants, HAHV for 2) and repeats it for all 5 evaluation sessions, regardless of the true label. This is not a subtle bias — it is a collapse of the prediction distribution. Where Zero-Shot's predictions spread broadly across the four quadrants, Continual ICL's confusion matrix concentrates almost entirely onto HALV and HAHV, producing near-zero recall for the actually-correct LAHV and LALV labels.

6.3 The Learning Curve

The dynamics are also visible over time. Zero-Shot maintains a stable trajectory — rising to ~50% midway before settling at 40% — because the absence of context accumulation preserves the model's independent reasoning on each session. Single-Session ICL starts at 0% over the first 5 evaluations (inheriting errors from the context-building phase) and gradually recovers to 23–34% as its single-session memory is periodically “reset” whenever a correct classification happens to land. Continual ICL remains at 0% for the first 20 evaluation sessions — spanning four participants — before a modest, coincidental recovery when one participant's locked-in prediction happens to align with their true labels. The recovery is not learning; it is alignment by chance.

6.4 Can Confidence Gating Save It?

If frozen parameters are the root cause, an obvious mitigation within the paradigm is to be selective about what enters the context. We implemented a confidence-gating mechanism that stores only episodes with self-reported classification confidence ≥ 0.50 in the episodic memory. The improvement was marginal: Cohen's κ moved from −0.038 to 0.043 and F1 from 0.090 to 0.105. The reason is straightforward: LLM self-reported confidence does not reliably predict classification correctness on this out-of-distribution task. The model is frequently “confidently wrong”, so gating selectively retains exactly the most harmful episodes. This parallels well-documented calibration challenges in LLM uncertainty estimation and underscores the deeper issue: a frozen model lacks the internal feedback loop necessary to calibrate its own uncertainty on tasks far from its pre-training distribution.

The Structural Vulnerability

Unlike supervised fine-tuning — where ground-truth labels guide adaptation — ICL relies on the model's own outputs as future context. This makes it structurally vulnerable to error propagation. The severity of degradation scales with context volume: Single-Session ICL, which retains only the most recent session, drops 8 points; Continual ICL, which accumulates all prior sessions, drops 28 points. Approaches that incorporate external validation — probabilistic novelty detection with ground-truth task labels, or memory-driven HAR with supervised model outputs — achieve positive transfer precisely because their accumulated context is reliable.

7Post-Training Adaptation vs Continual Learning

Our results give empirical shape to a distinction often collapsed in conversation. Continual learning and post-training adaptation are frequently discussed as though they address the same problem — enabling a model to improve over time. They are, however, two fundamentally distinct paradigms with different mechanisms, different guarantees, and different failure modes.

Continual learning, in the classical sense, modifies the model's internal parameters in response to new experiences. When it works, the improvement is robust: the network's weights have been shaped by ground-truth signals, and correct patterns are encoded into its structure. Catastrophic forgetting is the well-known hazard — one the community has studied carefully and for which there are principled mitigations.

Post-training adaptation operates on a pre-trained model whose parameters remain entirely frozen. In our framework, Claude Haiku 4.5 — trained on vast text corpora but never exposed to EEG signals during training — is asked to classify emotions using only the information in its input context. “Adaptation” means injecting summaries, profiles, and consolidated memories into the prompt. The model's weights never change; only its input changes. This is a fundamentally different form of adaptation because the model cannot actually learn from its mistakes. When it misclassifies a session, the error becomes part of the context for future sessions, but the model has no mechanism to recognise that context as unreliable — it treats its own earlier outputs with the same authority as the guidelines in the prompt template.

A continual learning system, given ground-truth labels, corrects its representations. Our post-training system has no such corrective channel — only more context.

The context-pollution phenomenon — accuracy dropping from 40% to 12% as more context accumulates — is a direct empirical consequence of this structural asymmetry. The locked-in prediction phenomenon is its pathological endpoint. Neither is an implementation detail; both follow from the choice to adapt through context alone. This reframing also suggests why some post-training systems succeed: supervised fine-tuning works because labels are external; probabilistic novelty detection with task-label ground truth works because memory is curated by a reliable signal; memory-driven HAR pipelines with supervised outputs work because the context is correct by construction. When reliability is absent, accumulation becomes poison.

8Implications for Social Robotics

Social robots are precisely the class of system where this distinction matters most. They must adapt to individual users over long horizons, often without labelled supervision. A roboticist who reads the literature and concludes “I'll just use an LLM with memory” will likely ship a system whose accuracy declines with usage — the inverse of what users expect from a personalising device. Our findings suggest four practical takeaways:

  • Do not treat “add memory” as free. The improvement you expect will not appear automatically. Context accumulation is a liability unless something in the loop validates what gets written.
  • Engineer feedback, not just memory. In deployed HRI, the robot can solicit explicit user feedback (“are you feeling energised or calm?”) and use it to gate memory writes. This converts unsupervised ICL into supervised post-training adaptation without touching parameters.
  • Prefer hybrid architectures for long-horizon personalisation. Parameter-efficient fine-tuning (e.g., LoRA adapters) provides the reliability of continual learning; in-context memory provides the responsiveness and cheapness of post-training. Combining them is where we think the next generation of personalising HRI systems lives.
  • Measure the right thing. Reporting accuracy at a single snapshot hides context pollution. Report per-session accuracy over time and the distribution of predictions — a collapsing prediction distribution is often a more honest failure signal than mean accuracy.

9Limitations & Future Directions

Several limitations should temper the conclusions. The sample size of 10 participants with 5 evaluation sessions each (n = 50) limits statistical power; the 95% confidence intervals on accuracy span approximately 28 percentage points, and the Wilcoxon test for Zero-Shot vs. Continual ICL is borderline (p = 0.055). Ground-truth labels are crowd-sourced stimulus ratings rather than direct emotional measurements, imposing a ceiling that affects all conditions equally. Inference latency of 25–60 seconds per classification limits real-time HRI applicability, though faster models or batched processing could mitigate this. And EEG-based emotion recognition in social robotics raises ethical considerations around privacy and consent; our system processes extracted spectral features rather than raw signals, which provides a degree of data minimisation but is not a substitute for explicit consent frameworks.

Future work will bridge the two paradigms. Human-in-the-loop feedback to provide ground-truth signals for post-training context curation is the most immediate direction; early prototypes suggest it converts context pollution from a structural vulnerability to a tractable engineering problem. Multi-modal integration — combining EEG with facial expression and speech prosody — should improve prediction reliability before context storage, reducing the rate at which errors enter memory in the first place. Real-time deployment on social robots such as the ARI humanoid platform will force the latency-accuracy trade-off into the design. And hybrid architectures — LoRA adapters paired with in-context memory — offer a path to the reliability of continual learning with the practicality of post-training adaptation.

How to Cite

Please use the following BibTeX entry once the proceedings are available:

@inproceedings{ghamati2026posttraining, title = {Can Post-Training Adaptation Replace Continual Learning? Evidence from EEG Emotion Recognition}, author = {Ghamati, Khashayar and Zaraki, Abolfazl}, booktitle = {International Conference on Social Robotics (ICSR) 2026, Special Session SS03: Continual Learning and Generative AI in Social Robotics}, year = {2026}, publisher = {Springer, Lecture Notes in Computer Science} }

Open Science & Collaboration

This work was conducted within the ICSR 2026 Special Session SS03 (Continual Learning and Generative AI in Social Robotics). If you are interested in extending the framework, running comparisons, or accessing the experimental code upon publication, please get in touch.

Full Paper & Code

Download Full Paper View Code

Accepted at ICSR 2026 (SS03). The camera-ready paper and code will be made available upon publication in the Springer LNCS proceedings.