Skip to main content

BRIEF RESEARCH REPORT article

Front. Psychiatry, 17 November 2023
Sec. Computational Psychiatry
This article is part of the Research Topic Deep Learning for High-Dimensional Sense, Non-Linear Signal Processing and Intelligent Diagnosis View all 3 articles

Application of graph frequency attention convolutional neural networks in depression treatment response

\r\nZihe Lu&#x;Zihe LuJialin Wang&#x;Jialin WangFengqin Wang
Fengqin Wang*Zhoumin WuZhoumin Wu
  • College of Physics and Electronics Science, Hubei Normal University, Huangshi, China

Depression, a prevalent global mental health disorder, necessitates precise treatment response prediction for the improvement of personalized care and patient prognosis. The Graph Convolutional Neural Networks (GCNs) have emerged as a promising technique for handling intricate signals and classification tasks owing to their end-to-end neural architecture and nonlinear processing capabilities. In this context, this article proposes a model named the Graph Frequency Attention Convolutional Neural Network (GFACNN). Primarily, the model transforms the EEG signals into graphs to depict the connections between electrodes and brain regions, while integrating a frequency attention module to accentuate brain rhythm information. The proposed approach delves into the application of graph neural networks in the classification of EEG data, aiming to evaluate the response to antidepressant treatment and discern between treatment-resistant and treatment-responsive cases. Experimental results obtained from an EEG dataset at Peking University People's Hospital demonstrate the notable performance of GFACNN in distinguishing treatment responses among depression patients, surpassing deep learning methodologies including CapsuleNet and GoogLeNet. This highlights the efficacy of graph neural networks in leveraging the connections within EEG signal data. Overall, GFACNN exhibits potential for the classification of depression EEG signals, thereby potentially aiding clinical diagnosis and treatment.

1 Introduction

Depression, a widespread mental disorder, is predominantly assessed for treatment response using subjective clinical data. To overcome this constraint, the scientific community has begun to investigate the potential of biomedical signals as supplementary diagnostic instruments. Comparing to fMRI (1, 2), Electroencephalography (EEG) signals, which are non-invasive, safe, and offer high-resolution, can depict the dynamic alterations in brain neural activity. Nevertheless, the analysis of EEG data faces multiple obstacles, such as the presence of noise and interference, individual variability, and non-stationary and nonlinear signals, among others (3). To tackle these challenges, researchers are exploring innovative methods and techniques to enhance the precision and efficiency of EEG signal processing, ultimately delivering more objective and accurate guidance for diagnosing and treating depression (3).

Graph convolutional neural networks (GCN) have garnered significant interest in recent years as a powerful deep learning model for processing complex signals and classification tasks across various fields. However, the utilization of GCNs for classifying EEG signals remains limited. The most salient related work are as following, Song et al. (4) and Jang et al. (5) have shown the successful application of GCNs in EEG emotion recognition and video identification, respectively, while Li et al. (6) introduced an information aggregation method to transmit information between graph convolutional layers. Zhao et al. (7) proposed a linear graph convolutional network for seizure identification, achieving an accuracy of 99.30% with the use of focal loss to address data imbalance. Recently, to improve depression detection, Zhu et al. (8) proposed a Graph Input layer attention Convolutional Network (GICN), which incorporated a learnable weight matrix in the input layer of the GCN, achieving a 96.50% accuracy for recognition of depression and normal with 10-fold cross-validation. Unlike recurrent neural networks (RNNs), which are well-suited for sequential data, GCNs demonstrate superior performance in processing nonlinear signals by capturing their inherent nonlinear relationships. Moreover, GCNs offer advantages such as the ability to effectively exploit node relationships, accommodate variable-sized inputs, process multiple data types simultaneously, and exhibit end-to-end characteristics. These attributes contribute to enhanced classification performance, enable the handling of unstructured data, provide greater flexibility, and reduce information loss and error introduced during manual feature extraction (9).

