REVIEW 3 major objections 5 minor 1 cited by
EEG2TEXT-CN: An Exploratory Study of Open-Vocabulary Chinese Text-EEG Alignment via Large Language Model and Contrastive Learning on ChineseEEG
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read EEG recorded during silent Chinese reading can be decoded into character-level Chinese text without visual input, with lexical precision far ahead of syntactic precision.
desk verdict First Chinese EEG-to-text attempt, but train/test share the same sentences and the encoder-only baseline matches the headline BLEU-1, so the decoding claim is not yet supported. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the per-character EEG segment $X_i \in \mathbb{R}^{T \times C}$ with $T=90$ time samples for each 350 ms character and $C=8$ PCA-reduced spatial components, so one sentence becomes a tensor $X \in \mathbb{R}^{N \times T \times C}$ for up to $N=10$ characters. Each segment is encoded by a convolutional EEG encoder adapted from earlier EEG-to-image decoding, then passed through Transformer layers; a frozen pretrained language model supplies contextual character embeddings, and a shared projection head with a cosine-similarity contrastive objective pulls EEG and text into the same space. Masked pretraining on corrupted EEG-text pairs teaches semantic associations before supervised decoding. An autoregressive Transformer decoder with teacher forcing and padding masks turns the aligned EEG sequence into character logits over a vocabulary of 25,000 characters plus special tokens, which is why the evaluation centers on character-level BLEU precision.
What would settle it
Evaluate the trained model on held-out chapters or on the same chapters with the held-out subject's sentences shuffled across EEG recordings, and compare BLEU-1 against a language-model-only baseline. If the score falls to the baseline's level, the claimed decoding is carried by the shared text distribution rather than by neural alignment.
Extended reading notes
Core claim
On its own terms, the paper claims that EEG-to-text decoding is feasible for Chinese as a non-phonetic, character-based language. The model takes each 350 ms character-aligned EEG segment, compresses 128 channels to 8 principal components, encodes the segment into a vector with a convolutional EEG encoder, and aligns those vectors to character embeddings from a frozen pretrained language model using a contrastive loss; an autoregressive Transformer decoder then generates full sentences under teacher forcing. The claimed evidence is the subject-wise held-out evaluation: 300 test sentences from the sixth participant, never used in training, yield BLEU-1 = 0.0638, BLEU-2 = 0.0212, BLEU-3 = 0.0152, and BLEU-4 = 0.0132 at the best checkpoint. The authors interpret the lexical-level score as demonstrable alignment between EEG and character content, while acknowledging the low higher-order scores as a lack of syntactic fluency and noting a tendency to default to high-frequency tokens.
Load-bearing premise
The test sentences are drawn from the same three chapters and the same 100 segments as training, so a model that memorizes frequent character sequences in that text could earn BLEU-1 credit without genuinely reading the EEG signal.
Editorial extensions
If this is right
- If the central claim holds, EEG-to-text interfaces can be built for Chinese and other logographic languages, not just alphabetic ones.
- Character-level alignment sidesteps subword tokenization mismatches, giving later systems a per-character interface to Chinese text.
- The large gap between BLEU-1 and higher-order BLEU indicates that lexical identity is more recoverable from EEG than word order, pointing future work toward sequence modeling rather than feature extraction.
- The subject-wise split used here, if valid, supports the practical setting in which a decoder trained on some readers can be applied to a new reader of the same text.
Reading between the lines
- Because all participants read the same novel chapters, the reported scores probably include a language-model prior over that text; a cleaner test would hold out whole sentences or chapters, not just participants.
- Sentence-level semantic metrics, such as embedding cosine similarity, might reveal whether the model transfers meaning even when exact characters are wrong.
- If the shared-text prior is controlled and BLEU-1 survives, the pipeline could be extended to Chinese imagined speech, since the recorded signals are from silent reading rather than overt articulation.
- The fixed 350 ms character presentation makes it possible to test whether temporal dynamics within a character segment contribute to decoding, by varying presentation speed.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes EEG2TEXT-CN, an encoder-decoder model that aligns 128-channel EEG segments with Chinese text using a NICE-EEG-style convolutional encoder, a frozen MiniLM language model, and contrastive learning, then generates sentences autoregressively with a Transformer decoder. The model is trained on 1,200 EEG-text pairs and validated on 300 pairs from five participants reading Garnett Dream, and tested on 300 pairs from a sixth participant reading the same chapters. The reported best result is BLEU-1 = 0.0638, with lower BLEU-2 through BLEU-4. The paper claims this is the first open-vocabulary, zero-shot EEG-to-Chinese generation model and evidence for non-phonetic cross-modal language decoding.
Significance. If the central claim were supported, the paper would be a meaningful first step for Chinese EEG-to-text decoding, a genuinely underexplored direction given the dominance of English datasets like ZuCo. The authors use a public dataset (ChineseEEG), provide a detailed architecture description, and include an ablation. However, the evaluation does not establish the headline claim: the test set is not text-disjoint from training, and the reported BLEU-1 scores are not compared against any chance-level baseline. The internal ablation actually shows that an encoder-only model collapsing to repeated high-frequency characters achieves a higher BLEU-1 than the full model, which supports the concern that the reported lexical overlap may reflect text priors rather than EEG decoding. The paper does not ship code or a reproducibility package, and the central zero-shot/open-vocabulary claims are therefore currently unsupported.
major comments (3)
- [3.4] The test set is not text-disjoint from training. Section 3.4 states that training and validation use the first 100 sentence segments of 3 chapters of Garnett Dream across five participants, while the test set uses the same 3 chapters and the same 100 segments per chapter from sub-06. Because all ChineseEEG participants read the identical novel text, every test sentence's character sequence appears verbatim in the training sentences of the other participants. The paper's assertion that a subject-wise split 'avoids data leakage' is therefore incorrect for the open-vocabulary claim: a model can achieve BLEU-1 by exploiting corpus-level unigram and bigram statistics learned from training, without any EEG-to-text decoding. This directly undermines the abstract's and Section 6's claims of zero-shot open-vocabulary generation.
- [5, Table 3] The ablation is internally inconsistent with the claimed benefit of the decoder. The encoder-only model, described as lacking sequential decoding and 'performs significantly worse,' actually achieves a higher BLEU-1 (0.0674) than the full encoder-decoder model (0.0638). Table 4 shows this model collapses to repeated '的' characters, and Section 4 admits that predictions 'often defaulted to high-frequency tokens in the training corpus.' Without a chance-level baseline (e.g., predicting the most frequent unigram/bigram from the training corpus, or an EEG-shuffled control), the reported BLEU-1 of 0.0638 cannot be attributed to EEG signal content. The encoder-only result demonstrates that a degenerate high-frequency output can match or exceed the headline score.
- [3.4, 6] The terms 'zero-shot' and 'open-vocabulary' are not supported by the protocol. The model is trained with teacher forcing on labeled EEG-text pairs for the same sentence-generation task used at test time, which is standard supervised learning rather than zero-shot generalization to unseen tasks or modalities. Because the test sentences themselves appear in training (see first major comment), the evaluation also does not demonstrate open-vocabulary generalization to novel characters or sentences. The abstract and conclusion should restrict the claims to same-text, cross-subject supervised decoding unless a text-disjoint test set is introduced.
minor comments (5)
- [3.3, Eq. (1)] Equation (1) defines \hat{y}_t in terms of itself: \hat{y}_t = Softmax(W_o · \hat{y}_t + b_o). This appears to be a typo; the intended form is likely \hat{y}_t = Softmax(W_o h_t + b_o) or similar. Please correct it.
- [2.5] Related Work Section 2.5 states that 'no large-scale public EEG dataset has focused on Chinese,' which contradicts the paper's own use of the ChineseEEG dataset introduced in [5]. This sentence should be reworded to acknowledge ChineseEEG and instead note the scarcity of such datasets.
- [4, Tables 2 and 4] The qualitative tables contain identical predicted strings appearing across multiple ground-truth sentences, sometimes with inconsistent BLEU values (e.g., '在草原北端一蹄甲' receives 0.0909 in some rows and 0.0000 in others). Please clarify how these examples were selected and ensure the BLEU values match the displayed n-gram overlap.
- [3.2, 3.4] There are grammar and phrasing errors, such as 'The details is shown in Figure 2' and 'we selected the sixth participant (sub-06), extracting the same 3 chapters.' Please proofread throughout.
- [References] Reference [18] on PCA in population genetics is not a standard or appropriate citation for PCA-based EEG dimensionality reduction; please cite a relevant EEG preprocessing reference instead.
Circularity Check
Test set reuses the same sentences as training, so the 'zero-shot, open-vocabulary' claim is evaluated on text already in the training corpus.
-
other
[Section 3.4, Training and Evaluation; see also Section 4 and Table 3/Table 4]
"For evaluation, we selected the sixth participant (sub-06), extracting the same 3 chapters and 100 segments per chapter, yielding a test set of 300 samples. This subject-wise split ensures generalization to unseen subjects and avoids data leakage."
All ChineseEEG participants read the identical novel, so the 'same 3 chapters and 100 segments per chapter' are the same character strings already used as training sentences from five other participants. The test is thus subject-disjoint but text-identical to training. Since the decoder is trained with teacher forcing to maximize p(y_t|y_{<t}, X) on exactly those sentence strings, every unigram and n-gram in the test references is present in the training text. BLEU-1 can therefore be raised by emitting high-frequency training-corpus characters without decoding any EEG.
full rationale
There is no equation-level self-reference: the model is trained end-to-end with a standard cross-entropy objective (Eq. 2), and no fitted parameter is definitionally equal to the reported BLEU score. Nor is any load-bearing claim propped up by a self-citation chain. The circularity is in the construction of the evaluation: the test set is subject-new but text-old, because the same three chapters and 100 segments are used for training and for sub-06 testing. Combined with the paper's own admission of a strong lexical bias and the encoder-only ablation matching or beating the full model at BLEU-1, the central claim that EEG contains enough lexical information for independent Chinese text decoding is not established. This is a serious but partial circularity: BLEU-2/3/4 are much lower, and there is some evidence of learned alignment, so the derivation is not wholly equivalent to its input. Score 5 rather than 6+ because the model is still genuinely trained on EEG-text pairs and the flaw is evaluation leakage, not definitional reduction.
Assumptions & free parameters
free parameters (3)
- Number of PCA components =
8
- Maximum sentence length =
10 characters
- Training epochs =
50, best checkpoint at epoch 49
assumptions (4)
- domain assumption ChineseEEG provides precise per-character alignment: each highlighted character corresponds to exactly 350 ms of EEG, giving 90 time points at 256 Hz.
- ad hoc to paper PCA to 8 components preserves enough neural information for language alignment.
- domain assumption all-MiniLM-L12-v2 embeddings provide a suitable semantic anchor space for Chinese characters.
- ad hoc to paper A subject-wise split with the same chapters and sentence segments is leak-free for text content.
Cite this review
Pith. "Pith review of EEG2TEXT-CN: An Exploratory Study of Open-Vocabulary Chinese Text-EEG Alignment via Large Language Model and Contrastive Learning on ChineseEEG." pith.science (2026). https://pith.science/paper/WOA4SVGS
@misc{pith2026250600854,
author = {Pith},
title = {Pith review of: EEG2TEXT-CN: An Exploratory Study of Open-Vocabulary Chinese Text-EEG Alignment via Large Language Model and Contrastive Learning on ChineseEEG},
year = {2026},
howpublished = {\url{https://pith.science/paper/WOA4SVGS}},
note = {Machine review of arXiv:2506.00854}
}
read the original abstract
We propose EEG2TEXT-CN, which, to the best of our knowledge, represents one of the earliest open-vocabulary EEG-to-text generation frameworks tailored for Chinese. Built on a biologically grounded EEG encoder (NICE-EEG) and a compact pretrained language model (MiniLM), our architecture aligns multichannel brain signals with natural language representations via masked pretraining and contrastive learning. Using a subset of the ChineseEEG dataset, where each sentence contains approximately ten Chinese characters aligned with 128-channel EEG recorded at 256 Hz, we segment EEG into per-character embeddings and predict full sentences in a zero-shot setting. The decoder is trained with teacher forcing and padding masks to accommodate variable-length sequences. Evaluation on over 1,500 training-validation sentences and 300 held-out test samples shows promising lexical alignment, with a best BLEU-1 score of 6.38\%. While syntactic fluency remains a challenge, our findings demonstrate the feasibility of non-phonetic, cross-modal language decoding from EEG. This work opens a new direction in multilingual brain-to-text research and lays the foundation for future cognitive-language interfaces in Chinese.
Figures
Forward citations
Cited by 1 Pith paper
-
Joint Text-Audio Alignment for EEG-to-Text Decoding in Chinese Speech Production and Perception
Joint text-audio contrastive alignment plus CTC decoding yields state-of-the-art closed-set Chinese sentence identification from scalp EEG: 82.37% top-1 on reading-aloud and 41.43% on passive-listening EEG (101 candidates).
Reference graph
Works this paper leans on
-
[1]
Eeg2text: Open vocabulary eeg-to-text decoding with eeg pre-training and multi-view transformer
Hanwen Liu, Daniel Hajialigol, Benny Antony, Aiguo Han, and Xuan Wang. Eeg2text: Open vocabulary eeg-to-text decoding with eeg pre-training and multi-view transformer. arXiv preprint arXiv:2405.02165, 2024
arXiv 2024
-
[2]
Dewave: Discrete encoding of eeg waves for eeg to text translation
Yiqun Duan, Jinzhao Zhou, Zhen Wang, Yu-Kai Wang, and Chin-teng Lin. Dewave: Discrete encoding of eeg waves for eeg to text translation. Advances in Neural Information Processing Systems, 36:9907–9918, 2023
work page 2023
-
[3]
Open vocabulary electroencephalography-to-text decoding and zero-shot sentiment classification
Zhenhailong Wang and Heng Ji. Open vocabulary electroencephalography-to-text decoding and zero-shot sentiment classification. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pages 5350–5358, 2022
work page 2022
-
[4]
Decoding natural images from eeg for object recognition
Yonghao Song, Bingchuan Liu, Xiang Li, Nanlin Shi, Yijun Wang, and Xiaorong Gao. Decoding natural images from eeg for object recognition. arXiv preprint arXiv:2308.13234, 2023
arXiv 2023
-
[5]
Chineseeeg: A chinese linguistic corpora eeg dataset for semantic alignment and neural decoding
Xinyu Mou, Cuilin He, Liwei Tan, Junjie Yu, Huadong Liang, Jianyu Zhang, Yan Tian, Yu-Fang Yang, Ting Xu, Qing Wang, et al. Chineseeeg: A chinese linguistic corpora eeg dataset for semantic alignment and neural decoding. Scientific Data, 11(1):550, 2024
work page 2024
-
[6]
Sentence-bert: Sentence embeddings using siamese bert- networks
Nils Reimers and Iryna Gurevych. Sentence-bert: Sentence embeddings using siamese bert- networks. https://huggingface.co/sentence-transformers/all-MiniLM-L12-v2 ,
-
[7]
Mind’s eye: Image recognition by eeg via multimodal similarity-keeping contrastive learning
Chi-Sheng Chen and Chun-Shu Wei. Mind’s eye: Image recognition by eeg via multimodal similarity-keeping contrastive learning. arXiv preprint arXiv:2406.16910, 2024
arXiv 2024
-
[8]
Quantum multimodal contrastive learning framework
Chi-Sheng Chen, Aidan Hung-Wen Tsai, and Sheng-Chieh Huang. Quantum multimodal contrastive learning framework. arXiv preprint arXiv:2408.13919, 2024
arXiv 2024
Show all 21 references
-
[9]
Necomimi: Neural-cognitive multimodal eeg-informed image generation with diffusion models
Chi-Sheng Chen. Necomimi: Neural-cognitive multimodal eeg-informed image generation with diffusion models. arXiv preprint arXiv:2410.00712, 2024
2024 arXiv
-
[10]
Vi- sual decoding and reconstruction via eeg embeddings with guided diffusion
Dongyang Li, Chen Wei, Shiying Li, Jiachen Zou, Haoyang Qin, and Quanying Liu. Vi- sual decoding and reconstruction via eeg embeddings with guided diffusion. arXiv preprint arXiv:2403.07721, 2024
2024 arXiv
-
[11]
A survey of spatio-temporal eeg data analysis: from models to applications
Pengfei Wang, Huanran Zheng, Silong Dai, Yiqiao Wang, Xiaotian Gu, Yuanbin Wu, and Xiaoling Wang. A survey of spatio-temporal eeg data analysis: from models to applications. arXiv preprint arXiv:2410.08224, 2024
2024 arXiv
-
[12]
Synthesizing intelligible utterances from eeg of imagined speech
Wenjing Xiong, Lin Ma, and Haifeng Li. Synthesizing intelligible utterances from eeg of imagined speech. Frontiers in Neuroscience, 19:1565848, 2025
2025
-
[13]
Belt: Boot- strapped eeg-to-language training by natural language supervision
Jinzhao Zhou, Yiqun Duan, Yu-Cheng Chang, Yu-Kai Wang, and Chin-Teng Lin. Belt: Boot- strapped eeg-to-language training by natural language supervision. IEEE Transactions on Neural Systems and Rehabilitation Engineering, 2024
2024
-
[14]
Belt-2: Bootstrapping eeg-to-language representation alignment for multi-task brain decoding
Jinzhao Zhou, Yiqun Duan, Fred Chang, Thomas Do, Yu-Kai Wang, and Chin-Teng Lin. Belt-2: Bootstrapping eeg-to-language representation alignment for multi-task brain decoding. arXiv preprint arXiv:2409.00121, 2024
2024 arXiv
-
[15]
Zuco, a simultaneous eeg and eye-tracking resource for natural sentence reading
Nora Hollenstein, Jonathan Rotsztejn, Marius Troendle, Andreas Pedroni, Ce Zhang, and Nicolas Langer. Zuco, a simultaneous eeg and eye-tracking resource for natural sentence reading. Scientific data, 5(1):1–13, 2018
2018
-
[16]
Towards voice recon- struction from eeg during imagined speech
Young-Eun Lee, Seo-Hyun Lee, Sang-Ho Kim, and Seong-Whan Lee. Towards voice recon- struction from eeg during imagined speech. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pages 6030–6038, 2023
2023
-
[17]
Evaluation of an english language phoneme-based imagined speech brain computer interface with low-cost electroencephalography
John LaRocco, Qudsia Tahmina, Sam Lecian, Jason Moore, Cole Helbig, and Surya Gupta. Evaluation of an english language phoneme-based imagined speech brain computer interface with low-cost electroencephalography. Frontiers in neuroinformatics, 17:1306277, 2023. 9
2023
-
[18]
Principal component analyses (pca)-based findings in population genetic studies are highly biased and must be reevaluated
Eran Elhaik. Principal component analyses (pca)-based findings in population genetic studies are highly biased and must be reevaluated. Scientific reports, 12(1):14683, 2022
2022
-
[19]
A learning algorithm for continually running fully recurrent neural networks
Ronald J Williams and David Zipser. A learning algorithm for continually running fully recurrent neural networks. Neural computation, 1(2):270–280, 1989
1989
-
[20]
Bleu: a method for automatic evaluation of machine translation
Kishore Papineni, Salim Roukos, Todd Ward, and Wei-Jing Zhu. Bleu: a method for automatic evaluation of machine translation. In Proceedings of the 40th annual meeting of the Association for Computational Linguistics, pages 311–318, 2002. 10
2002
-
[2021]
Accessed: 2024-03-01
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.