Interpretable MEG Decoding of Perceived Speech: Cortical Sources and the Stimulus Features That Drive Retrieval
Cracking open an AI that guesses which 3-second speech clip you just heard from brain scans, to see exactly which brain regions and sound features it actually relies on
This work builds a deep learning model that retrieves brief speech clips a person heard, using only non-invasive brain recordings (MEG), while making its internal weights interpretable as real cortical locations and rhythms. On the MEG-MASC dataset with 27 participants, it picks the correct audio clip out of 1005 candidates with 39.75% Top-1 accuracy while using about 20 times fewer parameters than a prior comparable model. Mapping the learned weights back to the brain revealed sources consistent with the known speech-perception network, and a feature-removal experiment showed that 15 of 19 tested speech properties (like silence, loudness, vowels, and acoustic onsets) genuinely drive the decoding.
METAL MEDIA explanatory visual
Interpretable MEG-to-speech retrieval pipeline
Evidence statusMeasured results reported
- 1. 3D spatial attentionMaps 208 sensor signals to 270 virtual channels using spherical harmonics fitted to the sphere-like MEG helmet geometry
- 2. Interpretable branches (K=25)A participant-specific projection reduces the 270 channels to K=25 branches, each matched to a source via a 150 ms temporal filter
- 3. Non-linear decoderTwo residual convolutional blocks process the branch signals into a MEG embedding aligned with the wav2vec audio embedding
- 4. Source mappingTrained weights are projected into brain space via MNE and RAP-MUSIC, revealing auditory, frontal, and medial temporal lobe sources and left-right frequency differences
- 5. Paired occlusion testSwapping real MEG between feature-present and feature-absent intervals for 19 speech features confirms 15 of them drive retrieval
What they did
- Prior MEG-to-speech retrieval models (e.g., Défossez et al.) worked well but their learned weights couldn't be tied to real cortical locations or rhythms, making them black boxes. This work redesigns the spatial attention layer to use spherical harmonics, matching the roughly spherical shape of the MEG sensor helmet, instead of the earlier 2D Fourier functions built for a flattened sensor layout.
- The 270-channel participant-specific representation is compressed to just K=25 interpretable 'branches,' and each branch is given its own trainable 150 ms temporal filter, so every branch corresponds to a specific neural source in both space and time. Eye-movement and heartbeat artifacts are removed before training so the model can't shortcut its task using non-neural signals.
- Trained six times independently on the MEG-MASC dataset (27 participants), the model reaches 39.75±0.34% Top-1 accuracy and 70.4% Top-10 accuracy at picking the correct clip among 1005 candidates, using only 486,619 trainable decoder parameters versus about 9.57 million for the comparable Défossez et al. setup — roughly a 20x reduction.
- Projecting the trained weights into brain source space (using the method of Petrosyan et al.) recovered activity consistent with the canonical speech-perception network, including bilateral auditory cortex, frontal, and medial temporal lobe regions, with branches localized to the left hemisphere showing higher-frequency rhythmic components than those on the right.
- A paired-occlusion experiment swapped real MEG segments between intervals with and without each of 19 speech features (silence, loudness, vowels, acoustic onsets, etc.), finding that 15 of the 19 features significantly affected retrieval, with silence, loudness, vowels, and acoustic onsets having the largest effects — while randomly ordered word lists (lacking narrative structure) carried less recoverable information than coherent speech.

| Model | K | B | F | Parameters | Candidates | Top-1 (%) | Top-10 (%) |
|---|---|---|---|---|---|---|---|
| LISA, smaller branch space | 15 | 2 | 768 | 380,769 | 1005 | 39.51 | 70.23 |
| LISA, LinearDR-12 | 25 | 2 | 12 | 427,651 | 1005 | 39.95 | 70.54 |
| LISA, no convolutional blocks | 25 | 0 | 768 | 471,219 | 1005 | 36.76 | 67.37 |
| LISA, main | 25 | 2 | 768 | 486,619 | 1005 | 40.01 | 70.60 |
| LISA, five convolutional blocks | 25 | 5 | 768 | 509,719 | 1005 | 39.06 | 69.82 |
| LISA, closest tested capacity | 270 | 5 | 768 | 7,210,224 | 1005 | 36.41 | 67.46 |
| Défossez et al. [15] | 270 | 5 | 1024 | 9,565,054 | 1363 | 41.30 | 70.70 |

Findings
- Averaged over six independently trained models on MEG-MASC, the system reached 39.75±0.34% Top-1 and 70.4% Top-10 accuracy retrieving the correct clip among 1005 candidates, with only 486,619 decoder parameters versus about 9.57 million for a comparably-sized Défossez et al. setup, roughly a 20x reduction.
- In a controlled comparison, the K=270, five-block configuration closest to the Défossez et al. design used 14.8 times more parameters yet scored 3.60 percentage points lower on Top-1 and 3.14 points lower on Top-10 accuracy.
- Mapping trained weights to source space recovered activity in bilateral auditory cortex, frontal lobe, and medial temporal lobe, with left-localized branches showing higher-frequency rhythmic components than right-localized ones.
- 15 of 19 tested stimulus features (including silence, loudness, vowels, and acoustic onsets) showed a statistically significant contribution to retrieval, and this pattern held across six independently trained model instances with different random seeds.
- Reducing the target wav2vec representation to about 12 learned feature dimensions preserved retrieval accuracy, while a comparable reduction using fixed PCA degraded performance faster; compressing the temporal resolution of the target, by contrast, caused a clear performance drop under any tested method.