While traditional graph attention methods have demonstrated remarkable outcomes in several applications by automatically learning attention on data, they are limited in terms of network connections, which are mostly confined to the time-domain space, lacking connections based on the frequency domain. Nonetheless, this approach lacks specificity and controllability, as it typically computes attention weights based on intrinsic features of data, without explicit guidance for particular tasks, possibly highlighting irrelevant features and reducing the model's performance. Furthermore, traditional methods require extensive trial-and-error and parameter adjustments to achieve better attention, further limiting the model's controllability. Therefore, despite the ability of traditional graph attention methods to learn attention on data automatically, they lack specificity and controllability for particular tasks. To overcome this limitation, we propose the Graph Frequency Attention Convolutional Neural Network (GFACNN), which utilizes signal frequency information as attention weighting information to guide the model towards EEG rhythm information. This new deep learning model is inspired by the channel frequency attention mechanism (10) and aims to address this limitation.

2 Methodology

This section introduces the GFACNN model. Figure 1 illustrates the architecture of GFACNN.

FIGURE 1
www.frontiersin.org

Figure 1. The architecture of GFACNN.

2.1 Attention module

The parameter vector a in the GFACNN is a nonlearnable attention mechanism for each node. It is a vector of weights to determine the importance of each feature dimension in the computation of attention coefficients.

First, the frequency of channel xi is obtained by the discrete-time Fourier transform (DTFT) algorithm:

X(ω)=n=-xne-iωn,    (1)

where {xn}n=- is the ith channel xi.

The power E of the spectrum is calculated as:

F(ejω)=a+ib,|F(ejω)|=a2+b2,E=12πππ|F(ejω)|2dω.    (2)

The mean power Ē for the channel xi is then calculated and indexed as i. And the average power values of all channels are constructed into one attention vector according to their indexes.

a=[E¯0,E¯1,,E¯n]    (3)

Finally, the attention vector a is normalized to [0.1, 1] by max-min normalization. It is applied to the input node features as the weight in terms of the Hadamard product.

2.2 Graph frequency attention convolutional neural network

GFACNN is a novel graph convolutional neural network specifically designed for classification and object detection. The network's architecture comprises of an attention-based input layer that processes the input data and extracts frequency relevant feature representations (Section 2.1). This input layer employs an attention mechanism to identify and learn the significance of different regions in the EEG data, thereby enhancing the feature extraction process's efficacy. It represent the original graph data as a node feature matrix X, where Xi, : represents the feature vector of the i-th node.

The network also features two graph convolutional layers that leverage graph convolution operations to extract the features from the input data. These layers contain multiple graph convolution units that update the node's feature representation by aggregating information from the neighboring nodes:

H(l)=σ(D˜12A˜D˜12H(l1)W(l1))    (4)

where à = A+I is the adjacency matrix A with self-loops added, D~ is the diagonal matrix where each diagonal element D~i,i=jÃi,j, σ is the activation function, and W(1) is the weight matrix at layer l.

Moreover, GFACNN consists of three fully connected layers, which have a unique hourglass-shaped structure (11). These layers' primary function is to map the features extracted by the graph convolutional layers to the respective target categories.

Despite its relatively intricate structure, GFACNN offers the advantage of end-to-end learning and feature extraction from input data, facilitated by the graph convolutional neural networks. This allows it to significantly enhance the effectiveness of depression treatment response classification tasks.

2.3 Training of GFACNN

The training procedure involves the computation of the Hadamard product between the input data and the feature representations pertinent to frequency, as expounded in Section 2.1. Subsequently, this computed product traverses through two layers of the graph convolutional neural network. At each of these layers, a graph convolution operation is implemented. This operation encompasses the aggregation of information emanating from neighboring nodes, subsequently influencing the update of node features. Following each instance of graph convolution operation, an activation function (illustrated in Figure 1) is applied in an element-wise manner to the amalgamated information. The anticipated outcome is generated through the final quartet of fully connected layers, as depicted in Figure 1, each comprising a configuration of neurons. The discrepancy between the foreseen output and the factual target labels is gauged through the medium of a designated loss function. To optimize this process, the Stochastic Gradient Descent optimizer is brought into play. This optimizer's objective is the minimization of the Mean Squared Error loss function with a learning rate of 0.01, consequently contributing to the enhancement of the model's performance. This optimization endeavor is facilitated through the continual refinement of the model's parameters, a feat achieved via the Backpropagation algorithm. This iterative process of training persists until a specified termination criterion is satisfied (notably, at Epoch 100, with a batch size of 30, and early termination employing a Patience of 10). Upon the culmination of the training phase, an evaluation of the model's efficacy is conducted through its deployment on an autonomous testing dataset. This assessment offers an impartial estimation of the model's capacity to generalize to hitherto unseen data instances.

