ORIGINAL RESEARCH article

Front. Neurosci., 20 May 2026

Sec. Brain Imaging Methods

Volume 20 - 2026 | https://doi.org/10.3389/fnins.2026.1786355

Structural connectome analysis using a graph-based deep model for prediction of non-imaging variables

  • 1. Athinoula A. Martinos Center for Biomedical Imaging, Radiology Department, Massachusetts General Hospital, Boston, MA, United States

  • 2. Radiology Department, Harvard Medical School, Boston, MA, United States

  • 3. CSAIL, Massachusetts Institute of Technology, Cambridge, MA, United States

Abstract

We address the prediction of non-imaging variables based on structural brain connectivity derived from diffusion magnetic resonance images, using graph-based machine learning. We predict age and the mini-mental state examination (MMSE) score as examples of a demographic and a clinical variable. We propose a machine-learning model inspired by graph convolutional networks (GCNs), which takes a brain connectivity graph as input and processes the data separately through a parallel GCN mechanism with multiple branches. The novelty of our work lies in the model architecture, especially the Connectivity Attention Block, which learns an embedding representation of brain graphs while providing graph-level attention. We show experiments on publicly available datasets of PREVENT-AD and OASIS3. We validate our model by comparing it to existing methods and via ablations. This quantifies the degree to which the connectome varies depending on the task, which is important for improving our understanding of health and disease across the population. The proposed model generally demonstrates higher performance especially for age prediction compared to the existing machine-learning algorithms we tested, including classical methods and (graph and non-graph) deep learning.

1 Introduction

A structural connectome is a comprehensive map of the physical (anatomical) connections between different regions of the brain. It represents the white matter pathways that link various brain regions, forming a network that supports communication and information flow across the brain (; Sporns et al., 2005). Analyzing the structural connectome provides insight into neural circuitry, connectivity patterns, and their implications for cognition and behavior, contributing to our understanding of brain development, aging, and the impact of neurological conditions on brain wiring (; Zhang et al., 2022). Connectomic analysis is a relatively new avenue for studying the brain, which, while not yet included in clinical practice, holds promise for neuroscientific discoveries and biomarker development. Given the complexity and the vast amount of data involved, deep learning (DL) techniques are likely to be effective in analyzing the connectome. Structural brain connectivity analysis is a data-driven approach that explores the overall structural connections in the brain. It involves studying patterns of anatomical connectivity via fiber tracking (tractography) throughout the brain (Zalesky et al., 2012).

Structural connectome graphs have been used to study a wide range of neurological and psychiatric disorders, including Alzheimer's disease (AD) (; Wang et al., 2018; ; ; ), schizophrenia (; Wang Y.-M. et al., 2020; Shi et al., 2012), autism spectrum disorders (ASD) (Tolan and Isik, 2018), and Parkinson's disease (; ; Zhang et al., 2018; Zhang Y. et al., 2019), as well as to understand cognitive decline (Xu et al., 2021) and normal brain development and aging (; ; ; ; Neudorf et al., 2024). Numerous studies have identified specific structural and functional changes in the brains of patients with AD, such as altered functional activation, decreased volume or thickness of gray matter in certain brain areas, and abnormalities in the connections between different regions (Xie and He, 2012).

Structural brain connectivity analysis using artificial intelligence (AI) is an emerging field (Sjöblom et al., 2020; ). The exploration of AI applications in deciphering dMRI data to study brain connectivity is an evolving domain that needs further investigation (). In this paper, we develop a technique to analyze dMRI-derived connectivity using DL for age and dementia prediction. Recently, Prescott et al. (2022) have shown that structural connectivity is a crucial factor in identifying early-onset AD risk, as individuals with a genetic predisposition show lower connectivity, especially in the frontoparietal control network, and this reduced connectivity is linked to the estimated time until dementia symptoms emerge. Toward this goal, one of the key tasks we address is predicting the Mini-Mental State Examination (MMSE) score of subjects directly from their structural connectomes using our proposed AI-based framework, thereby enabling quantitative estimation of cognitive decline associated with dementia.

Further, studying brain aging through the structural connectome is crucial as it provides insight into how brain connectivity and network organization change over time, which can be related to cognitive decline, neurodegenerative diseases, and overall brain health (Meunier et al., 2009). Accurate brain age prediction also serves as a potential biomarker for early detection of atypical aging trajectories, helping to identify individuals at risk of conditions such as AD and other forms of dementia. The task of predicting clinical and demographic variables from structural connectomic data, however, poses significant challenges due to the high dimensionality and non-Euclidean nature of brain connectivity. A recent work () shows that convolutional neural networks show suboptimal performance when used standalone, compared to using them in combination with Multi Layered Perceptrons (MLPs). Traditional DL approaches for age prediction have predominantly utilized convolutional neural networks (CNNs) applied to structural MRI data. A recent work () proposed a DL algorithm that leverages brain structural imaging data and enhances prediction accuracy by integrating biological sex information, employing a dataset of 3,004 healthy subjects aged 18 and above using CNN algorithms on T1-weighted images. Similarly, lightweight CNN architectures such as Simple Fully Convolutional Networks (SFCN) have demonstrated accurate disease prediction with neuroimaging data, with CNNs showing the ability to accurately predict chronological age in healthy individuals from structural MRI brain scans (Peng et al., 2021; ). Machine learning (ML) algorithms trained to estimate age from brain structural MRI using DL-based approaches have revealed genetic associations, with new DL methods uncovering associated sequence variants (). Recent advances include anatomical feature attention-enhanced 3D-CNNs for age prediction from structural MRI data, with CNN architectures capturing structural feature changes of brain aging based on MRI to predict age in healthy individuals (Zhang Y. et al., 2024; Zhang X. et al., 2024).

DL approaches for MMSE prediction have been less extensively explored compared to age prediction, with most studies focusing on joint prediction tasks combining disease diagnosis and cognitive assessment. developed a 3D CNN architecture for both AD classification and joint MMSE score prediction using resting-state functional MRI scans of 331 participants, obtaining functional 3-dimensional independent component spatial maps as features for both classification and regression tasks. The limited number of studies specifically targeting MMSE prediction using DL suggests this remains an underexplored area, with most cognitive assessment predictions relying on multimodal approaches or functional connectivity data rather than structural MRI alone.

Graph neural networks (GNNs), particularly the graph convolutional network (GCN) architecture (Zhang S. et al., 2019), provide a powerful and flexible framework for analyzing brain connectivity data. GCNs operate on graph representations of the brain, where nodes correspond to anatomical regions and edges encode structural connectivity (e.g., fiber density or tract strength), enabling the model to integrate information from each region along with the context provided by its connected neighbors. Thus, GCNs leverage the rich structural information in the connectome to make accurate predictions. They do so by performing iterative message-passing between neighboring nodes in the graph, using learnable functions to aggregate and transform information from neighboring nodes, and updating the features of each node based on the aggregated information. This allows GCNs to capture the complex relationships between brain regions and their connections, and make predictions based on this information. A GCN-based model is promising for analyzing the structural connectome and has shown great potential for improving our understanding of neurological and psychiatric disorders (,), as well as normal brain development and aging (Li et al., 2020).

Recent GCNs have been employed for functional brain network analysis (Li et al., 2021), psychiatric disorder diagnosis (Zheng et al., 2024), optimization of GNN architectures for schizophrenia spectrum disorder prediction (Wang et al., 2024), classification of ASD versus hyper complex brain networks (), and sex classification (). Many papers have shown work using structural brain networks for causal inference (Wein et al., 2021), brain age estimation (Moon et al., 2024), early diagnosis of AD (Zhang et al., 2023a), and schizophrenia diagnosis (Sebenius et al., 2021), achieving high performance compared to existing ML, including DL, methods. GCNs have also been combined with recurrent neural networks to predict sex on temporal functional brain connectivity graphs (). A spectral GCN has been employed for region-of-interest identification in functional connectivity graphs and for sex classification (). In a multi-modal integration technique, Qu et al. (2025) proposed a MaskGNN framework that integrates multimodal brain connectivity data for predictive analysis. Specifically, functional connectivity from fMRI and structural connectivity from DTI were combined at the node level and used as inputs to the MaskGNN model. In the latent space, the model further incorporated anatomical statistics (AS) from sMRI and computed structure-function coupling to capture complementary relationships between modalities. The aggregated features were processed through MaskGNN embedding, pooling, and readout layers, enabling effective multimodal feature learning.

Methodologically, most GCN methods use the Laplacian-filter based spectral implementation (). GCNs suffer from limited generalization to new graphs due to their dependency on the fixed graph Laplacian (Li et al., 2018; Oono and Suzuki, 2019), and they struggle with over-smoothing in deep architectures where node representations become indistinguishable. Graph attention networks (GATs) (Veličković et al., 2017) incorporate attention mechanisms for adaptive edge weighting, enabling nodes to selectively attend to their neighborhood features without requiring costly matrix operations or prior knowledge of graph structure. GATs leverage masked self-attentional layers to address shortcomings of prior graph convolution methods by enabling nodes to attend over their neighborhoods' features and implicitly specify different weights to different nodes in a neighborhood without requiring costly matrix operations or depending on knowing the graph structure upfront. Despite these advantages, GATs are computationally inefficient for capturing long-range dependencies due to over-smoothing issues () and exhibit high computational costs when applied to dense graphs (Wu et al., 2020).