Where it can be used
- Serving as a diagnostic tool to check which brain regions and signal properties a speech-decoding model genuinely relies on, useful when developing speech neuroprosthetics or imagined-speech interfaces
- Assisting non-invasive language-area mapping efforts before surgery by cross-checking model-identified sources against known speech-perception regions
- Providing a data-driven, hypothesis-free approach for neuroscience research into which acoustic and linguistic features are encoded in brain activity during natural speech perception
![Figure 6: The 12 largest clusters for the main K=25 model, computed using the Cable Spool Fort recordings from the first session. Each column shows the medoid of one cluster. Rows show, from top to bottom, the sensor-space spatial pattern, the temporal pattern computed using the zero-mean temporal kernel, its magnitude spectrum, and the corresponding MNE-Python [30] source-magnitude estimate on the fsaverage surface in left- and right-hemisphere lateral views.](https://media.metallab.ai/papers/2608.01481/f6.png)
Limits and open work
- The analysis relies on a single MEG corpus (MEG-MASC) with 27 participants, so it's untested whether the same feature-use pattern would replicate with different listening material or a different corpus.
- Reproducibility across six differently-seeded models addresses dependence on model initialization only; robustness to a different architecture, dataset, or evaluation protocol has not been tested.
- The front-end's interpretation assumes space-time factorized (linear) processing, which may fail to capture more complex, space-time inseparable dynamics such as propagating cortical waves.
- The paired-occlusion swaps use real MEG from the same participant and session, and because features overlap, covary, and use masks of different durations, the method can't fully isolate each feature's independent causal contribution.
- RAP-MUSIC source localization used a shared template forward model rather than individual anatomy for most participants, likely producing more spread-out cortical estimates than individualized models would; comparing the six participants with usable individual anatomy to this template result is left for future work.
Why it matters
Speech-decoding from brain signals underlies real applications like speech neuroprosthetics and mapping language areas during surgery, but high accuracy alone doesn't tell us what a black-box model actually detected or whether it's picking up genuine neural signal versus artifacts. By keeping accuracy competitive while making the model's weights traceable to specific brain sources, rhythms, and stimulus features, this work shows how a decoder can double as a scientific instrument for studying speech perception, not just a benchmark score.
Terms in this paper
- MEG (magnetoencephalography) · a non-invasive brain imaging technique that measures the tiny magnetic fields produced by neural activity from outside the head
- wav2vec 2.0 · a pretrained AI model that converts raw audio into vector representations (embeddings)
- CLIP-style contrastive objective · a training method that pulls matching pairs of data from two different modalities (here, MEG and audio) into a shared vector space
- spherical harmonics · mathematical basis functions defined on a sphere, a natural fit for the roughly spherical arrangement of MEG sensors
- paired occlusion · an experiment that swaps MEG segments between feature-present and feature-absent intervals to test whether that feature affects the model's output
Original abstract (English)
Short segments of perceived speech can be retrieved from non-invasive magnetoencephalographic (MEG) recordings by deep networks trained with a CLIP-style objective against wav2vec 2.0 audio embeddings. Yet their weights do not map onto electrophysiological quantities, and it remains unclear which speech properties drive retrieval. We build on a high-performing MEG-to-audio retrieval architecture but redesign both its front end and decoder. Its spatial attention operates on a flattened sensor lay
Read on arXivLatest papers
- SWE-bench Science: Can Coding Agents Resolve Engineering Tasks in Science?AI coding agents were tested on fixing real scientific software, and even the best one failed more than half the time
- FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM ServingMaking sparse attention fast enough and accurate enough for real LLM serving, not just papers
- PolicyGuide: From Guarding One Action to Guiding the Whole Workflow for Policy-Compliant LLM AgentsMaking customer-service AI agents follow the whole procedure, not just avoid one bad action
- EXIMO: VLM Guided Exploration of VLA PoliciesTeaching a robot new chores without human teleoperation, by letting a chatty AI supervise it
- EnvHarness: Awakening Static Worlds for Agent LearningInstead of building new training worlds from scratch, this work adds a plug-in layer that reshapes existing ones around each agent's actual weaknesses
- Bounded Sovereignty and the Control Tax: Pricing AI Oversight When the Deployer Does Not Own the ModelCompanies that rent AI instead of owning it can only do half of AI safety oversight
- Beyond Imitation: Filtering On-Policy Distillation by Reasoning ProgressA fix for AI models that get penalized by their teacher even when they're reasoning correctly
- PersonalBench: Measuring the Authorship Gap in LLM PersonalizationAI can be prompted to write 'like someone,' but its own voice never fully disappears
Latest from METAL MEDIA
Figures: Ilia Semenkov et al., arXiv:2608.01481, arxiv-nonexclusive