3 Results

The experiments in this section serve as a validation and assessment of the classification of the proposed model. We first introduce the dataset (see Section 3.1) after describing experimental platform utilized in the experiments. Next, rhythmic information in EEG of depression treatment response is visualized (see Section 3.2). Finally, the classification of GFACNN is evaluated using accuracy, sensitivity and specificity (see Section 3.3). The experiments were conducted on a desktop with an Intel i7 CPU at 3.33 GHz, an Nvidia RTX 2080Ti GPU, 64GB RAM, and Windows 7. This system enabled consistent testing conditions.

3.1 Dataset

The EEG dataset was obtained from 17 patients with major depressive disorder (MDD) at Peking University People's Hospital. The dataset was recorded simultaneously through 20 channels (Fp1, Fp2, F3, F4, F7, T3, T5, C3, C4, Fz, Cz, Pz, F8, T4, T6, P3, P4, O1, O2, ECG) at a sampling rate of 256 Hz using 19 electrodes and one electrocardiograph. MDD subjects receiving antidepressant treatment were selected from the hospital. In this study, all 17 patients received escitalopram oxalate tablets (10 mg), with 7 subjects being classified as non-responsive. The time window was set to 1024 samples (4 s), resulting in a total sample space of 20,851 segments (12482 treatment-responsive and 8369 treatment-resistant).

The adjacency matrix ARn × n of the GFACNN is constructed using the topological structure of brain electrical channels. In this matrix, n represents the number of channels in the brain electrical signal and each element value Aij represents the connection weight between channels i and j. The spatial relationship between channels and brain regions is taken into account in the adjacency matrix A. The Pearson correlation coefficient is used to obtain the correlation coefficient Rij between two channels i and j, while the Heterogeneous Matrix Similarity Measurement (HMSM) method (12) is employed to determine the similarity Hij between pairs of brain regions. The value of Aij is then calculated as Aij = RijHij, where λ represents a calibration constant greater than 0 (typically 0.5). The attention for each channel will subsequently be applied to the adjacency matrix.

3.2 Frequency analysis of treatment response

This section of the experiment aimed to evaluate the important role of frequency information in assessing the response to depression treatment and to explain why this study used frequency information as the attention mechanism in a graph neural network. First, the EEG data were preprocessed to remove artifacts, pulse noise, and baseline drift. Continuous EEG data were then segmented into multiple 4-second data segments for fast FFT with time-frequency analysis. FFT transforms were calculated to obtain the average power for pre-treatment and post-treatment groups. The average frequency components and corresponding power distribution in the δ (0.5–4Hz), θ (4-8Hz), α (8-13Hz), and β (13–30Hz) frequency bands (Figure 2 for the treatment-responsive group, Figure 3 for the treatment-resistant group) were generated for different channels across groups to evaluate depression treatment response.

FIGURE 2
www.frontiersin.org

Figure 2. Time-frequency analysis of different channels in the treatment-responsive group for depression treatment response.

FIGURE 3
www.frontiersin.org

Figure 3. Time-frequency analysis of different channels in the treatment-resistant group for depression treatment response.

A comparison of spectral power graphs (Figures 2, 3) reveals that the power (amplitude illustrated in figures) of the treatment-resistant group is significantly higher than that of the treatment-responsive group. This observation may be attributed to several factors: (1) Abnormal brain electrical activity: Patients with depression often exhibit abnormal brain electrical activity, characterized by either heightened or diminished excitability relative to healthy individuals. This can result in increased power within certain frequency bands. In treatment-resistant patients, these abnormalities may be more severe, leading to further increases in spectral power (13). (2) Spectral line amplification: Increased amplitudes of select frequency components within certain bands can result in an overall increase in energy. This phenomenon may be associated with enhanced synchronization or oscillation activity of brain waves (14). (3) Effects of therapeutic drugs: Antidepressants can modulate abnormal brain electrical activity by targeting neurotransmitter systems (15, 16). However, in treatment-resistant patients, these drugs may be treatment-resistant or produce unexpected side effects, leading to further changes in the brain electrical spectrum.