Dynamic Graph CNNs (DGCNNs) (Phan et al., 2018) are employed for temporal graph analysis of multi-level graph structures and enable hierarchical learning through spatiotemporal integration of spatial and temporal data. While DGCNNs can adapt to changing graph topologies over time, they suffer from computational inefficiency and instability due to repeated graph construction at each layer, leading to high memory usage and potential noise amplification. Both GCN and GAT methods face scalability challenges with large graphs (Liu et al., 2020), requiring specialized sampling or approximation techniques to maintain computational tractability in real-world applications.

In this paper, we propose a novel graph-based DL model to improve the prediction of demographic and clinical variables from structural brain connectivity. We introduce a computationally efficient and robust architecture that combines three key components: (1) GCNs with residual connections (ResGCN, Pei et al., 2022) to support brain graph data processing and analysis, (2) fully connected (FC) layers followed by non-linearity for efficient structure-independent feature learning, and (3) a novel Connectivity Attention Block (CAB) that dynamically prioritizes informative inter-regional brain connections. Attention is widely used in recent methods, is competitive with convolutions (Vaswani et al., 2017; ), and is used in brain image analysis (; Zhang et al., 2023b; Ranjbarzadeh et al., 2021). Therefore, the design involving attention allows the model to capture rich representations at both the node (brain region) and subject levels, bridging fine-grained neuroanatomical patterns and global connectivity profiles. Following our previous work demonstrating the improvement that structural connectivity data brings to cortical registration (Zhou et al., 2026) and segmentation (), here we show how structural connectivity can help in prediction. Experimental results on two publicly available neuroimaging datasets show that our method outperforms both traditional ML approaches and state-of-the-art graph-based DL models. A preliminary conference version of the proposed network architecture (excluding the new CAB) for the task of sex classification has been previously presented ().

The proposed architecture introduces a combination of complementary components that collectively overcome the aforementioned individual weaknesses of traditional methods. The integration of ResGCNs with residual connections (Pei et al., 2022) is expected to tackle the over-smoothing problem that plagues standard GCNs in deep architectures, enabling the model to retain discriminative power across multiple layers. The inclusion of FC layers provides structure-independent feature learning capabilities, compensating for the limited generalization issues inherent in graph Laplacian-dependent methods by allowing the model to capture global patterns beyond local graph topology. Most importantly, the novel CAB represents a departure from traditional uniform message aggregation to adaptive, data-driven connection weighting, directly addressing the challenge of dense brain connectivity networks where standard GNN methods exhibit performance degradation. This attention-based approach aligns with recent advances in topological cycle graph attention networks that delineate functional backbones within brain functional graphs by distinguishing key pathways essential for signal transmission from non-essential, redundant connections. By combining these three components, the architecture creates a robust framework that maintains computational efficiency while capturing both fine-grained neuroanatomical patterns and global connectivity profiles, effectively bridging the gap between the theoretical capabilities of GNNs and the practical demands of connectomic analysis for age and cognitive-assessment prediction.

The remainder of this paper, which provides a comprehensive evaluation of the proposed architecture and its implications for neuroimaging research, is organized as follows. We begin with a detailed presentation of the model architecture in the Method section, including the mathematical formulations of all the model components, the design specifications of the FC layers, and the new CAB mechanism. Subsequently, we describe the experimental design in the Experiments section, encompassing dataset descriptions, preprocessing protocols, evaluation metrics, implementation details, and baseline comparisons with both traditional ML approaches and state-of-the-art graph-based DL models for cross-validation and test data. The Results and Discussion section presents quantitative performance analyses across multiple neuroimaging tasks, including age and MMSE score prediction, along with ablation studies demonstrating the contribution of each architectural component. Following the empirical evaluation, we provide a thorough discussion of the findings, addressing the model's strengths, limitations, and computational efficiency compared to existing methods. Finally, we explore the clinical implications of our approach, discussing how the improved prediction accuracy and interpretability features of the attention-based connectivity analysis can inform clinical decision-making processes and contribute to a better understanding of brain aging and patterns of cognitive decline in neurological and psychiatric disorders.

2 Method

Given a dataset of S subjects, each subject has an associated brain graph G∈ℝN×N with N denoting the number of brain regions (graph nodes), a feature matrix X∈ℝN×M with M the number of features per node, and a label y∈ℝ (i.e., value of the clinical or demographic variable to be predicted). The task is to predict y, for which we define a model fθ as defined in Equation 1:

where θ is the set of learnable parameters. The model we propose comprises four sub-parts, modules 1 to 4, as shown in Figure 1. Each module is designed to process the combination of X and G to produce a latent embedding. The last part combines all the previous outputs to produce the predicted label ŷ. We describe all four modules separately and then explain the whole end-to-end model.

Figure 1

2.1 Module 1: Graph Convolution

This module comprises two branches, each with a graph convolution with a different embedding size, and a skip connection as shown in Figure 1. We employ a combination of ResGCN layers (), which captures low-level features of the graph. Each ResGCN (with a different embedding size) transforms the same input data into a different space, enabling the model to learn diverse representations of the graph data. One layer focuses on capturing low-dimensional, essential features, while the other learns higher-dimensional, more nuanced relationships. The skip connection is then combined with these learned representations, allowing the model to leverage both the basic, essential features and the more intricate relationships within the graph. The outputs of these layers are fed to an FC layer (shown as FC2 in Figure 1) to produce the output of the module, h6.

2.2 Module 2: Fully Connected (FC1) Layer

In this layer, we remove any structure that is present in the feature vector sequence X and simply extract information from the raw data. This layer can be mathematically defined as: h3 = ρ(FC1(vec(X))), where vec(X)∈ℝNM×1 is the flattened matrix X, and ρ is a non-linearity (ReLU). An FC layer processing node in parallel with GCN layers offers several potential benefits. It allows the model to learn an independent representation of the node features, capturing information that might not be directly reflected in the graph structure. This is particularly advantageous when the node features themselves hold significant information for the task at hand.

2.3 Module 3: Connectivity Attention Block (CAB)

We propose a customized CAB, Cϕ, m, so that the model learns an embedding representation of a brain graph, as well as to provide a graph-level attention mechanism. The CAB, depicted in Figure 1 (right), is represented as

where h4 is a scalar embedding of each subject's brain connectivity, which is also treated as a factor of importance of each subject with respect to the population. h5 is a lower-dimensional representation that is sculpted out of G and X. The external trainable parameter m, initialized uniformly, is the attention mask assigned to the nodes (i.e., regions). All are defined as:

h4 is the Frobenius inner product of the G matrix by a weight matrix E∈ϕ learned by the model, followed by sigmoid non-linearity, σ. For h5, we effectively project G onto a single one-dimensional orientation within the N-dimensional space, from which we create a rank-one matrix G′: = GmmT, with the projection weights m learned by the model. f3 and f4 are the FC layers FC3 and FC4 as shown in Figure 1, both followed by non-linearities. Here, instead of applying attention to each element of G, we leverage the matrix properties of G. Our goal is to retain a single representative rank-one matrix G′ that best helps the prediction task at hand. This operation simplifies the representation of the matrix while preserving its most significant features, along the same lines as singular-value decomposition. The vector m is optimized jointly with the rest of the network to maximize prediction performance, by weighting the region-wise features by m and projecting the results onto the direction Gm (i.e., eigenvector of G′), effectively narrowing the attention to a single orientation in the N-dimensional space.

Importantly, CAB is not intended to serve as the sole source of model expressivity. Higher-order graph structure and complex interaction patterns are captured by the residual GCN blocks and the fully connected branches (Modules 1 and 2), while CAB provides a complementary, global, and interpretable reweighting of brain regions and their associated connections. This design allows CAB to enhance the model's representational capacity without replacing the richer structural modeling performed by the other components.

CAB works directly on the full adjacency matrix G and learns a single dominant eigen-direction-like m (a region mask) to produce a task-adaptive rank-1 approximation G′ = GmmT, distilling global structural connectivity into a low-dimensional, interpretable embedding. This allows CAB to capture global patterns that local/node-level attentions cannot. To compare with existing methods: GAT (Veličković et al., 2017) computes attention only between neighboring nodes (local 1-hop edges), whereas CAB derives the attention weights from the entire connectivity matrix. Low-rank attention (Wang S. et al., 2020) methods approximate sequence attention via query-key projections. CAB instead leverages the symmetry of brain connectivity matrices via a rank-1 projection, avoiding unnecessary decompositions. Spectral attention (Liu et al., 2024) methods rely on fixed Laplacian filters. CAB learns a data-driven eigen-like vector end-to-end, optimized directly for the prediction task.

2.4 Module 4: Skip Connection

We add an overall skip connection (Module 4 in Figure 1) to help mitigate the vanishing gradient problem and allow effective information propagation across layers by directly connecting vec(X) to the final layer.

2.5 Data Fusion and Loss Function

The outputs of all four modules are concatenated as and fed to an FC layer to produce the final prediction ŷ = FC5(Xall).

For the prediction task, we use a customized loss function made of two parts. The first part is the Huber loss, Lδ(y−ŷ), which is a piecewise continuous function, defined as:

