Gated Multi-Graph Fusion via Graph Attention Networks for Alzheimer's Disease Detection
Summary
This paper proposes a Multi-View Gated Graph Attention Network for Alzheimer's Disease detection from spontaneous speech, using semantic, dependency, and co-occurrence graphs with an adaptive gated fusion mechanism. The model achieves 90.00% accuracy on the ADReSSo dataset, and the source code is publicly available.
View Cached Full Text
Cached at: 07/01/26, 05:33 AM
# Gated Multi-Graph Fusion via Graph Attention Networks for Alzheimer’s Disease Detection Source: [https://arxiv.org/html/2606.31186](https://arxiv.org/html/2606.31186) Li Wei Wen Li Lin Wang\\authorbreakWang Dang XiaoBinKaiYuqinXiaobaoLongbiaoJianwu1School of Future Technology, Tianjin University, Tianjin, China 2Shenzhen Institutes of Advanced Technology, Chinese Academy of Sciences, Shenzhen, China 3College of Computer and Data Science, Fuzhou University, Fuzhou, China 4Huiyan Technology \(Tianjin\) Co\., Ltd, Tianjin, China[lijinyu536@tju\.edu\.cn, longbiao\_wang@tju\.edu\.cn](https://arxiv.org/html/2606.31186v1/mailto:[email protected],%[email protected]) ###### Abstract Spontaneous speech is a vital non\-invasive biomarker for Alzheimer’s Disease \(AD\), yet many systems overlook non\-linear structural disruptions and clinical heterogeneity in pathological language\. We propose a Multi\-View Gated Graph Attention Network that transcribes audio via Automatic Speech Recognition \(ASR\) to construct semantic, dependency, and co\-occurrence graphs, characterizing speech through a "content–structure–flow" framework\. Notably, the co\-occurrence graph leverages Pointwise Mutual Information \(PMI\) from a normative corpus to quantify narrative logic and linguistic deviation\. To address symptomatic diversity, an adaptive gated fusion mechanism dynamically integrates these views\. Evaluated on the ADReSSo dataset, our model achieves 90\.00% accuracy\. Ablation results confirm that the PMI\-based graph and heterogeneity\-aware gating are essential for robust classification across diverse clinical populations\. Our source code is publicly available at https://github\.com/opeacc/AD\. ###### keywords: Alzheimer’s Disease Detection, Graph Neural Networks, Spontaneous Speech Analysis, Gated Fusion Mechanism ## 1Introduction Dementia, primarily AD, represents an escalating global health crisis hallmarked by progressive cognitive decline that manifests early in spontaneous speech\[lindsay\_language\_2021,gumus\_linguistic\_2024\]\. The "Cookie Theft" picture description task is extensively recognized for its clinical utility in eliciting these critical linguistic markers in a controlled environment\[qi\_noninvasive\_2023\]\. Initial efforts in speech\-based dementia detection predominantly relied on traditional machine learning paradigms\[qiao\_alzheimer8217s\_2021,kurdi\]\. These methodologies utilized manual feature engineering to extract handcrafted acoustic parameters—such as pitch and jitter—alongside lexical diversity metrics, which were subsequently classified using algorithms like Support Vector Machines \(SVM\) or Random Forests\[syed\_tackling\_2021,shankar\_systematic\_2025\]\. While these models offered high interpretability\[calza\_linguistic\_2021\], they were constrained by their dependence on expert\-defined features and their inherent inability to capture the latent, non\-linear dependencies found in spontaneous discourse\. The subsequent evolution of deep learning, specifically the application of Large Language Models \(LLMs\) such as BERT, has substantially improved diagnostic performance\[balagopalan\_comparing\_2021,wei\_breaking\_2026\]\. Nonetheless, these models primarily learn semantic representations implicitly\[balagopalan\_bert\_2020,ajroudi\_exploring\_2024,chlasta\_enhancing\_2025\]and often fail to sufficiently characterize the complex, multi\-dimensional structural degradation characteristic of pathological speech\. Recently, researchers have explored the use of Graph Neural Networks \(GNNs\) to model the intricate topological structure of language, yielding promising results\[cai\_exploring\_2023,hallani\_graph\_2025\]\. However, current research in this domain remains insufficient in its modeling of linguistic features\. Furthermore, existing frameworks typically rely on simplistic fusion strategies \(e\.g\., concatenation or fixed\-weight summation\), limiting the model's adaptability to diverse symptomatic manifestations across the clinical spectrum\. In this paper, we propose a multi\-view graph learning framework that addresses two critical gaps in current research through the following innovations: First, we introduce a "content–structure–flow" trinity for comprehensive linguistic modeling\. Traditional methods often overlook the "flow" of discourse—the logical progression of speech\. While semantic graphs capture "content" and dependency graphs capture "structure," we specifically design a Co\-occurrence Graph based on PMI derived from healthy normative data\. This graph uniquely reflects a subject's ability to describe local events\. In patients with AD, speech often exhibits disordered sequences, logical jumps, and repetitive loops\[burke\_comparing\_2023\]\. By integrating this co\-occurrence perspective, our model provides a full\-spectrum characterization of linguistic patterns, capturing not just what is said, but how the narrative logic unfolds\. Second, we propose a Gated Fusion Mechanism to address the clinical heterogeneity of AD\. Clinical observations demonstrate that dementia symptoms are not monolithic: some patients exhibit "syntactic collapse" \(simplified grammar with preserved vocabulary\), while others suffer from "semantic void" \(fluent but meaningless speech\)\[fraser\_linguistic\_2015\]\. Our gated network adaptively assigns weights to the semantic, dependency, and co\-occurrence representations on a per\-sample basis\. This allows the framework to capture sample\-specific features, dynamically focusing on the most discriminative linguistic markers for each individual\. In summary, our contributions are as follows: 1. 1\.Discourse Flow Analysis: We utilize a PMI\-based co\-occurrence graph to quantify the deviation of event description logic from healthy norms\. 2. 2\.A Holistic Multi\-Graph Framework: We integrate semantic, dependency, and co\-occurrence graphs to model the "content–structure–flow" of spontaneous speech\. 3. 3\.Heterogeneity\-aware Fusion: We implemented a gated fusion mechanism that accounts for the diversity of AD symptoms, enhancing the model's ability to adapt to varying symptomatic presentations\. Figure 1:Overview of the proposed Multi\-View Gated Graph Attention Network framework for dementia detection\.\(1\) Audio is transcribed via ASR and converted into word\-level embeddings\. \(2\) Semantic, co\-occurrence, and dependency graphs are constructed to capture multi\-scale linguistic patterns\. \(3\) Topological features are extracted by GAT layers and aggregated via global pooling\. \(4\) These multi\-view features are adaptively fused by a gating network\. \(5\) The fused features are fed into an MLP for final classification\. ## 2Multi\-View Gated GAT We propose a multi\-dimensional graph learning framework, as illustrated in Figure[1](https://arxiv.org/html/2606.31186#S1.F1), designed to capture the "content–structure–flow" of spontaneous speech\. This architecture consists of five main modules as detailed below\. ### 2\.1Speech Transcription and Node Embedding Automatic Speech Recognition \(ASR\):Given the raw audio signal of a subject describing the "Cookie Theft" picture, we utilize Whisper\[pmlr\-v202\-radford23a\]for transcription\. Whisper’s large\-scale weak supervision training makes it exceptionally robust to the disfluencies common in dementia\-impacted speech\. The output is a sequence ofNNwords:S=\{w1,w2,…,wN\}S=\\\{w\_\{1\},w\_\{2\},\\dots,w\_\{N\}\\\}\. Node Feature Initialization:To represent each word in a high\-dimensional semantic space, we use a pre\-trained BERT\-base\[devlin\_bert\_2019\]model\. Since BERT employs a WordPiece tokenizer, a wordwiw\_\{i\}may be split intokksub\-word tokens\{ti,1,ti,2,…,ti,k\}\\\{t\_\{i,1\},t\_\{i,2\},\\dots,t\_\{i,k\}\\\}\. To maintain a 1\-to\-1 mapping between the transcript and graph nodes, we define the node representation𝐱i∈ℝ768\\mathbf\{x\}\_\{i\}\\in\\mathbb\{R\}^\{768\}as the mean of its constituent token embeddings: 𝐱i=MeanPooling\(BERT\(ti,1\),…,BERT\(ti,k\)\)\.\\mathbf\{x\}\_\{i\}=\\text\{MeanPooling\}\(\\text\{BERT\}\(t\_\{i,1\}\),\\dots,\\text\{BERT\}\(t\_\{i,k\}\)\)\.\(1\)The final node feature matrix for a transcript is𝐗∈ℝN×768\\mathbf\{X\}\\in\\mathbb\{R\}^\{N\\times 768\}\. ### 2\.2Multi\-View Graph Construction We define three graphs𝒢sem\\mathcal\{G\}\_\{sem\},𝒢syn\\mathcal\{G\}\_\{syn\}, and𝒢co\\mathcal\{G\}\_\{co\}sharing the same vertex set𝒱\\mathcal\{V\}, where\|𝒱\|=N\|\\mathcal\{V\}\|=N\. #### 2\.2\.1Semantic Graph: Content Representation This graph models the conceptual density and semantic relationships\. We compute the cosine similarity between every pair of word embeddings𝐱i\\mathbf\{x\}\_\{i\}and𝐱j\\mathbf\{x\}\_\{j\}\[chen\_iterative\_2020\]\. An edgeeij∈ℰseme\_\{ij\}\\in\\mathcal\{E\}\_\{sem\}is created if the similarity exceeds a predefined thresholdτs\\tau\_\{s\}: Sim\(𝐱i,𝐱j\)=𝐱i⊤𝐱j∥𝐱i∥∥𝐱j∥\>τs\.\\operatorname\{Sim\}\(\\mathbf\{x\}\_\{i\},\\mathbf\{x\}\_\{j\}\)=\\frac\{\\mathbf\{x\}\_\{i\}^\{\\top\}\\mathbf\{x\}\_\{j\}\}\{\\lVert\\mathbf\{x\}\_\{i\}\\rVert\\,\\lVert\\mathbf\{x\}\_\{j\}\\rVert\}\>\\tau\_\{s\}\.\(2\)This captures the global semantic structural characteristics of the subject\. #### 2\.2\.2Dependency Graph: Structural Integrity To capture grammatical decay \(e\.g\., loss of complex clauses\), we use spaCy\[honnibal2017spacy\]to perform dependency parsing\. An edgeeij∈ℰsyne\_\{ij\}\\in\\mathcal\{E\}\_\{syn\}is established if there is a direct syntactic dependency \(e\.g\., nominal subject, direct object, modifier\) betweenwiw\_\{i\}andwjw\_\{j\}\. This graph reflects the structural complexity of the subject’s language\[ivanova\_defying\_2023,lian\_dependency\_2025\]\. #### 2\.2\.3Co\-occurrence Graph: Discourse Flow via Normative PMI To capture the "flow" dimension of the "content\-structure\-flow" trinity, we design a co\-occurrence graph that quantifies the logical progression and temporal coherence of speech\. Traditional sequential models often fail to detect the subtle "logical jumps" or repetitive loops characteristic of AD\-impacted discourse\. Our approach addresses this by measuring how much a subject's word associations deviate from established healthy linguistic norms\. We first construct a Normative Corpus𝒟hc\\mathcal\{D\}\_\{hc\}using only transcripts from healthy controls\. This corpus serves as a linguistic reference baseline for characterizing natural word associations within the context of the 'Cookie Theft' task\. We calculate the Pointwise Mutual Information \(PMI\)\[church\_word\_1990,yao\_graph\_2018\]for all word pairs\(wi,wj\)\(w\_\{i\},w\_\{j\}\)that appear within a sliding window of sizennacross𝒟hc\\mathcal\{D\}\_\{hc\}: PMI\(wi,wj\)=logP\(wi,wj\)P\(wi\)P\(wj\),\\text\{PMI\}\(w\_\{i\},w\_\{j\}\)=\\log\\frac\{P\(w\_\{i\},w\_\{j\}\)\}\{P\(w\_\{i\}\)P\(w\_\{j\}\)\},\(3\)whereP\(wi\)P\(w\_\{i\}\)andP\(wj\)P\(w\_\{j\}\)are the individual unigram probabilities, andP\(wi,wj\)P\(w\_\{i\},w\_\{j\}\)is the joint probability of co\-occurrence within the window\. A high PMI indicates a strong, statistically significant association between words \(e\.g\., "sink" and "overflowing"\) that reflects healthy narrative logic\. For a specific subject's transcriptSS, we construct the co\-occurrence graph𝒢co\\mathcal\{G\}\_\{co\}by mapping the pre\-calculated normative weights onto the subject's actual word sequence\. An edgeeij∈ℰcoe\_\{ij\}\\in\\mathcal\{E\}\_\{co\}is established between wordwiw\_\{i\}and any subsequent wordwi\+kw\_\{i\+k\}\(where1≤k≤n1\\leq k\\leq n\) if and only if their normative PMI exceeds a predefined thresholdτc\\tau\_\{c\}\. The structural density inherent in the co\-occurrence graph𝒢co\\mathcal\{G\}\_\{co\}functions as a direct proxy for discourse coherence, effectively capturing the nuanced temporal "flow" of spontaneous speech\. Within a healthy flow scenario—where a subject adheres to a logical and conventional narrative trajectory—the resulting𝒢co\\mathcal\{G\}\_\{co\}is defined by a high density of edges paired with significant PMI weights\. Together, these elements construct a robustly well\-connected topological "skeleton" composed of normative word associations\. Conversely, the pathological disruption observed in patients with AD—which manifests as labored word retrieval or disjointed logical transitions—produces word pairs that are statistically rare or nonsensical compared to the normative baseline\. This ultimately yields a fragmented graph topology marked by sparse or anomalous connectivity\. ### 2\.3View\-Specific Encoding via GAT To learn the importance of different neighbors within each graph, we employ a Graph Attention Network \(GAT\)\[velickovic\_graph\_2018\]\. For a nodeiiin graphk∈\{sem,syn,co\}k\\in\\\{sem,syn,co\\\}, the attention coefficientαij\\alpha\_\{ij\}is computed as: αij=exp\(LeakyReLU\(a→⊤\[𝐖𝐱i∥𝐖𝐱j\]\)\)∑l∈𝒩iexp\(LeakyReLU\(a→⊤\[𝐖𝐱i∥𝐖𝐱l\]\)\),\\alpha\_\{ij\}=\\frac\{\\exp\\bigl\(\\operatorname\{LeakyReLU\}\\bigl\(\\vec\{a\}^\{\\\!\\top\}\\bigl\[\\mathbf\{W\}\\mathbf\{x\}\_\{i\}\\mathbin\{\\\|\}\\mathbf\{W\}\\mathbf\{x\}\_\{j\}\\bigr\]\\bigr\)\\bigr\)\}\{\\sum\_\{l\\in\\mathcal\{N\}\_\{i\}\}\\exp\\bigl\(\\operatorname\{LeakyReLU\}\\bigl\(\\vec\{a\}^\{\\\!\\top\}\\bigl\[\\mathbf\{W\}\\mathbf\{x\}\_\{i\}\\mathbin\{\\\|\}\\mathbf\{W\}\\mathbf\{x\}\_\{l\}\\bigr\]\\bigr\)\\bigr\)\},\(4\)wherea→\\vec\{a\}and𝐖\\mathbf\{W\}are learnable parameters and𝒩i\\mathcal\{N\}\_\{i\}is the neighborhood of nodeii\. The updated node features𝐡i′\\mathbf\{h\}^\{\\prime\}\_\{i\}are aggregated to form a global graph representation𝐳k\\mathbf\{z\}\_\{k\}using Global Mean Pooling: 𝐳k=1N∑i=1N𝐡i′,𝐳k∈ℝdgat\.\\mathbf\{z\}\_\{k\}=\\frac\{1\}\{N\}\\sum\_\{i=1\}^\{N\}\\mathbf\{h\}^\{\\prime\}\_\{i\},\\quad\\mathbf\{z\}\_\{k\}\\in\\mathbb\{R\}^\{d\_\{gat\}\}\.\(5\) ### 2\.4Heterogeneity\-Aware Gated Fusion Given that AD symptoms vary \(e\.g\., some lose syntax, others lose semantic logic\), we use a gated mechanism to dynamically weight the three views\[arevalo\_gated\_2017\]\. First, we concatenate the three graph vectors:𝐙cat=\[𝐳sem∥𝐳syn∥𝐳co\]\\mathbf\{Z\}\_\{cat\}=\[\\mathbf\{z\}\_\{sem\}\\mathbin\{\\\|\}\\mathbf\{z\}\_\{syn\}\\mathbin\{\\\|\}\\mathbf\{z\}\_\{co\}\]\. The gating network computes a weight vector𝐠\\mathbf\{g\}: 𝐠=Softmax\(𝐖g𝐙cat\+𝐛g\),𝐠=\[βsem,βsyn,βco\]\.\\mathbf\{g\}=\\text\{Softmax\}\(\\mathbf\{W\}\_\{g\}\\mathbf\{Z\}\_\{cat\}\+\\mathbf\{b\}\_\{g\}\),\\quad\\mathbf\{g\}=\[\\beta\_\{sem\},\\beta\_\{syn\},\\beta\_\{co\}\]\.\(6\)The fused representation𝐳fused\\mathbf\{z\}\_\{fused\}is a weighted sum: 𝐳fused=βsem𝐳sem\+βsyn𝐳syn\+βco𝐳co\.\\mathbf\{z\}\_\{fused\}=\\beta\_\{sem\}\\mathbf\{z\}\_\{sem\}\+\\beta\_\{syn\}\\mathbf\{z\}\_\{syn\}\+\\beta\_\{co\}\\mathbf\{z\}\_\{co\}\.\(7\)To prevent the loss of individual view details during fusion, we apply a pass\-through concatenation: 𝐳final=\[𝐳fused∥𝐳sem∥𝐳syn∥𝐳co\]\.\\mathbf\{z\}\_\{\\text\{final\}\}=\\bigl\[\\mathbf\{z\}\_\{\\text\{fused\}\}\\mathbin\{\\\|\}\\mathbf\{z\}\_\{\\text\{sem\}\}\\mathbin\{\\\|\}\\mathbf\{z\}\_\{\\text\{syn\}\}\\mathbin\{\\\|\}\\mathbf\{z\}\_\{\\text\{co\}\}\\bigr\]\.\(8\)This ensures that the classifier has access to both the "optimized mixture" and the raw specific features of each linguistic dimension\. ### 2\.5Classification and Objective Function The final vector𝐳final\\mathbf\{z\}\_\{final\}is passed through a Multi\-Layer Perceptron \(MLP\)\. To classify the subject as either AD or Healthy Control \(HC\), the model outputs a predicted probabilityy^=Sigmoid\(MLP\(𝐳final\)\)\\hat\{y\}=\\text\{Sigmoid\}\(\\text\{MLP\}\(\\mathbf\{z\}\_\{final\}\)\)\. To improve the model's generalization and prevent over\-confident predictions, we employ Label Smoothing during training\. Instead of using hard binary labelsy∈\{0,1\}y\\in\\\{0,1\\\}, we transform them into soft targetsylsy\_\{\\text\{ls\}\}: yls=y\(1−α\)\+αK,y\_\{\\text\{ls\}\}=y\(1\-\\alpha\)\+\\frac\{\\alpha\}\{K\},\(9\)whereα=0\.2\\alpha=0\.2is the smoothing parameter andK=2K=2is the number of classes\. The model is then optimized using the Smoothed Binary Cross\-Entropy \(BCE\) Loss: ℒ=−1M∑m=1M\[yls,mlog\(y^m\)\+\(1−yls,m\)log\(1−y^m\)\]\.\\mathcal\{L\}=\-\\frac\{1\}\{M\}\\sum\_\{m=1\}^\{M\}\[y\_\{\\text\{ls\},m\}\\log\(\\hat\{y\}\_\{m\}\)\+\(1\-y\_\{\\text\{ls\},m\}\)\\log\(1\-\\hat\{y\}\_\{m\}\)\]\.\(10\)This approach encourages the model to learn more robust latent representations by penalizing extreme logit values, thereby enhancing both calibration and classification performance on the clinical dataset\. ## 3Experiments ### 3\.1Experimental settings #### 3\.1\.1Dataset Our experiments were conducted using the standardized ADReSSo 2021 Challenge dataset\[luz\_detecting\_2021\], which is a curated subset of the Pitt Corpus within the DementiaBank database\. Samples were collected via the "Cookie Theft" picture description task—a clinical gold standard for assessing narrative speech and cognitive status\. The corpus comprises audio recordings and transcripts from 237 English speakers, including 122 individuals diagnosed with AD and 115 HC\. Following the ADReSSo 2021 protocol, the data is partitioned into a training set of 166 participants \(87 AD, 79 HC\) and a test set of 71 participants \(35 AD, 36 HC\)\. We cropped the raw audio files based on provided timestamps to retain only segments containing subject speech\. Since our approach constructs graph nodes directly from word\-level tokens in subject narratives, samples lacking valid subject\-specific segments—specifically five from the training set and one from the test set—were excluded as they could not support graph construction\. To ensure experimental fairness and rigorous comparison, we re\-implemented all baseline methods and evaluated them on this filtered version of the dataset\. #### 3\.1\.2Implementation details All experiments were conducted on an NVIDIA GeForce RTX 4090D GPU\. For the model architecture, the input dimension was set to 768 to match the BERT\-base embeddings\. The GAT component consisted of a single layer with 2 attention heads and a hidden dimension of 128\. The subsequent MLP utilized a hidden layer of 256 units\. To prevent overfitting, we applied a dropout rate of 0\.5 and a weight decay of 0\.003\. Regarding the hyperparameter configuration, the model was trained for a maximum of 100 epochs with a batch size of 8\. We employed the Adam optimizer with an initial learning rate of1×10−31\\times 10^\{\-3\}, coupled with a ReduceLROnPlateau scheduler\. Furthermore, we implemented label smoothing of 0\.2 to improve the model's calibration and robustness\. Through extensive experimentation, we determined the optimal hyperparameters for graph construction: a sliding window size ofn=3n=3and an edge addition threshold ofτc=0\.3\\tau\_\{c\}=0\.3for the co\-occurrence graph, and a threshold ofτs=0\.8\\tau\_\{s\}=0\.8for the semantic graph, which collectively yielded the best performance in our final results\. ### 3\.2Main results and discussions As illustrated in Table[1](https://arxiv.org/html/2606.31186#S3.T1), our proposed framework demonstrates superior performance, consistently outperforming all baseline methods across all metrics\. Specifically, it achieves a 5\-fold cross\-validation accuracy of 88\.81% on the training set and an accuracy of 90\.00% on the test set\. Table 1:Performance comparison of different methods on 5\-fold cross\-validation and test set \(%\)\.Compared to the baseline established by Luz et al\. , our model demonstrates a substantial performance leap\. In contrast to Ajroudi et al\., who utilized OpenAI’s text embeddings as high\-dimensional features for direct classification, our approach employs BERT to establish a rigorous word\-to\-node mapping via token averaging\. This strategy leverages deep semantic representations while simultaneously preserving the discrete symbolic structure of the text\. Unlike the approach by Balagopalan et al\., which utilizes BERT hidden features for direct classification, our multi\-view gated graph attention network framework enables structural linguistic modeling by characterizing speech patterns through complementary perspectives\. While Cai et al\. focused on dependency or dynamic graphs, our integration of a PMI\-based co\-occurrence graph effectively captures temporal anomalies in speech flow\. Pathological markers common in AD patients—such as disjointed logical transitions or labored word retrieval—are explicitly manifested through abnormal fluctuations in PMI weights\. Simultaneously, the dependency graph models the integrity of the linguistic "skeleton," while the semantic graph utilizes cosine similarity to detect subtle semantic drift\. The method proposed by Ortiz\-Perez et al\. achieved state\-of\-the\-art performance under the cross\-validation setting\. However, it was observed that this configuration leads to a significant performance degradation when the model is evaluated on the test set\. This phenomenon may be attributed to the model overfitting to its respective validation split in each fold, yielding inflated overall metrics\. For a more stringent assessment of performance, we evaluated the proposed approach against the test set, yielding an accuracy rate of 81\.43%\. ### 3\.3Ablation Study To evaluate the individual contribution of each architectural component to the diagnostic performance of our proposed method, we conducted a series of ablation experiments on the test set\. By systematically removing specific graph views and the fusion mechanism, we generated five ablation variants for comparison\. The results are summarized in Table[2](https://arxiv.org/html/2606.31186#S3.T2)\. The most significant performance degradation occurred in the w/o Graph Structure variant, which relies solely on the average pooling of BERT embeddings without any topological modeling\. This variant achieved the lowest scores across all metrics \(Acc: 81\.43%, F1: 80\.60%\), underscoring the critical importance of capturing non\-linear structural dependencies in pathological speech\. Among the specific linguistic views, the removal of the Co\-occurrence Graph led to a substantial decline in the F1\-score to 85\.29%\. This confirms that the temporal "flow" and logical progression captured via PMI are indispensable biomarkers for Alzheimer's Disease\. Similarly, the removal of the Semantic Graph and Dependency Graph resulted in accuracy drops to 85\.71% and 87\.14%, respectively\. These results underscore that while semantic content provides the "substance" of the diagnosis, the syntactic "skeleton" provides the necessary linguistic constraints for robust classification\. The w/o Gated Fusion variant, which utilizes a static averaging of the three graph outputs instead of the dynamic weighting network, saw its accuracy fall to 87\.14%\. This confirms that a "one\-size\-fits\-all" approach to linguistic feature integration is insufficient for AD detection\. The gated network’s ability to adaptively prioritize different linguistic views based on individual patient speech patterns—such as prioritizing syntactic errors in one patient and semantic incoherence in another—is a critical factor in achieving the full model's accuracy of 90\.00%\. Table 2:Ablation study results on test set \(%\)\. ## 4Conclusion Experimental evaluations on the ADReSSo 2021 dataset validate that the Multi\-View Gated Graph Attention Network provides a robust framework for identifying AD by holistically characterizing the "content\-structure\-flow" features of spontaneous speech\. One of the primary contributions of this study is the pivotal role played by the co\-occurrence graph; by utilizing normative PMI to quantify discourse logic, it successfully captures the incoherent logical transitions and repetitive patterns characteristic of cognitive decline that traditional sequential models are typically unable to detect\. Ablation results indicate that removing this "flow" dimension significantly impairs diagnostic performance, confirming that narrative progression is a crucial feature\. Furthermore, unlike conventional static fusion strategies, our gated network adaptively assigns weights to linguistic features on a per\-sample basis, effectively mitigating the challenges posed by the inherent clinical heterogeneity of AD\. Future research will prioritize evolving the framework into a comprehensive multimodal system by integrating acoustic prosody as additional graph\-based perspectives\. ## 5Acknowledgments This work was supported by the National Natural Science Foundation of China under Grant U23B2053 and by the National Talent Program under Grants E4G008, E55304, E43301, and E476\. ## 6Generative AI Use Disclosure During the preparation of this manuscript, we used generative AI tools to polish the English language and improve readability\. These tools were not used to generate any scientific claims, experimental results, or significant parts of the manuscript\. ## References
Similar Articles
A Temporally Augmented Graph Attention Network for Affordance Classification
EEG-tGAT is a temporally augmented Graph Attention Network that improves affordance classification from interaction sequences by incorporating temporal attention and dropout mechanisms. The model enhances GATv2 for sequential data where temporal dimensions are semantically non-uniform.
Multilingual Detection of Alzheimer's Disease from Speech: A Cross-Linguistic Transfer Learning Approach
This paper proposes a cross-linguistic transfer learning approach for detecting Alzheimer's Disease from speech across multiple languages, achieving F1 scores of 82% and supporting real-time screening applications.
Uncertainty-Aware Longitudinal Forecasting of Alzheimer's Disease Progression Using Deep Learning
This paper proposes a probabilistic framework for Alzheimer's disease progression forecasting that combines ordinal diagnosis prediction, multi-horizon trajectory generation, and decomposed uncertainty estimation using a Temporal Fusion Transformer encoder and an autoregressive Mixture Density Network. The model outperforms baselines on ADNI data, achieving near-nominal 90% credible interval coverage with clinically meaningful uncertainty signals.
TMR-GGNN: Credit Card Fraud Detection based on Time-Aware Multi-Relational Guided Graph Neural Network
Proposes TMR-GGNN, a time-aware multi-relational graph neural network for credit card fraud detection that handles imbalanced data and evolving fraud patterns via contrastive learning and focal loss.
Forecasting Medium-Horizon Alzheimer's Disease Progression: Residual Gap-Aware Transformers for 24-Month CDR-SB Change from ADNI Clinical and Biomarker Histories
This paper proposes a residual gap-aware transformer that combines a mixed-effects statistical reference with transformer-based residual learning to forecast 24-month CDR-SB change from ADNI clinical and biomarker histories, achieving reduced MSE and improved correlation over baselines.