Another phenomenon in the figures is that all channels in the treatment-responsive group show an “impulse response” in the α frequency band especially for channels F3, C4, Fz, P3, and P4, while it is not found in the treatment-resistant group. The reasons for this may be as follows: First, α waves are related to attention and alertness (17). Treatment-responsive can improve the patient's attention and alertness, causing a temporary drop in α wave power after the stimulus appears, that is, an “impulse response”. Patients with treatment-resistant have difficulty improving their attention, so this phenomenon does not occur. Second, α waves are related to emotional regulation (18). Antidepressant treatment can improve emotional regulation. When an external stimulus occurs, α waves will temporarily decrease to adjust the emotional state and produce an “impulse response”. Patients with treatment-resistant treatment have more severe emotional regulation disorders. The regulatory mechanism of α waves is impaired and it is not easy to produce this phenomenon. Finally, α waves are related to functional connections between brain regions (19). Treatment-responsive can enhance functional connections and synchrony between brain regions. When external stimuli occur, α waves between brain regions will temporarily lose coordination and then quickly recover, producing a significant “impulse response”. For the treatment-resistant group, it is difficult to repair the connection between brain regions and it is not easy to produce this phenomenon.

3.3 Performance of depression treatment response

In this section, we assessed the ability of GFACNN to discriminate between treatment responses in patients receiving antidepressant therapy at Peking University People's Hospital. We employed a 5-fold cross-validation approach to train our classifier and evaluated its performance on an independent test set. To monitor the training process, we utilized learning curves and assessed the model's predictive capabilities using receiver operating characteristic (ROC) curves and the area under the curve (AUC). Our results, depicted in Figures 4A, B, demonstrate that our classifier exhibited stable learning without overfitting or underfitting. This suggests that our approach is generalizable. Furthermore, our classifier performed exceptionally well on the test set, indicating its high discriminative power for treatment responses. Taken together, our findings suggest that GFACNN may serve as a valuable tool for evaluating the efficacy of antidepressant therapy.

FIGURE 4
www.frontiersin.org

Figure 4. Performance evaluation of the model in the efficacy of antidepressant treatment. The number in parentheses represents the standard deviation. (A) learning curve provide insight into the dependence of a classifier's generalization performance on the training set and validation set. (B) ROC (Receiver Operating Characteristic) curve illustrated the performance of a classification model at all classification thresholds. (C) Performance comparison on Depression Treatment Response.

Finally, the model's classification performance was assessed on the hold-out test set. Our approach attained 98.92% accuracy, 99.52% sensitivity, and 98.73% specificity, as summarized in Figure 4C. In comparison to the foundational classifiers, which encompass GCNN (the GFACNN variant without the frequency-channel attention module), capsule networks, and GoogleNet, our proposed methodology has evidenced a marked advancement in terms of performance. The attention mechanism module in GFACNN leads to an approximate 2% enhancement in performance. Furthermore, the GFACNN displays a reduced standard deviation, suggesting a heightened concentration of performance values around its mean and a decreased level of dispersion.

4 Discussions and conclusions

In this section, we offer an extensive examination of EEG channels utilized in the construction of our GFACNN. These EEG channels bear multifaceted implications across biological, psychological, and psychiatric domains, enriching our understanding of depression treatment response.

EEG channels: One of the pivotal aspects of this study is the incorporation of channels that closely align with those reported in existing literature. This alignment provides a robust foundation for the exploration of neural mechanisms underlying the response to depression treatment. Our findings are consistent with the work of Ressler (20), who highlighted the pivotal role of these channels in the modulation of neural activity associated with mood regulation. Moreover, the neurophysiological patterns observed in these channels in the rostral anterior cingulate cortex (ACC) resonate with the antidepressant response (21), corroborating the relevance of our channels to depression-related neural processes.