where δ>0 is a threshold that controls the location of the transition between quadratic and linear loss behaviors. This function applies a quadratic loss when the absolute error is less than or equal to δ and a linear loss when the error exceeds this threshold, effectively combining the differentiability of the quadratic loss at small errors with the robustness of the linear loss to outliers. The second term of the loss, LR, is the regularizer for m defined as (). The overall loss for the model is therefore , where β>0 is a weighting factor.

3 Experiments

3.1 Datasets

We use two publicly available datasets. The details are given below.

Pre-symptomatic Evaluation of Experimental or Novel Treatments for Alzheimer's Disease (PREVENT-AD) () is a publicly available dataset that provides a comprehensive set of data on individuals who are at risk for developing AD (https://openpreventad.loris.ca/). The database contains neuroimaging studies such as MRI (including dMRI) and PET scans, a range of demographic, clinical, cognitive, and genetic data, as well as data on lifestyle factors such as diet and exercise. The dataset comprises 347 subjects, some with multiple (longitudinal) dMRI scans, totaling 789 dMRI scans.

The third release of Open Access Series of Imaging Studies (OASIS3) () is a longitudinal neuroimaging dataset with clinical and cognitive scores for normal aging and AD, and is provided freely to researchers (http://www.oasis-brains.org). The OASIS3 dataset contains MRI scans (including dMRI), cognitive assessments, demographic information, and clinical diagnoses for subjects, including healthy controls, individuals with mild cognitive impairment, and AD patients. From this dataset we used 1,294 brain scans from 771 subjects. Please refer to Table 1 for the overview of the datasets.

Table 1

NameSubjectsTotal samples90% cross-validation setUnseen 10% test set
PREVENT-AD34778971475
OASIS37711,2941,164121

Description of dataset sizes (number of available scans) and partitioning for PREVENT-AD and OASIS3 dataset.

Due to missing demographic data, nine subjects were removed from the OASIS3 dataset. Each subject may have multiple samples collected at different time points, hence there are overall more samples than subjects.

3.1.1 Pre-processing

We used FreeSurfer () to process the databases (additionally applying the longitudinal processing pipeline of Reuter et al., 2012 for PREVENT-AD). We then ran the FreeSurfer diffusion processing pipeline and propagated the 85 automatically segmented cortical and subcortical regions from the structural to the diffusion space. These 85 regions act as the nodes in our graph setup. Next, we used the public CSA-ODF and Hough Tractography toolbox (http://www.nitrc.org/projects/csaodf-hough) to reconstruct the diffusion orientation distribution function in constant solid angle (), run Hough-transform global probabilistic tractography () to generate 10,000 optimal streamlines per subject, compute symmetric structural connectivity matrices, and augment the matrices with indirect connections (). More details on the pipeline can be found in our previous publication (). Once we had all the graphs Gi, we performed a population-level normalization on edge weights.

For node features, we used the structural connectivity map of the node region to the rest of the regions as well as mean fractional anisotropy (FA), mean apparent diffusion coefficient (ADC), volume, and the degree of the node. In predicting age and dementia, dMRI analysis can benefit from a combination of node features. FA and ADC, reflecting white matter organization and water diffusion, respectively, capture microstructural changes due to aging and AD, whereas mean segmentation volume captures brain region size that is potentially reduced in age-related atrophy or AD. Finally, the node degree (total connectivity to a brain region) reveals alterations in brain network connectivity patterns. Therefore, for each subject, we obtained and corresponding (i.e., N = 85 and M = 89). The four additional features capture complementary information beyond connectivity and standard diffusion measures, improving robustness and performance. FA captures the degree of directional water diffusion and serves as a microstructural marker of white-matter organization, whereas ADC reflects the overall magnitude of diffusion within tissue. The regional volume feature quantifies morphometric variation across the segmented brain regions, and node degree represents the number of structural connections incident to each node, thereby summarizing its topological centrality within the connectome.

3.1.2 Implementation details

All the experiments were run via 10-fold cross-validation with the same folds across methods and experiments. For model robustness, we added zero-mean Gaussian noise with a standard deviation of 0.1 to the training samples. The total number of parameters used in the proposed model was 5,073, which was comparable to GCNConv (2,453), DGCNN (4653), GraphConv (4,653), ResGatedGraphConv (RGGC) (9,128), and GINConv (2,683). In our experiments, the output embedding sizes for h1, h2, h3, and h5 were 25, 20, 5, and 2, respectively. The values of β = 0.01 chosen empirically in the loss function. Each input feature and edge weight was normalized using a fixed population-level min-max scaling, where the range was computed from the combined training and validation (but not the test) cohorts. This ensures a consistent scale across features and prevents high-variance attributes (e.g., volumetric measures) from disproportionately influencing the model gradients.

3.2 Experimental design

3.2.1 Evaluation metrics

Performance is evaluated using four complementary metrics: Root Mean Square Error (RMSE) and Mean Absolute Error (MAE), which measure the magnitude of prediction errors, as well as Pearson's Correlation Coefficient (PC) and Spearman's Correlation Coefficient (SC), which assess the strength and direction of the linear and rank-order relationships, respectively, between predicted and ground-truth values. RMSE is particularly sensitive to large errors, making it useful for penalizing significant deviations, while MAE provides a more interpretable average error magnitude. PC captures linear associations, whereas SC for monotonic but potentially non-linear trends. Together, these metrics offer a comprehensive assessment of both the accuracy and reliability of the model predictions across all three tasks, enabling a nuanced understanding of performance from both error-based and correlation-based perspectives.

3.2.2 Cross-validation and unseen test set experiments

We divide the entire dataset into a 90:10 split. We set aside the 10 % data as an unknown test set and only use it once the training of the model is done. We use the remaining 90% data for cross-validation by splitting the data again into 90:10 ratio. The dataset split is shown in Table 1. We use sklearn () to perform 10-fold cross-validation using experiments for six classical ML and six DL based methods. All the sets are created based on subject IDs instead of sample IDs to avoid data leakage and ensure that no information from the same subject appears in both the training and validation/test sets. We keep 10% of the data aside from each dataset so as not to heuristically fit the model to the entire data, and then test the model at the end on the unseen data, the results of which are reported in the next section.

3.2.3 Baselines and comparative methods

We performed a comparative evaluation of various conventional ML and advanced DL models for the age prediction task across the two datasets of PREVENT-AD (789 scans) and OASIS3 (1,294 scans), as well as for MMSE prediction in the OASIS3 dataset, while ensuring that all scans of the same subject appeared only in a single (train, validation, or test) set. As a baseline, we employ a naive model that consistently predicts the mean (resp. median) of the training set. We evaluate its performance using RMSE (resp. MAE) on the validation set. These baseline metrics provide a sanity check, establishing the minimum performance threshold that all other models are expected to surpass. Since this model outputs a constant value, its correlation coefficients (PC and SC) with the ground truth are zero. The conventional ML models that we tested include linear regression (LR), support vector regression (SVR), decision trees, regression trees, ensemble trees, and neural networks (all implemented in the sklearn package). We further compared our method with DL approaches such as the multilayer perceptron (MLP), and more advanced GNN models such as GCN, GIN, GraphConv, and ResGCN.

3.2.4 Ablation studies

We performed ablation experiments to systematically evaluate the individual contributions of each architectural component in the proposed model and to understand their impact on overall predictive performance. By selectively removing key modules–such as the FC1 block, CAB block, skip connection, and GCN block–and observing changes in prediction accuracy, we aimed to identify which components are essential for capturing complex patterns in the data. This approach helps to validate the necessity of each element within the model design, ensuring that the architecture is both effective and interpretable. Moreover, it highlights the role of graph-based learning in enhancing the model's capacity to model relationships within neuroimaging data, thereby justifying the inclusion of the GCN block in particular. We used the same evaluation metrics as for the comparative methods.

3.2.5 Qualitative results

We illustrate the scatter plots of the predictions vs. ground-truth data for the three tasks for the test set as shown in Figures 35, for all the tasks and datasets. We further report the significance of our results using a paired Wilcoxon Signed Rank Test between the folds.

Figure 2

Figure 3

Figure 4

Figure 5

4 Results and discussion

4.1 Cross-validation and unseen test set experiments

Table 2 shows the results on the validation set of the 10-fold cross-validation for the age prediction task on the PREVENT-AD and OASIS3 datasets. The table is divided into three parts horizontally. The first part consists of the naive model.

Table 2

PREVENT-ADOASIS3
MethodRMSEMAEPCSCRMSEMAEPCSC
Naive model4.63 ± 1.08*3.48 ± 0.85009.06 ± 0.66*7.19 ± 0.56*00
LR5.12 ± 0.48*3.84 ± 0.25*0.53±0.100.48±0.067.76 ± 0.53*6.15 ± 0.44*0.62 ± 0.06*0.62 ± 0.05*
SVR4.92 ± 0.39*3.63 ± 0.270.42 ± 0.150.38 ± 0.126.83 ± 0.405.29 ± 0.330.68 ± 0.060.68 ± 0.06*
DT5.76 ± 0.71*4.23 ± 0.57*0.34 ± 0.130.32 ± 0.159.22 ± 0.65*7.27 ± 0.54*0.45 ± 0.09*0.44 ± 0.09*
RT5.78 ± 0.79*4.30 ± 0.53*0.35 ± 0.110.31 ± 0.149.18 ± 0.62*7.18 ± 0.44*0.45 ± 0.09*0.43 ± 0.09*
ET4.31 ± 0.223.30 ± 0.190.53 ± 0.110.46 ± 0.086.87 ± 0.365.39 ± 0.360.63 ± 0.060.62 ± 0.07
NN5.97 ± 0.64*4.56 ± 0.37*0.09 ± 0.12*0.10 ± 0.13*8.54 ± 1.28*6.13 ± 0.40*0.55 ± 0.110.62 ± 0.07
MLP4.65 ± 0.87*3.6 ± 0.71*0.24 ± 0.17*0.24 ± 0.17*8.5 ± 0.78*6.14 ± 0.44*0.31 ± 0.09*0.41 ± 0.07*
GCN4.17 ± 0.713.3 ± 0.580.40 ± 0.220.36 ± 0.216.8 ± 0.625.29 ± 0.370.57 ± 0.07*0.60 ± 0.06
GIN4.57 ± 0.743.64 ± 0.660.39 ± 0.260.34 ± 0.229.17 ± 3.276.12 ± 0.80*0.46 ± 0.16*0.57 ± 0.07
GraphConv5.11 ± 0.97*3.97 ± 0.81*0.32 ± 0.21*0.29 ± 0.178.17 ± 0.52*6.32 ± 0.41*0.28 ± 0.08*0.30 ± 0.07*
ResGCN4.31 ± 0.583.43 ± 0.480.41 ± 0.220.37 ± 0.197.64 ± 1.075.39 ± 0.500.53 ± 0.11*0.61 ± 0.09
Proposed4.10±0.653.28±0.550.45 ± 0.200.38 ± 0.216.41±0.644.99±0.560.71±0.060.72±0.07

Age prediction results on the validation set from the 10-fold cross-validation, for the PREVENT-AD and OASIS3 datasets.

Asterisk “*” indicates that the proposed method significantly outperformed the respective methods when compared using the Wilcoxon signed-rank test (with α = 0.05). Bold and blue indicate the best and second-best, respectively, in each column. LR, linear regression (Su et al., 2012); SVR, Support Vector Regression (); DT, decision tree (); RT, regression tree (Loh, 2011); ET, ensemble tree (); NN, neural network (Wang, 2003); MLP (); GCN (); GIN (Xu et al., 2018); GraphConv (); ResGCN (Pei et al., 2022).

The mean RMSE is higher for the OASIS3 age prediction task due to its wider distribution compared to PREVENT-AD. However, the standard deviation of RMSE relative to its mean is smaller in OASIS3, possibly due to its larger dataset size. A larger dataset can provide more stable and reliable estimates of the true metric values, leading to reduced variation across cross-validation folds. The next set showcases the performance of six traditional ML methods. For the PREVENT-AD dataset, we observe that only the Ensemble Tree is able to outperform the naive baseline model. Where as for the OASIS3 dataset, most of the traditional ML methods perform better than the naive classifier. The third part of the table is (mostly graph-based) DL methods. Most of the methods in this category show better performance than the naive model across both datasets. MLP, being the only non-graph DL method, performs better than almost all of the traditional ML methods. The MLP's layered structure allows it to hierarchically extract and combine features, making it more expressive and better suited for modeling non-linear aging trajectories and interdependent biomarkers. Most of the graph DL methods perform better than traditional ML methods and MLP. This improved performance can be attributed to the ability of GNNs to model relational structures and population-level dependencies that are otherwise ignored in traditional or naive models. GNN-based methods incorporate subject-level connectivity information and leverage inter-subject similarities through graph representations. These methods can effectively capture non-linear interactions and high-dimensional spatial patterns in the data–especially useful in aging neuroimaging datasets, as brain connectivity is affected in aging. Furthermore, the inductive bias introduced by graph convolutions allows the models to generalize better to unseen subjects, particularly when brain regions or connectivity features exhibit complex dependencies. This capability likely explains their superior correlation with actual age, even when RMSE values are only moderately improved compared to simpler models. The proposed model consistently demonstrated superior performance, validating the strength of the architecture in capturing graph-structured population-level information across heterogeneous datasets. The proposed model integrates the strengths of MLPs (non-linear feature learning), ResGCNs (deep hierarchical graph representation), and a CAB (adaptive weighting of informative connections), enabling it to outperform all baseline methods by effectively capturing both individual and population-level patterns. The asterisk symbol shows where the proposed model performs significantly better based on the Wilcoxon signed-rank test (α = 0.05).

Similarly, Table 3 shows results on MMSE prediction on OASIS3 dataset. We can see a trend similar to Table 2, except that SVR performs best and the proposed method is mostly second best. Most of the traditional ML methods perform worse than the baseline, whereas the performance metrics of the DL methods are marginally better. This can be explained with a histogram of the ground-truth values, plotted for each dataset and task in the Figure 2. As can be seen, MMSE has a much more skewed distribution than age does, potentially explaining the poor performance for the MMSE task. Although GNNs are effective for modeling complex relational patterns, MMSE scores are sparse, bounded, and heavily concentrated at higher values in healthy subjects, resulting in a skewed distribution and limited relational signal. For this type of endpoint, conventional models such as SVR and ensemble tree methods were able to capture the subtle variations adequately, and the added complexity of GNNs provided little additional benefit.

Table 3

MethodRMSEMAEPCSC
Naive model2.38 ± 0.52*1.38 ± 0.2500
LR2.94 ± 0.31*2.25 ± 0.20*0.24 ± 0.11*0.18 ± 0.10*
SVR2.13±0.251.28±0.09*0.43±0.080.37±0.09
DT3.00 ± 0.22*1.87 ± 0.18*0.21 ± 0.15*0.13 ± 0.10*
RT3.09 ± 0.41*1.90 ± 0.20*0.18 ± 0.13*0.12 ± 0.09*
ET2.20 ± 0.231.48 ± 0.120.36 ± 0.140.27 ± 0.10
NN3.31 ± 0.52*2.45 ± 0.32*0.23 ± 0.32*0.21 ± 0.12*
MLP2.76 ± 0.44*1.71 ± 0.17*0.23 ± 0.13*0.30 ± 0.08
GCN2.25 ± 0.48*1.51 ± 0.17*0.36 ± 0.08*0.32 ± 0.08
GIN2.94 ± 0.56*1.86 ± 0.20*0.28 ± 0.13*0.35 ± 0.06
GraphConv2.4 ± 0.50*1.63 ± 0.20*0.33 ± 0.09*0.31 ± 0.08
ResGCN2.34 ± 0.39*1.59 ± 0.15*0.35 ± 0.08*0.30 ± 0.08
Proposed2.20 ± 0.431.44 ± 0.220.42 ± 0.080.31 ± 0.09

Cross-validation results by all methods for the MMSE prediction task on the validation set using the OASIS3 dataset.

Bold and Blue indicate the best and second-best, respectively, in each column. For the fullforms and corresponding citation please refer to Table 2.

*indicates statistical significance based on the paired Wilcoxon Signed Rank Test.

4.2 Results on 10% unseen test data

We hypertune all the models during cross-validation, and then use the best setup for each model to evaluate its performance on the unseen test dataset. In these (single-fold) experiments, we train the model on all the cross-validation data and test it on the held-out test data. For each fold in the cross-validation, we stop the training at the epoch yielding the lowest loss on the validation set. For the held-out test data, we stop the training at the same epoch as that of the model corresponding to the lowest loss among the folds. For both datasets, as shown in Table 4, the proposed method outperformed all other models in age prediction in seven out of eight metrics, achieving the lowest prediction error (except it finished second in MAE for PREVENT-AD) while also demonstrating the highest correlation scores, indicating superior predictive accuracy. For MMSE prediction (in OASIS3), the proposed method still outperformed the other DL methods, but not the conventional ML methods of Ensemble Trees and (mostly) SVR. The narrow range of MMSE in the OASIS3 dataset (as reflected in the Naive model row and Figure 2) resulted in performance metric values that were close to each other among models.

Table 4

PREVENT-ADOASIS3
AgeAgeMMSE
MethodRMSEMAEPCSCRMSEMAEPCSCRMSEMAEPCSC
Naive model6.175.65009.467.21003.021.7100
LR7.265.450.360.408.456.570.650.663.542.640.210.20
SVR6.255.190.410.427.565.550.670.673.001.630.350.35
DT7.506.150.200.1710.868.370.290.283.401.920.200.19
RT7.115.940.220.2710.217.900.320.293.331.860.190.20
ET5.544.690.370.397.355.570.640.622.761.640.410.31
NN5.394.600.400.437.475.910.670.673.482.560.250.22
MLP5.804.810.430.5210.127.140.260.353.312.020.170.15
GCN5.344.460.560.576.725.410.660.683.081.790.160.23
GIN5.374.460.470.489.516.360.450.602.962.110.270.24
GraphConv5.494.450.480.518.927.020.250.243.482.020.150.25
ResGCN5.284.390.520.558.505.500.540.683.071.940.220.23
Proposed5.274.420.620.666.044.700.750.772.891.760.340.27

Performance evaluation for all the methods on 10% unseen test data.

Bold and Blue indicate the best and second-best, respectively, in each column. For the fullforms and corresponding citation please refer to Table 2.

We additionally performed these experiments on data from the second phase of the Alzheimer's Disease Neuroimaging Initiative, with a dataset size of 200 samples. While the proposed method still outperformed the rest of the methods, its prediction error was not substantially below the baseline, presumably due to the small dataset size (PC/SC were still 0.50/0.55 and 0.34/0.36 for age and MMSE, respectively).

4.3 Ablation tests

Table 5 presents an ablation study on the prediction tasks on both datasets for the test set. For PREVENT-AD, when removing specific components such as the FC1 block, CAB block, skip connection, or GCN block, performance degrades across all datasets, confirming the effectiveness of the model's complete architecture. The trend remains generally consistent in OASIS3 (age); however, the original model without the FC1 component maintains the best scores, whereas other ablations cause notable declines in performance.

Table 5

Model-levelCAB layer
MetricProposedMod 1Mod 2Mod 3Mod 4Mod iMod iiMod iiiMod iv
PREVENT-AD (age)
 RMSE5.275.765.305.655.626.476.386.476.026.44
 MAE4.424.684.504.74.685.145.095.164.875.14
 PC0.620.550.540.540.520.500.510.500.530.50
 SC0.660.570.580.570.560.510.510.510.580.51
OASIS3 (age)
 RMSE6.046.045.786.446.727.047.017.027.016.90
 MAE4.704.634.475.295.105.215.065.095.205.08
 PC0.750.730.760.710.680.640.640.640.650.65
 SC0.770.750.770.700.700.670.670.680.670.68
OASIS3 (MMSE)
 RMSE2.892.852.822.842.942.842.872.852.802.79
 MAE1.760.831.751.911.651.731.681.701.771.79
 PC0.340.350.350.360.390.340.350.340.380.38
 SC0.270.270.250.270.330.280.270.250.310.26

Ablations on the prediction tasks.

Each column represents the respective block removed from the pipeline. Bold and Blue indicate the best and second-best, respectively, in each row. Mod denotes a module ablation. We define: Mod 1—no ResGCN layers; Mod 2—no FC1 layer; Mod 3—no CAB; Mod 4—no skip connection; Mod i—no E in CAB; Mod ii (left)—no GmmT and Mod ii (right) no G in GmmT; Mod iii– no Sigmoid in CAB; Mod iv—no MLPs in CAB.

For OASIS3 (MMSE), the original model without the skip connection outperforms the other ablated versions in terms of correlations, though the performance drop is insubstantial. Removing any component results in only a marginal increase in RMSE and a decrease in correlation metrics, possibly due to the narrow range of MMSE values in OASIS3.

For age prediction, components that model global and relational structure are most critical. In particular, removing the GCN block (Mod 1) led to consistent degradation in correlation (e.g., PC drops from 0.62 to 0.55 in PREVENT-AD and from 0.75 to 0.73 in OASIS3), confirming that capturing inter-regional dependencies is essential for modeling brain aging. Similarly, the CAB module (Mod 3) showed substantial impact (e.g., RMSE increases from 6.04 to 6.44 in OASIS3), indicating that adaptive weighting of connections is important for identifying age-relevant connectivity patterns. This aligns with the biological premise that aging manifests as distributed, network-level changes. In contrast, for MMSE prediction, the contribution of individual modules is less pronounced. Ablation results show minimal variation across configurations (e.g., RMSE varies only from 2.79 to 2.94, and PC from 0.34 to 0.39). This suggests that MMSE prediction is less sensitive to architectural choices, likely due to the compressed and skewed distribution of MMSE scores (as shown in Figure 2), which limits the model's ability to leverage complex representations. Notably, removing the skip connection (Mod 4) slightly improves correlation (PC: 0.34 → 0.39), indicating that simpler representations may suffice for this task.

The ablation results generally emphasize that each architectural component plays a crucial role in maintaining predictive accuracy, with graph-based learning contributing significantly to overall model performance. The GCN block, in particular, appears essential for capturing complex dependencies, as its removal leads to a decline in the age prediction accuracy.

4.4 Qualitative results

We show scatter plots of ground truth vs. predictions on the held-out test set for all the datasets and tasks for qualitative evaluation of the performance. Figures 35 show the scatter plots for age prediction in OASIS3 and PREVENT-AD and for MMSE prediction in OASIS3, respectively. The first two rows show the results by the DL methods, and the last two rows show those by traditional ML methods. The proposed method (top-left) shows the tightest clustering along the identity (45°) line, reflecting the highest correlation and lowest prediction error among all methods. These plots are consistent with the summary measures reported in the tables. A consistent trend among all methods is that the slope of the least-squares line is less than 45°, suggesting a compromise between the mean-predicting behavior of the naive model and ideal prediction.

4.5 Attention learned by CAB

We show the top five regions selected by the CAB in Table 6. For the age task for both datasets, the regions selected and attention values obtained are similar (but not identical) and are different from the MMSE task. As can be seen, the right hippocampus has the strongest weight for age in both datasets. Literature suggests that the hippocampus is indeed representative of aging (; Xu et al., 2008); as we have seen in three datasets with aging populations, age was most strongly correlated with hippocampal connectivity (). Posterior cingulate cortex received the highest weighting for the MMSE task.

Table 6

IdPREVENT-AD ageOASIS ageOASIS MMSE
1Right hippocampusRight hippocampusLeft posterior cingulate cortex
2Left pallidumLeft pallidumLeft banks of superior temporal sulcus
3Right rostral anterior cingulate cortexRight rostral anterior cingulate cortexRight superior temporal cortex
4Left postcentral cortexLeft postcentral cortexLeft pars triangularis cortex
5Right cuneus cortexRight pars triangularisRight banks of superior temporal sulcus

Top regions identified across different tasks.

4.6 Hyperparameter and training time comparison

The output embedding sizes for the five modules were selected empirically through systematic hyperparameter sweeps during initial model development and benchmarking. The row “Embedding size” in Table 7 shows the embedding sizes for the proposed and all the comparative methods.

Table 7

Hyper parametersGCNGINGraphConvMLPResGCNProposed
MMSE/OASIS3
 Batch size20250202020150
 Embedding size7010110170100
 Total parameters234,253310,943237,743306,149243,616447,104
 Time/epoch (s)0.390.390.390.310.560.41
Age/PREVENT-AD
 Batch size20120606040120
 Embedding size30501010101
 Total parameters96,433316,62728,383175,91332,456109,590
 Time/epoch (s)0.800.571.010.631.460.85
Age/OASIS3
 Batch size2025020202090
 Embedding size50101101701
 Total parameters238,418104,3471,061,783151,300451,19623,430
 Time/epoch (s)0.9721.021.270.771.931.14

This table summarizes the selected hyperparameters and training efficiency across three setups.

The learning rate was set to 0.0001 for all experiments, except for the age task on the OASIS3 dataset, where it was empirically set to 0.001. The proposed model is competitive in runtime, but its parameter count and speed vary by dataset, showing that performance depends strongly on the task.

As shown in Table 7 for the MMSE prediction task on OASIS3, most graph-based models maintain similar training times per epoch despite differences in parameter counts, while the proposed model shows a moderate increase in parameters with only a slight impact on runtime. In the Age prediction task on PREVENT-AD, the proposed model achieves a balanced trade-off, maintaining competitive training time with a moderate number of parameters compared to both lightweight (GraphConv) and heavier (GIN) architectures. For Age prediction on OASIS3, a larger variation is observed, where models such as GraphConv exhibit significantly higher parameter counts, whereas the proposed model remains relatively compact with competitive runtime. Overall, these results highlight that model complexity and computational cost are highly dataset- and task-dependent, and the proposed approach achieves a favorable balance between efficiency and capacity across different experimental settings.

5 Conclusion

In this paper, we proposed a simple yet effective multi-branch model capable of capturing complementary information from structural brain connectivity, which we evaluated in the context of age and MMSE prediction. The configuration of input data and multiple operations from all four modules helped to learn better representations of each subject's graph. We have shown that our model often outperforms competing techniques on two publicly available datasets, while also ablating all the components of the model. Future work includes: the addition of interpretability to the models to find the brain subnetworks that are informative for the prediction task, as well as trying other (such as gated attention) graph convolution mechanisms; investigation of the suitability of CAB as a subject-level attention score learned by the network, with the goal of quantifying how representative each subject is within the overall population; systematic feature ablation studies across all methods to assess the contribution of each input modality to model performance; robustness analysis of our approach to domain shift and its generalizability by testing it on other clinical datasets after connectivity harmonization (Zhou et al., 2025).

Statements

Data availability statement

Publicly available datasets were analyzed in this study. This data can be found here: Pre -symptomatic Evaluation of Experimental or Novel Treatments for Alzheimer's Disease (PREVENT-AD): https://openpreventad.loris.ca/; Open Access Series of Imaging Studies (OASIS3): http://www.oasis-brains.org.

Ethics statement

Ethical approval was not required for the study involving humans in accordance with the local legislation and institutional requirements. Written informed consent to participate in this study was not required from the participants or the participants' legal guardians/next of kin in accordance with the national legislation and the institutional requirements.

Author contributions

AK: Writing – review & editing, Writing – original draft, Methodology, Visualization, Conceptualization, Validation. JM: Writing – review & editing, Data curation, Formal analysis. BF: Conceptualization, Resources, Supervision, Writing – review & editing. AD: Conceptualization, Writing – review & editing, Supervision. IA: Resources, Project administration, Conceptualization, Supervision, Funding acquisition, Writing – review & editing.

Funding

The author(s) declared that financial support was received for this work and/or its publication. Support for this research was provided by the National Institutes of Health (NIH), specifically the National Institute on Aging (RF1AG068261, R01AG068261). Additional support was provided in part by the BRAIN Initiative Cell Census Network grant U01MH117023, the National Institute for Biomedical Imaging and Bioengineering (P41EB015896, R01EB023281, R01EB006758, R21EB018907, R01EB019956, P41EB030006), the National Institute on Aging (R56AG064027, R01AG064027, R01AG008122, R01AG016495, R01AG070988), the National Institute of Mental Health (R01MH121885, RF1MH123195), the National Institute for Neurological Disorders and Stroke (R01NS0525851, R21NS072652, R01NS070963, R01NS083534, U01NS086625, U24NS10059103, R01NS105820), the NIH Blueprint for Neuroscience Research (U01MH093765), part of the multi-institutional Human Connectome Project, and the Michael J. Fox Foundation for Parkinson's Research (MJFF-021226). Computational resources were provided through the Massachusetts Life Sciences Center.

Conflict of interest

BF was an advisor to DeepHealth, a company whose medical pursuits focus on medical imaging and measurement technologies. His interests were reviewed and are managed by Massachusetts General Hospital and Mass General Brigham in accordance with their conflict-of-interest policies.

The remaining author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

The author IA declared that they were an editorial board member of Frontiers, at the time of submission. This had no impact on the peer review process and the final decision.

Generative AI statement

The author(s) declared that generative AI was not used in the creation of this manuscript.

Any alternative text (alt text) provided alongside figures in this article has been generated by Frontiers with the support of artificial intelligence and reasonable efforts have been made to ensure accuracy, including review by the authors wherever possible. If you identify any issues, please contact us.

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

    AganjI.LengletC.JahanshadN.YacoubE.HarelN.ThompsonP. M.et al. (2011). A hough transform global probabilistic approach to multiple-subject diffusion MRI tractography. Med. Image Anal. 15, 414425. doi: 10.1016/j.media.2011.01.003

  • 2

    AganjI.LengletC.SapiroG.YacoubE.UgurbilK.HarelN. (2010). Reconstruction of the orientation distribution function in single-and multiple-shell Q-ball imaging within constant solid angle. Magn. Reson. Med. 64, 554566. doi: 10.1002/mrm.22365

  • 3

    AganjI.MoraJ.Frau-PascualA.FischlB. (2023). Exploratory correlation of the human structural connectome with non-MRI variables in Alzheimer's disease. Alzheimers Dement. 15:e12511. doi: 10.1002/dad2.12511

  • 4

    AganjI.PrasadG.SrinivasanP.YendikiA.ThompsonP. M.FischlB. (2014). “Structural brain network augmentation via Kirchhoff's laws,” in Joint annual meeting of ISMRM-ESMRMB, Vol. 22 (Milan), 2665. Available online at: http://nmr.mgh.harvard.edu/iman/ConductanceModel_ISMRM14_iman.pdf

  • 5

    AmorosoN.La RoccaM.BrunoS.MaggipintoT.MonacoA.BellottiR.et al. (2017). Brain structural connectivity atrophy in Alzheimer's disease. arXiv. [preprint]. arXiv:1709.02369. doi: 10.48550/arXiv.1709.02369

  • 6

    ArrigoA.CalamuneriA.MilardiD.MorminaE.GaetaM.CoralloF.et al. (2019). Claustral structural connectivity and cognitive impairment in drug naïve Parkinson's disease. Brain Imaging Behav. 13, 933944. doi: 10.1007/s11682-018-9907-z

  • 7

    ArslanS.KtenaS. I.GlockerB.RueckertD. (2018). “Graph saliency maps through spectral convolutional networks: Application to sex classification with brain connectivity,” in Graphs in biomedical image analysis and integrating medical imaging and non-imaging modalities: second international workshop, GRAIL 2018 and first international workshop, beyond MIC 2018, held in conjunction with MICCAI 2018, Granada, Spain, September 20, 2018, Proceedings 2 (Berlin, Heidelberg: Springer) 3–13. doi: 10.1007/978-3-030-00689-1_1

  • 8

    AwadM.KhannaR. (2015). “Support vector regression,” in Efficient Learning Machines: Theories, Concepts, and Applications for Engineers and System Designers (Berkeley, CA: Springer), 6780. doi: 10.1007/978-1-4302-5990-9_4

  • 9

    BahdanauD. (2014). Neural machine translation by jointly learning to align and translate. arXiv. [preprint]. arXiv:1409.0473. doi: 10.48550/arXiv.1409.0473

  • 10

    BressonX.LaurentT. (2017). Residual gated graph convNets. arXiv. [preprint] arXiv:1711.07553. doi: 10.48550/arXiv.1711.07553

  • 11

    CheD.LiuQ.RasheedK.TaoX. (2011). Decision tree and ensemble learning algorithms with their applications in bioinformatics. Adv. Exp. Med. Biol. 696, 191199. doi: 10.1007/978-1-4419-7046-6_19

  • 12

    CoelhoA.FernandesH. M.MagalhãesR.MoreiraP. S.MarquesP.SoaresJ. M.et al. (2021). Reorganization of brain structural networks in aging: a longitudinal study. J. Neurosci. Res. 99, 13541376. doi: 10.1002/jnr.24795

  • 13

    ColeJ. H.AnnusT.WilsonL. R.RemtullaR.HongY. T.FryerT. D.et al. (2022). Accurate age models for routine clinical MRI examinations. NeuroImage249:118871. doi: 10.1016/j.neuroimage.2022.118871

  • 14

    DamoiseauxJ. S. (2017). Effects of aging on functional and structural brain connectivity. Neuroimage160, 3240. doi: 10.1016/j.neuroimage.2017.01.077

  • 15

    DasoulasG.ScamanK.VirmauxA. (2021). “Lipschitz normalization for self-attention layers with application to graph neural networks,” in International conference on machine learning, 2456–2466. PMLR.

  • 16

    De VilleB. (2013). Decision trees. WIREs Comput. Stat. 5, 448455. doi: 10.1002/wics.1278

  • 17

    DennisE. L.JahanshadN.McMahonK. L.de ZubicarayG. I.MartinN. G.HickieI. B.et al. (2013). Development of brain structural connectivity between ages 12 and 30: a 4-tesla diffusion imaging study in 439 adolescents and adults. Neuroimage64, 671684. doi: 10.1016/j.neuroimage.2012.09.004

  • 18

    DubostF. (2020). Artificial intelligence with light supervision: Application to neuroimaging.

  • 19

    DucN. T.RyuS.QureshiM. N. I.ChoiM.LeeK. H.LeeB. (2020). 3D-deep learning based automatic diagnosis of Alzheimer?s disease with joint MMSE prediction using resting-state fMRI. Neuroinformatics18, 7186.

  • 20

    FaiyazA.DoyleyM. M.SchifittoG.UddinM. N. (2023). Artificial intelligence for diffusion mri-based tissue microstructure estimation in the human brain: an overview. Front. Neurol. 14:1168833. doi: 10.3389/fneur.2023.1168833

  • 21

    FeurerM.EggenspergerK.FalknerS.LindauerM.HutterF. (2020). Auto-Sklearn 2.0: the next generation. arXiv. [preprint].

  • 22

    FeyM.LenssenJ. E. (2019). Fast graph representation learning with PyTorch geometric. arXiv. [preprint]. arXiv:1903.02428. doi: 10.48550/arXiv.1903.02428

  • 23

    FischlB. (2012). FreeSurfer. Neuroimage62, 774781. doi: 10.1016/j.neuroimage.2012.01.021

  • 24

    Frau-PascualA.AugustinackJ.VaradarajanD.YendikiA.SalatD. H.FischlB.et al. (2021). Conductance-based structural brain connectivity in aging and dementia. Brain Connect. 11, 566583. doi: 10.1089/brain.2020.0903

  • 25

    GoodfellowI.BengioY.CourvilleA.BengioY. (2016). Deep Learning, Vol. 1. Cambridge: MIT Press.

  • 26

    HagmannP.CammounL.GigandetX.MeuliR.HoneyC. J.WedeenV. J.et al. (2008). Mapping the structural core of human cerebral cortex. PLoS Biol. 6:e159. doi: 10.1371/journal.pbio.0060159

  • 27

    HeY.ChenZ.EvansA. (2008). Structural insights into aberrant topological patterns of large-scale cortical networks in Alzheimer's disease. J. Neurosci. 28, 47564766. doi: 10.1523/JNEUROSCI.0141-08.2008

  • 28

    HofmanM. A. (2015). Evolution of the Human Brain: From Matter to Mind. Dordrecht: Springer. doi: 10.1007/978-1-4939-1562-0_5

  • 29

    HuJ.CaoL.LiT.DongS.LiP. (2021). GAT-LI: a graph attention network based learning and interpreting method for functional brain network classification. BMC Bioinformatics22:379. doi: 10.1186/s12859-021-04295-1

  • 30

    JellingerK. A. (2022). Morphological basis of Parkinson disease-associated cognitive impairment: an update. J. Neural Transm. 129, 977999. doi: 10.1007/s00702-022-02522-4

  • 31

    JiaoT.LiF.CuiY.WangX.LiB.ShiF.et al. (2023). Deep learning with an attention mechanism for differentiating the origin of brain metastasis using MR images. J. Magn. Reson. Imaging58, 16241635. doi: 10.1002/jmri.28695

  • 32

    JónssonB. A.BjornsdottirG.ThorgeirssonT. E.EllingsenL. M.WaltersG. B.GudbjartssonD. F.et al. (2019). Brain age prediction using deep learning uncovers associated sequence variants. Nat. Commun. 10:5409.

  • 33

    JooY.NamgungE.JeongH.KangI.KimJ.OhS.et al. (2023). Brain age prediction using combined deep convolutional neural network and multi-layer perceptron algorithms. Sci. Rep. 13:22388. doi: 10.1038/s41598-023-49514-2

  • 34

    KarlsgodtK. H.SunD.CannonT. D. (2010). Structural and functional brain abnormalities in schizophrenia. Curr. Dir. Psychol. Sci. 19, 226231. doi: 10.1177/0963721410377601

  • 35

    KaziA.FarghadaniS.AganjI.NavabN. (2023a). “IA-GCN: interpretable attention based graph convolutional network for disease prediction,” in International workshop on machine learning in medical imaging (Cham: Springer), 382392. doi: 10.1007/978-3-031-45673-2_38

  • 36

    KaziA.MarkovaV.KondamadugulaP. R.LiuB.AdlyA.FaghihroohiS.et al. (2022). “DG-GRU: dynamic graph based gated recurrent unit for age and gender prediction using brain imaging,” in Medical imaging 2022: computer-aided diagnosis (Vol. 12033, San Diego, CA: SPIE), 277281. doi: 10.1117/12.2607469

  • 37

    KaziA.MoraJ.FischlB.DalcaA. V.AganjI. (2023b). “Multi-head graph convolutional network for structural connectome classification,” in International conference on medical image computing and computer-assisted intervention (Cham: Springer), 2736. doi: 10.1007/978-3-031-55088-1_3

  • 38

    KaziA.ShekarforoushS.Arvind KrishnaS.BurwinkelH.VivarG.WiestlerB.et al. (2019a). “Graph convolution based attention model for personalized disease prediction,” in Medical image computing and computer assisted intervention-miccai 2019: 22nd international conference, Shenzhen, China, October 13-17, 2019, Proceedings, Part IV 22 (Cham: Springer), 122130. doi: 10.1007/978-3-030-32251-9_14

  • 39

    KaziA.ShekarforoushS.KortuemK.AlbarqouniS.NavabN.et al. (2019b). “Self-attention equipped graph convolutions for disease prediction,” in 2019 IEEE 16th international symposium on biomedical imaging (ISBI 2019) (Venice: IEEE), 18961899. doi: 10.1109/ISBI.2019.8759274

  • 40

    KipfT. N.WellingM. (2016). Semi-supervised classification with graph convolutional networks. arXiv. [preprint] arXiv:1609.02907. doi: 10.48550/arXiv.1609.02907

  • 41

    KtenaS. I.ParisotS.FerranteE.RajchlM.LeeM.GlockerB.et al. (2018). Metric learning with spectral graph convolutions on brain connectivity networks. NeuroImage169, 431442. doi: 10.1016/j.neuroimage.2017.12.052

  • 42

    ŁabiakA.KaziA.PellegriniC.Frau-PascualA.AganjI. (2026). Multimodal connectivity-based cortical segmentation with graph neural networks. Front. Neurosc. 20:1729842. doi: 10.3389/fnins.2026.1729842

  • 43

    LaMontagneP. J.BenzingerT. L.MorrisJ. C.KeefeS.HornbeckR.XiongC.et al. (2019). OASIS-3: longitudinal neuroimaging, clinical, and cognitive dataset for normal aging and Alzheimer disease. medRxiv. [preprint]. doi: 10.1101/2019.12.13.19014902

  • 44

    LeoutsakosJ.-M.GrossA.JonesR.AlbertM.BreitnerJ. (2016). ‘Alzheimer's progression score': development of a biomarker summary outcome for ad prevention trials. J. Prev. Alzheimers Dis. 3:229. doi: 10.14283/jpad.2016.120

  • 45

    LewisJ. D.O'ReillyC.BockE.TheilmannR. J.TownsendJ. (2022). Aging-related differences in structural and functional interhemispheric connectivity. Cereb. Cortex32, 13791389. doi: 10.1093/cercor/bhab275

  • 46

    LiQ.HanZ.WuX.-M. (2018). “Deeper insights into graph convolutional networks for semi-supervised learning,” in Proceedings of the AAAI conference on artificial intelligence, Vol. 32 (New Orleans, LA). doi: 10.1609/aaai.v32i1.11604

  • 47

    LiX.WangY.WangW.HuangW.ChenK.XuK.et al. (2020). Age-related decline in the topological efficiency of the brain structural connectome and cognitive aging. Cereb. Cortex30, 46514661. doi: 10.1093/cercor/bhaa066

  • 48

    LiX.ZhouY.DvornekN.ZhangM.GaoS.ZhuangJ.et al. (2021). BrainGNN: interpretable brain graph neural network for fMRI analysis. Med. Image Anal. 74:102233. doi: 10.1016/j.media.2021.102233

  • 49

    LiuN.HeX.LaurentT.Di GiovanniF.BronsteinM. M.BressonX. (2024). A general graph spectral wavelet convolution via Chebyshev order decomposition. arXiv. [preprint]. arXiv:2405.13806. doi: 10.48550/arXiv.2405.13806

  • 50

    LiuS.ParkJ. H.YooS. (2020). “Efficient and effective graph convolution networks,” in Proceedings of the 2020 SIAM international conference on data mining (Philadelphia, PA: SIAM), 388396. doi: 10.1137/1.9781611976236.44

  • 51

    LohW.-Y. (2011). Classification and regression trees. WIREs Data Min. Knowl. Discov. 1, 1423. doi: 10.1002/widm.8

  • 52

    MeunierD.AchardS.MorcomA.BullmoreE. (2009). Age-related changes in modular organization of human brain functional networks. Neuroimage44, 715723. doi: 10.1016/j.neuroimage.2008.09.062

  • 53

    MoonH. S.MahzarniaA.StoutJ.AndersonR. J.HanZ. Y.TremblayJ. T.et al. (2024). Feature attention graph neural network for estimating brain age and identifying important neural connections in mouse models of genetic risk for Alzheimer's disease. Imaging Neurosci. 2, 122. doi: 10.1162/imag_a_00245

  • 54

    NeudorfJ.ShenK.McIntoshA. R. (2024). Reorganization of structural connectivity in the brain supports preservation of cognitive ability in healthy aging. Netw. Neurosci. 8, 837859. doi: 10.1162/netn_a_00377

  • 55

    OonoK.SuzukiT. (2019). Graph neural networks exponentially lose expressive power for node classification. arXiv. [preprint]. arXiv:1905.10947. doi: 10.48550/arXiv.1905.10947

  • 56

    PeiY.HuangT.Van IpenburgW.PechenizkiyM. (2022). ResGCN: attention-based deep residual modeling for anomaly detection on attributed networks. Mach. Learn. 111, 519541. doi: 10.1007/s10994-021-06044-0

  • 57

    PengH.GongW.BeckmannC. F.VedaldiA.SmithS. M. (2021). Accurate age prediction with lightweight deep neural networks. Med. Image Anal. 68:101871. doi: 10.1016/j.media.2020.101871

  • 58

    PhanA. V.Le NguyenM.NguyenY. L. H.BuiL. T. (2018). DGCNN: a convolutional neural network over large-scale labeled graphs. Neural Netw. 108, 533543. doi: 10.1016/j.neunet.2018.09.001

  • 59

    PrescottJ. W.DoraiswamyP. M.GambergerD.BenzingerT.PetrellaJ. R.NetworkD. I. A. (2022). Diffusion tensor mri structural connectivity and pet amyloid burden in preclinical autosomal dominant Alzheimer disease: the DIAN cohort. Radiology302, 143150. doi: 10.1148/radiol.2021210383

  • 60

    QuG.ZhouZ.CalhounV. D.ZhangA.WangY.-P. (2025). Integrated brain connectivity analysis with fMRI, DTI, and sMRI powered by interpretable graph neural networks. Med. Image Anal. 103:103570. doi: 10.1016/j.media.2025.103570

  • 61

    RanjbarzadehR.Bagherian KasgariA.Jafarzadeh GhoushchiS.AnariS.NaseriM.BendechacheM. (2021). Brain tumor segmentation based on deep learning and an attention mechanism using MRI multi-modalities brain images. Sci. Rep. 11, 117. doi: 10.1038/s41598-021-90428-8

  • 62

    ReuterM.SchmanskyN. J.RosasH. D.FischlB. (2012). Within-subject template estimation for unbiased longitudinal image analysis. Neuroimage61, 14021418. doi: 10.1016/j.neuroimage.2012.02.084

  • 63

    SebeniusI.CampbellA.MorganS. E.BullmoreE. T.LiòP. (2021). “Multimodal graph coarsening for interpretable, MRI-based brain graph neural network,” in 2021 IEEE 31st international workshop on machine learning for signal processing (MLSP) (Gold Coast: IEEE), 16. doi: 10.1109/MLSP52302.2021.9690626

  • 64

    ShiF.YapP.-T.GaoW.LinW.GilmoreJ. H.ShenD. (2012). Altered structural connectivity in neonates at genetic risk for schizophrenia: a combined study using morphological and white matter networks. Neuroimage62, 16221633. doi: 10.1016/j.neuroimage.2012.05.026

  • 65

    SjöblomL.WesterlundD.NeimantaiteA. D.AnderssonJ. (2020). “BRAPH for python: graph theory and graph neural networks for brain connectivity analysis,” in Emerging topics in artificial intelligence 2020, Vol. 11469 (San Diego, CA: SPIE), 114691Y. doi: 10.1117/12.2581421

  • 66

    SpornsO.TononiG.KötterR. (2005). The human connectome: a structural description of the human brain. PLoS Comput. Biol. 1:e42. doi: 10.1371/journal.pcbi.0010042

  • 67

    SuX.YanX.TsaiC.-L. (2012). Linear regression. WIREs Comput. Stat. 4, 275294. doi: 10.1002/wics.1198

  • 68

    TolanE.IsikZ. (2018). “Graph theory based classification of brain connectivity network for autism spectrum disorder,” in Bioinformatics and biomedical engineering: 6th international work-conference, IWBBIO 2018, Granada, Spain, April 25-27, 2018, Proceedings, Part I 6 (Cham: Springer), 520530. doi: 10.1007/978-3-319-78723-7_45

  • 69

    VaswaniA.ShazeerN.ParmarN.UszkoreitJ.JonesL.Łukasz KaiserA. N. Gomezet al. (2017). “Attention is all you need,” in Advances in neural information processing systems (Longbeach, CA).

  • 70

    VeličkovićP.CucurullG.CasanovaA.RomeroA.LioP.BengioY. (2017). Graph attention networks. arXiv. [preprint]. arXiv:1710.10903. doi: 10.48550/arXiv.1710.10903

  • 71

    WangJ.KhosrowabadiR.NgK. K.HongZ.ChongJ. S. X.WangY.et al. (2018). Alterations in brain network topology and structural-functional connectome coupling relate to cognitive impairment. Front. Aging Neurosci. 10:404. doi: 10.3389/fnagi.2018.00404

  • 72

    WangS.LiB. Z.KhabsaM.FangH.MaH. (2020). Linformer: self-attention with linear complexity. arXiv. [preprint]. arXiv:2006.04768. doi: 10.48550/arXiv.2006.04768

  • 73

    WangS.TangH.HimenoR.Solé-CasalsJ.CaiafaC. F.HanS.et al. (2024). Optimizing graph neural network architectures for schizophrenia spectrum disorder prediction using evolutionary algorithms. Comput. Methods Programs Biomed. 257:108419. doi: 10.1016/j.cmpb.2024.108419

  • 74

    WangS.-C. (2003). “Artificial neural network,” in Interdisciplinary computing in java programming (New York, NY: Springer), 81100. doi: 10.1007/978-1-4615-0377-4_5

  • 75

    WangY.-M.ZhangY.-J.CaiX.-L.YangH.-X.CheungE. F.ChanR. C.et al. (2020). Altered grey matter volume and white matter integrity in individuals with high schizo-obsessive traits, high schizotypal traits and obsessive-compulsive symptoms. Asian J. Psychiatry52:102096. doi: 10.1016/j.ajp.2020.102096

  • 76

    WeinS.MalloniW. M.ToméA. M.FrankS. M.HenzeG.-I.WüstS.et al. (2021). A graph neural network framework for causal inference in brain networks. Sci. Rep. 11:8061. doi: 10.1038/s41598-021-87411-8

  • 77

    WuZ.PanS.ChenF.LongG.ZhangC.PhilipS. Y. (2020). A comprehensive survey on graph neural networks. IEEE Trans. Neural Netw. Learn. Syst. 32, 424. doi: 10.1109/TNNLS.2020.2978386

  • 78

    XieT.HeY. (2012). Mapping the Alzheimer's brain with connectomics. Front. Psychiatry2:77. doi: 10.3389/fpsyt.2011.00077

  • 79

    XuK.HuW.LeskovecJ.JegelkaS. (2018). How powerful are graph neural networks? arXiv. [preprint]. arXiv:1810.00826. doi: 10.48550/arXiv.1810.00826

  • 80

    XuX.WangT.LiW.LiH.XuB.ZhangM.et al. (2021). Morphological, structural, and functional networks highlight the role of the cortical-subcortical circuit in individuals with subjective cognitive decline. Front. Aging Neurosci. 13:688113. doi: 10.3389/fnagi.2021.688113

  • 81

    XuY.ValentinoD. J.ScherA. I.DinovI.WhiteL. R.ThompsonP. M.et al. (2008). Age effects on hippocampal structural changes in old men: the HAAS. Neuroimage40, 10031015. doi: 10.1016/j.neuroimage.2007.12.034

  • 82

    ZaleskyA.CocchiL.FornitoA.MurrayM. M.BullmoreE. (2012). Connectivity differences in brain networks. Neuroimage60, 10551062. doi: 10.1016/j.neuroimage.2012.01.068

  • 83

    ZhangF.DaducciA.HeY.SchiaviS.SeguinC.SmithR. E.et al. (2022). Quantitative mapping of the brain's structural connectivity using diffusion MRI tractography: a review. Neuroimage249:118870. doi: 10.1016/j.neuroimage.2021.118870

  • 84

    ZhangS.TongH.XuJ.MaciejewskiR. (2019). Graph convolutional networks: a comprehensive review. Comput. Soc. Netw. 6, 123. doi: 10.1186/s40649-019-0069-y

  • 85

    ZhangX.HeL.ChenK.LuoY.ZhouJ.WangF. (2018). “Multi-view graph convolutional network and its applications on neuroimage analysis for Parkinson's disease,” in AMIA annual symposium proceedings, Vol. 2018 (San Francisco, CA), 1147.

  • 86

    ZhangX.PanY.WuT.ZhaoW.ZhangH.DingJ.et al. (2024). Brain age prediction using interpretable multi-feature-based convolutional neural network in mild traumatic brain injury. NeuroImage297:120751.

  • 87

    ZhangY.HeX.ChanY. H.TengQ.RajapakseJ. C. (2023a). Multi-modal graph neural network for early diagnosis of Alzheimer's disease from smri and pet scans. Comput. Biol. Med. 164:107328. doi: 10.1016/j.compbiomed.2023.107328

  • 88

    ZhangY.TengQ.HeX.NiuT.ZhangL.LiuY.et al. (2023b). “Attention-based 3D cnn with multi-layer features for Alzheimer's disease diagnosis using brain images,” in 2023 45th Annual international conference of the IEEE engineering in medicine & biology society (EMBC) (IEEE), 14. doi: 10.1109/EMBC40787.2023.10340536

  • 89

    ZhangY.XieR.BeheshtiI.LiuX.ZhengG.WangY.et al. (2024). Improving brain age prediction with anatomical feature attention-enhanced 3D-CNN. Comput. Biol. Med.169:107873. doi: 10.1016/j.compbiomed.2023.107873

  • 90

    ZhangY.ZhanL.CaiW.ThompsonP.HuangH. (2019). “Integrating heterogeneous brain networks for predicting brain disease conditions,” in Medical image computing and computer assisted intervention-MICCAI 2019: 22nd international conference, Shenzhen, China, October 13-17, 2019, Proceedings, Part IV 22 (Shenzhen: Springer), 214222. doi: 10.1007/978-3-030-32251-9_24

  • 91

    ZhengK.YuS.ChenL.DangL.ChenB. (2024). BPI-GNN: interpretable brain network-based psychiatric diagnosis and subtyping. NeuroImage292:120594. doi: 10.1016/j.neuroimage.2024.120594

  • 92

    ZhouZ.FischlB.AganjI. (2025). Harmonization of structural brain connectivity through distribution matching. Human Brain Mapp. 46:e70257. e70257 HBM-24-0961, R2. doi: 10.1002/hbm.70257

  • 93

    ZhouZ.LiJ.WilliamsJ.FischlB.AganjI. (2026). “Deep-learning cortical registration guided by structural and diffusion MRI and connectivity,” in International symposium on biomedical imaging (ISBI) (London). doi: 10.1101/2025.10.31.685908

Summary

Keywords

age, brain connectivity, deep learning, dementia, diffusion MRI, graph convolutional network (GCN), graph neural network (GNN), prediction

Citation

Kazi A, Mora J, Fischl B, Dalca AV and Aganj I (2026) Structural connectome analysis using a graph-based deep model for prediction of non-imaging variables. Front. Neurosci. 20:1786355. doi: 10.3389/fnins.2026.1786355

Received

12 January 2026

Revised

07 April 2026

Accepted

21 April 2026

Published

20 May 2026

Volume

20 - 2026

Edited by

Fabrizio Pizzagalli, University of Turin, Italy

Reviewed by

Yoonmi Hong, University of North Carolina at Chapel Hill, NC, United States

Anindya Nag, Northern University of Business and Technology Khulna, Bangladesh

Updates

Copyright

*Correspondence: Anees Kazi,

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.

Outline

Figures

Cite article

Copy to clipboard


Export citation file


Share article

Article metrics