Incorporating the EEG channels F3, C4, Fz, P3, and P4, which primarily correspond to the prefrontal and frontal regions (22), into the GFACNN architecture has yielded compelling evidence of alignment with well-established neural pathways associated with depressive conditions. Noteworthy research indicates the involvement of prefrontal connectivity (23) and frontal EEG connectivity (21) in emotional regulation and mood disorders at the level of brain regions, thereby underscoring its relevance in elucidating treatment outcomes for depression. Furthermore, at a finer granularity of channel-level analysis, the investigation revealed hypoactivity within the left frontal hemisphere for F3 and F4, accompanied by a global elevation in alpha power in depressive disorders, as highlighted by Horato et al. (18). Furthermore, in the context of EEG signals from F3, P3, and P4, a robust correlation emerged between Phase-amplitude coupling delta-beta (dPAC-DB) and Mood Disorder Questionnaire (MDQ) scores, both pre- and post-treatment, as detailed by Kesebir et al. (24).

The incorporation of these meaningful channels not only adds to the robustness of our model but also enhances the interpretability of our results. The utility of these channels in classification is grounded in their ability to capture neural activity patterns that are inherently linked to depression and its treatment.

Clinical implications of classification: The implications of our findings extend beyond the realm of research to the clinical domain. By identifying and highlighting the neural patterns most indicative of depression treatment response, our GFACNNs offer clinicians an objective tool to aid in treatment planning and decision-making. The accuracy and interpretability of our model's predictions pave the way for personalized treatment strategies, ensuring that interventions are tailored to an individual's neural response profile.

Limitations: While our study presents promising insights, we acknowledge the presence of several limitations that warrant thorough consideration. Notably, one of these limitations pertains to the sample size within our dataset, which, despite meticulous curation, could potentially exert influence on the generalizability of our findings. Furthermore, the absence of longitudinally tracked follow-up data constrains our capacity to evaluate the enduring effects of the administered treatment regimen. It is also important to recognize that the utilization of self-reported metrics for certain clinical parameters introduces the prospect of recall bias. The conscientious addressal of these limitations in forthcoming investigations will undoubtedly enrich the holistic comprehension of the intricate neural mechanisms that underlie the response to depression treatment.

To summarize, the findings from our research suggest that GFACNN possesses substantial promise in assessing the effectiveness of antidepressant treatment. The potential clinical applications of our model are extensive, paving the way for more precise and efficacious interventions. Despite recognizing the constraints of our study, we maintain a positive outlook that our efforts provide a robust groundwork for future progress in this crucial research domain.

Data availability statement

The original contributions presented in the study are included in the article/supplementary material, further inquiries can be directed to the corresponding author.

Ethics statement

Ethical approval was not required for the studies involving humans because the original data collection followed proper ethical protocols and approvals. The data is collected from hospitals and does not violate local laws. The studies were conducted in accordance with the local legislation and institutional requirements. Written informed consent for participation was not required from the participants or the participants' legal guardians/next of kin in accordance with the national legislation and institutional requirements because the original data collection followed proper ethical protocols and approvals.

Author contributions

FW contributed to the conception of the study, the reagents, materials, and analysis tools, conceived and designed the experiments, and analyzed the data. ZL, JW, and ZW performed the experiments. All authors contributed to the article and approved the submitted version.

Funding

This work was supported in part by the Scientific Research Funding Project for Hubei Normal University's Teaching Reform Research Project (2021035) and Hubei Normal University's Research Project on Political Education Teaching Reform (KCSZY202148), and Young Teachers of Hubei Normal University (HS2020QN038) and the Hubei Provincial Natural Science Foundation Project under Grant 2022CFB524, in part by the Teaching and Research Reform Project of Hubei Provincial Department of Education (2022438), in part by the Key Project of the Scientific Research Program of Hubei Provincial Department of Education (D20214503), and the School Major Teaching and Research Project (2022A05).

Conflict of interest

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Publisher's note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

References

1. Ke H, Wang F, Ma H, He Z. ADHD identification and its interpretation of functional connectivity using deep self-attention factorization. Knowl-Based Syst. (2022) 250:109082. doi: 10.1016/j.knosys.2022.109082

CrossRef Full Text | Google Scholar

2. Ke H, Chen D, Yao Q, Tang Y, Wu J, Monaghan J, et al. Deep factor learning for accurate brain neuroimaging data analysis on discrimination for structural MRI and functional MRI. In: IEEE/ACM Transactions on Computational Biology and Bioinformatics. IEEE (2023) p. 1–14.

PubMed Abstract | Google Scholar

3. Ke H, Chen D, Shi B, Zhang J, Liu X, Zhang X, et al. Improving brain e-health services via high-performance EEG classification with grouping bayesian optimization. IEEE Trans Serv Comp. (2020) 13:696–708. doi: 10.1109/TSC.2019.2962673

CrossRef Full Text | Google Scholar

4. Song T, Zheng W, Song P, Cui Z. EEG emotion recognition using dynamical graph convolutional neural networks. IEEE Trans Affect Comput. (2018) 11:532–41. doi: 10.1109/TAFFC.2018.2817622

CrossRef Full Text | Google Scholar

5. Jang S, Moon SE, Lee JS. EEG-based video identification using graph signal modeling and graph convolutional neural network. In: 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). Calgary, AB: IEEE. (2018). p. 3066–70.

Google Scholar

6. Li X, Qian B, Wei J, Li A, Liu X, Zheng Q. Classify EEG and reveal latent graph structure with spatio-temporal graph convolutional neural network. In: 2019 IEEE International Conference on Data Mining (ICDM). Beijing: IEEE (2019). p. 389–98. doi: 10.1109/ICDM.2019.00049

CrossRef Full Text | Google Scholar

7. Zhao Y, Dong C, Zhang G, Wang Y, Chen X, Jia W, et al. EEG-Based Seizure detection using linear graph convolution network with focal loss. Comput Methods Programs Biomed. (2021) 208:106277. doi: 10.1016/j.cmpb.2021.106277

PubMed Abstract | CrossRef Full Text | Google Scholar

8. Zhu J, Jiang C, Chen J, Lin X, Yu R, Li X, et al. EEG based depression recognition using improved graph convolutional neural network. Comput Biol Med. (2022) 148:105815. doi: 10.1016/j.compbiomed.2022.105815

PubMed Abstract | CrossRef Full Text | Google Scholar

9. Kipf TN, Welling M. Semi-supervised classification with graph convolutional networks. In: International Conference on Learning Representations. Toulon: Openview.net (2017).

Google Scholar

10. Ke H, Cai C, Wang F, Hu F, Tang J, Shi Y. Interpretation of frequency channel-based cnn on depression identification. Front Comput Neurosci. (2021) 15:773147. doi: 10.3389/fncom.2021.773147

PubMed Abstract | CrossRef Full Text | Google Scholar

11. Ke H, Chen D, Shah T, Liu X, Zhang X, Zhang L, et al. Cloud-aided online EEG classification system for brain healthcare: A case study of depression evaluation with a lightweight CNN. Software: Pract Exp. (2020) 50:596–610. doi: 10.1002/spe.2668

CrossRef Full Text | Google Scholar

12. Ke H, Chen D, Zhang L, Zhang X, Liu X, Li X. Inter-region Synchronization Analysis Based on Heterogeneous Matrix Similarity Measurement. In: Tetko IV, Kürková V, Karpov P, Theis F, editors. Artificial Neural Networks and Machine Learning-ICANN 2019: Workshop and Special Sessions. Cham: Springer International Publishing (2019). p. 258–72. doi: 10.1007/978-3-030-30493-5_27

CrossRef Full Text | Google Scholar

13. Iznak AF, Iznak EV, Sorokin SA. Changes in EEG and reaction times during the treatment of apathetic depression. Neurosci Behav Physiol. (2013) 43:79–83. doi: 10.1007/s11055-012-9694-8

CrossRef Full Text | Google Scholar

14. Wang XJ. Neurophysiological and computational principles of cortical rhythms in cognition. Physiol Rev. (2010) 90:1195–268. doi: 10.1152/physrev.00035.2008

PubMed Abstract | CrossRef Full Text | Google Scholar

15. Al-Harbi KS. Treatment-resistant depression: therapeutic trends, challenges, and future directions. Patient Prefer Adherence. (2012) 6:369–88. doi: 10.2147/PPA.S29716

PubMed Abstract | CrossRef Full Text | Google Scholar

16. Dawson G. Frontal electroencephalographic correlates of individual differences in emotion expression in infants. A brain systems perspective on emotion. Monogr Soc Res Child Dev. (1994) 59:135–51. doi: 10.1111/j.1540-5834.1994.tb01281.x

PubMed Abstract | CrossRef Full Text | Google Scholar

17. Diep C, Garcia-Molina G, Jasko J, Manousakis J, Ostrowski L, White D, et al. Acoustic enhancement of slow wave sleep on consecutive nights improves alertness and attention in chronically short sleepers. Sleep Med. (2021) 81:69–79. doi: 10.1016/j.sleep.2021.01.044

PubMed Abstract | CrossRef Full Text | Google Scholar

18. Horato N, Quagliato LA, Nardi AE. The relationship between emotional regulation and hemispheric lateralization in depression: a systematic review and a meta-analysis. Transl Psychiatry. (2022) 12:162. doi: 10.1038/s41398-022-01927-9

PubMed Abstract | CrossRef Full Text | Google Scholar

19. Başar E. A review of alpha activity in integrative brain function: Fundamental physiology, sensory coding, cognition and pathology. Int J Psychophysiol. (2012) 86:1–24. doi: 10.1016/j.ijpsycho.2012.07.002

PubMed Abstract | CrossRef Full Text | Google Scholar

20. Ressler KJ. Amygdala activity, fear, and anxiety: modulation by stress. Biol Psychiatry. (2010) 67:1117–9. doi: 10.1016/j.biopsych.2010.04.027

PubMed Abstract | CrossRef Full Text | Google Scholar

21. Iosifescu DV, Greenwald S, Devlin P, Mischoulon D, Denninger JW, Alpert JE, et al. Frontal EEG predictors of treatment outcome in major depressive disorder. Eur Neuropsychopharmacol. (2009) 19:772–7. doi: 10.1016/j.euroneuro.2009.06.001

CrossRef Full Text | Google Scholar

22. Fogelson N, Shah M, Scabini D, Knight RT. Prefrontal cortex is critical for contextual processing: evidence from brain lesions. Brain. (2009) 132:3002–10. doi: 10.1093/brain/awp230

PubMed Abstract | CrossRef Full Text | Google Scholar

23. Adamczyk M, Gazea M, Wollweber B, Holsboer F, Dresler M, Steiger A, et al. Cordance derived from REM sleep EEG as a biomarker for treatment response in depression-a naturalistic study after antidepressant medication. J Psychiatr Res. (2015) 63:97–104. doi: 10.1016/j.jpsychires.2015.02.007

PubMed Abstract | CrossRef Full Text | Google Scholar

24. Kesebir S, Demirer RM, Tarhan N. CFC delta-beta is related with mixed features and response to treatment in bipolar II depression. Heliyon. (2019) 5:e01898. doi: 10.1016/j.heliyon.2019.e01898

PubMed Abstract | CrossRef Full Text | Google Scholar

Keywords: classification, depression treatment response, EEG, graph convolutional neural networks, frequency attention

Citation: Lu Z, Wang J, Wang F and Wu Z (2023) Application of graph frequency attention convolutional neural networks in depression treatment response. Front. Psychiatry 14:1244208. doi: 10.3389/fpsyt.2023.1244208

Received: 22 June 2023; Accepted: 06 October 2023;
Published: 17 November 2023.

Edited by:

Dan Chen, Wuhan University, China

Reviewed by:

Xinyuan Yan, University of Minnesota Twin Cities, United States
Dong Cui, Yanshan University, China
Zhenhu Liang, Yanshan University, China

Copyright © 2023 Lu, Wang, Wang and Wu. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Fengqin Wang, 112174113@qq.com

These authors have contributed equally to this work and share first authorship

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.