Abstract
Interactions between the brain and body are of fundamental importance for human behavior and health. Functional magnetic resonance imaging (fMRI) captures whole-brain activity noninvasively, and modeling how fMRI signals interact with physiological dynamics of the body can provide new insight into brain function and offer potential biomarkers of disease. However, physiological recordings are not always possible to acquire since they require extra equipment and setup, and even when they are, the recorded physiological signals may contain substantial artifacts. To overcome this limitation, machine learning models have been proposed to directly extract features of respiratory and cardiac activity from resting-state fMRI signals. To date, such work has been carried out only in healthy young adults and in a pediatric population, leaving open questions about the efficacy of these approaches on older adults. Here, we propose a novel framework that leverages Transformer-based architectures for reconstructing two key physiological signals – low-frequency respiratory volume (RV) and heart rate (HR) fluctuations – from fMRI data, and test these models on a dataset of individuals aged 36–89 years old. Our framework outperforms previously proposed approaches (attaining median correlations between predicted and measured signals of r ~ .698 for RV and r ~ .618 for HR), indicating the potential of leveraging attention mechanisms to model fMRI-physiological signal relationships. We also evaluate several model training and fine-tuning strategies, and find that incorporating young-adult data during training improves the performance when predicting physiological signals in the aging cohort. Overall, our approach successfully infers key physiological variables directly from fMRI data from individuals across a wide range of the adult lifespan.
Keywords: Resting-state fMRI, aging, physiology, respiration, cardiac activity, deep learning
1. DESCRIPTION OF PURPOSE
Functional magnetic resonance imaging (fMRI) captures brain activity in an indirect, non-invasive manner by recording changes in the local blood oxygenation level (blood-oxygen level dependent signal; BOLD) [1–3]. Prior work has demonstrated that bodily processes have a close connection with fMRI BOLD signals. For example, slow, natural variations in respiration volume (RV) and heart rate (HR) have been associated with low-frequency fMRI signals (0.01–0.15 Hz [4–6]), a band that is of high relevance for studying brain activity and connectivity[7,8]. Therefore, collecting respiration and heart rate signals during fMRI is important for interpreting fMRI results. Moreover, there is increasing evidence that the coupling between fMRI and physiological signals provides valuable information regarding brain vasculature and cognitive performance[9–13]. However, many fMRI datasets lack simultaneously recorded physiological measures[14–16], which require additional equipment and setup during the fMRI session. Further, even when physiology is monitored, the recordings can be heavily corrupted by artifacts due to hardware, subject movement, or other sources.
To tackle this problem, previous studies have investigated the possibility of reconstructing low-frequency RV and HR signals directly from fMRI data. These studies have employed convolutional neural networks (CNN) [17,18], bidirectional long short-term memory (Bi-LSTM), and vanilla transformer models [19,20] in healthy young adults (<36 yo) and children (<18 yo). However, to our knowledge, no study has yet modeled aging cohorts (i.e., adults older than 36 yo). There is strong evidence that the relationship between physiological fluctuations and fMRI may change with aging [21–24], suggesting the need for models that operate on older adults. Since its inception, transformer models have achieved excellent performance in capturing short/long temporal dependencies [25]. One candidate approach for reconstructing physiological time-series from fMRI may involve the use of transformer architectures with multi-head sliding-window attention mechanism [26–28]. Here, we propose a novel framework that adapts two transformer-based models to the problem of extracting physiological signals directly from resting-state fMRI data. We find that these models outperform previous CNN and Bi-LSTM based models on an older (>36 yo) adult cohort. In addition, we examine the influence of age on the physiological signal reconstruction performance, and find that including training data from older adults yields no significant age-related performance differences.
The rest of the paper is structured as follows: 1) the Methods section provides a brief introduction of the dataset, preprocessing steps, model architectures and training details; 2) the Results section presents the RV and HR reconstruction results; and 3) the Conclusion section highlights the implications and summary of our work.
2. METHODS
2.1. Datasets
We included 1500 resting-state scans with high-quality physiological recordings from 375 subjects (each scanned 4 times) in the Human Connectome Project (HCP) Young Adult dataset (“HCP-Young”) and 1752 scans from 571 subjects in the HCP-Aging dataset, with an age range of 36–89 years old (mean = 58.7, std = 14.3). The HCP-Young dataset was acquired with voxel size = 2 mm isotropic, TR = 720 ms, 1200 volumes, scan duration ≈ 14.4 min [29,30], and the HCP-Aging dataset was acquired with voxel size = 2 mm isotropic, TR = 800 ms, 487 volumes, scan duration ≈ 6.5 min [31,32].
2.2. Preprocessing and ROI time course extraction
Both fMRI datasets went through the HCP’s generic fMRI volume minimal preprocessing pipeline, and were registered into MNI152 common space [30,33]. We extracted 400 cortical ROIs from the Schaefer Atlas [34], 25 subcortical ROIs from the Melbourne Atlas [35] and the Ascending Arousal Network Atlas [36] and 72 white matter ROIs from the Pandora Tractseg Atlas with a 0.95 threshold [37]. We further detrended the ROIs’ time courses, bandpass filtered at 0.01 – 0.15 Hz, temporally resampled both datasets to 1.44 s and z-normalized each ROI’s time course. The temporal downsampling step was carried out to more closely match fMRI data with conventional (typically > 1s) sampling interval (TR), and because the low-frequency oscillations in BOLD and RV/HR signals fall primarily within a frequency band that is adequately sampled by this rate. The physiological recordings of both the HCP-Young and HCP-Aging datasets were sampled at 400 Hz. RV was calculated as the standard deviation of a 6 s window centered at each TR, and HR was calculated in the same time window as the inverse of the mean inter-beat-interval. RV and HR were detrended, bandpass filtered (0.01 – 0.15 Hz) to extract low-frequency fluctuations, linearly resampled to 1.44 s, and z-normalized.
2.3. Model Architecture
The two transformer-based architectures in our proposed framework are: seq2one (Figure 1a) and seq2seq (Figure 1b). Both of these architectures have two main components, a transformer block[25] followed by linear projection layers. The transformer block utilizes attention to extract temporal features from the input fMRI regions of interest (ROIs), which are passed to the linear projection layer(s) to predict RV and HR signals.
Figure 1.

Transformer seq2one (a) and Transformer seq2seq (b) model architectures. These models take fMRI time-series from specific brain regions of interest (ROIs) as input, and output the predicted physiological (RV and HR) time courses.
For seq2one, we used a sliding-window approach (window size = 32 timepoints = 46 seconds, and step size = 1), similar to prior window-based CNN studies with younger-adult and pediatric cohorts [17,18], and the 46-second window size was designed to encompass the duration of the fMRI hemodynamic response function. For each fMRI window, we predict a single RV or HR time point in the middle of that window. For each time point, the transformer block (1 layer, 8 heads each with dimension 60, dropout rate = 0.3) learns to capture pairwise temporal dependencies between every time point within the same window. The extracted temporal features are then passed into linear projection layers to output a single RV or HR point. These individual points are assembled into the final predicted signals (235 time points), which are shorter than the input ROI signals (266 time points) due to edge effects at the first and last windows.
For seq2seq, we also adopted a sliding-window approach (window size = 4, 8, 12, 16, 20 for the 5 sequential transformer blocks and step size = ¼ of window size) [26–28]. For each fMRI window, the transformer block (20 heads each with dimension 100, dropout rate = 0.3) extracts temporal information and outputs features for each time point as the same length of the window. We then average the extracted features at each time point as a means of aggregating the overlapping features. As a result, each aggregated feature incorporates information from multiple windows that contain this time point, capturing more temporally global information. This aggregated feature is passed to the next transformer block, which has a larger window size. In this way, the model can leverage fine-grained features and longer-range temporal patterns. After 5 sequential seq2seq blocks, the final feature is passed to the linear projection layers, which output RV and HR signals that are the same length as the corresponding input ROI time series.
2.4. Training strategies and implementation details
Four training strategies were assessed: 1) directly applying the pre-trained model from HCP-Young to HCP-Aging, 2) training from scratch using only HCP-Aging data, 3) jointly training from scratch using both HCP-Aging and HCP-Young data and 4) pre-training with HCP-Young data and fine-tuning on HCP-Aging data. Models were implemented using PyTorch. The 5-fold train-test splits of the HCP-Aging dataset (described below) were done by adopting an age-balanced strategy. The validation set is selected as 15% of the training set scans. We chose Adam optimizer with default parameters with β1=0.9, β2=0.999, and batch size of 16. The model structures and hyperparameters for CNN and Bi-LSTM were directly adopted from previous papers [17,20]. For both Transformer models, the initial learning rate when training from scratch is 1e-4 with decay rate 0.5 and patience 2, and the initial learning rate for fine-tuning was 5e-5. Learning rate was chosen based on model performance on the HCP-Young dataset. Early-stopping was set to 5 on the validation set. Pearson correlation coefficient between the ground truth RV or HR and the predicted signals was used as the loss function and model evaluation metric. The experiments were performed on an NVIDIA GeForce RTX 2080 Ti.
3. RESULTS
Table 1 compares the proposed framework with previously established models for RV and HR time course reconstruction on the HCP-Aging dataset. Values summarize the median Pearson’s correlation across 5 folds. Predicted versus measured RV and HR time courses are presented for several older-adult subjects in Figure 2.
Table 1.
RV and HR reconstruction performance on the HCP-Aging data. Values indicate Pearson’s correlation between measured and recorded signals. TF: transformer
| Task | RV Reconstruction | HR Reconstruction | ||||||
|---|---|---|---|---|---|---|---|---|
| Model | CNN[17] | Bi-LSTM[20] | TF-seq2one | TF-seq2seq | CNN[17] | Bi-LSTM[20] | TF-seq2one | TF-seq2seq |
| # Parameters | 0.08 M | 40 M | 1.5 M | 22 M | 0.08 M | 40 M | 1.5 M | 22 M |
| Pretrain | / | 0.593 | / | / | / | 0.553 | / | / |
| From scratch | 0.619 | 0.665 | 0.685 | 0.670 | 0.506 | 0.592 | 0.585 | 0.602 |
| From scratch (jointly) | 0.592 | 0.657 | 0.684 | 0.675 | 0.530 | 0.593 | 0.593 | 0.605 |
| Fine-tune | 0.614 | 0.683 | 0.698 | 0.684 | 0.525 | 0.606 | 0.595 | 0.618 |
Figure 2.

Examples of RV and HR signals predicted in older adults by the indicated models, together with the corresponding measured signals. Pearson correlation (r) between predicted and measured signals is also provided. The proposed frameworks effectively learn to predict many prominent features in these physiological time series.
Overall, seq2one, when pretraining on the HCP-Young dataset and fine-tuning on the HCP-Aging dataset, achieved the best performance for RV reconstruction, and seq2seq achieved the best performance for HR reconstruction with the same training strategy. These models both achieved significantly higher performance (p<0.01) in predicting RV and HR, respectively, compared to the other 3 models under the same fine-tune training strategy. Significance was determined using paired t-tests after averaging the model performance for subjects with multiple scans to control for repeated measures. Notably, these models have fewer parameters than the Bi-LSTM model. Directly applying the pretrained model from HCP-Young data on the HCP-Aging data yielded the worst performance, indicating a domain shift between the young and old dataset. Training the model from scratch using HCP-Aging data yielded moderate performance, indicating that the model can effectively learn features from the aging group. Compared to training using only HCP-Aging data, jointly training from scratch with both HCP-Young and Aging data has comparable or decreased performance when reconstructing RV.
When directly applying the Bi-LSTM model trained on HCP-Young dataset to the HCP-Aging dataset (without fine-tuning), we observed a significant age-related decrease in model accuracy in older adults (p<0.01) (Fig. 3 and Fig. 4). Yet, when HCP-Aging data was included in the training set, no decreasing trend was found, and the fine-tuned TF-seq2one RV prediction performance increased slightly in older adults (p=0.02). (Fig. 4). This result may suggest that age-related information may be learned from the fMRI time courses without the explicit input of chronological age.
Figure 3.

Performance across 3 age groups in the HCP-Aging data, for the indicated models.
Figure 4.

Model performance (averaged across scans for subjects with multiple scan sessions) against subject age in the HCP-Aging data, for the indicated models.
4. CONCLUSION
This work advances the ability to infer low-frequency cardiac and respiratory fluctuations directly from brain fMRI data. In a dataset from adults spanning a wide age range (36–89 years), the proposed transformer-based framework outperformed prior state-of-the-art on this task[17,19]. Further, the median performances on older adults (~0.6–0.7) are comparable to, or exceed, the performance on younger adults reported in prior studies [20]. Our experiments also revealed that leveraging additional data from young adults to pre-train the model, followed by fine-tuning with data from older adults, was helpful for capturing specific characteristics of the aging population. Overall, these methods allow for characterizing physiological components of fMRI data in older adults, and for investigating age-related changes in brain-body interaction and brain vascular health, in the common scenario of missing or corrupted physiological recordings.
ACKNOWLEDGEMENTS
This work is supported by NIH RF1MH125931 and NIH P50MH109429. Research reported in this publication was supported by the National Institute on Aging of the National Institutes of Health under Award Number U01AG052564 and by funds provided by the McDonnell Center for Systems Neuroscience at Washington University in St. Louis. The HCP-Aging 2.0 Release data used in this report came from DOI: 10.15154/1520707. This work has not been submitted elsewhere.
Footnotes
New/breakthrough work to be presented: We proposed new frameworks with Transformer-based models to predict low-frequency cardiac and respiratory fluctuations from fMRI signals. Further, as the experiments in prior studies were limited to neuroimaging data from younger individuals (36 years and younger), this study presents a novel investigation into the older spectrum of the adult lifespan (ages 36–89), hence broadening the ability to model physiological features from fMRI.
REFERENCES
- 1.Toronov V, Walker S, Gupta R, Choi JH, Gratton E, Hueber D, & Webb A (2003). The roles of changes in deoxyhemoglobin concentration and regional cerebral blood volume in the fMRI BOLD signal. NeuroImage, 19(4), 1521–1531. 10.1016/S1053-8119(03)00152-6 [DOI] [PubMed] [Google Scholar]
- 2.Shen Q, Ren H, & Duong TQ (2008). CBF, BOLD, CBV, and CMRO 2 fMRI signal temporal dynamics at 500-msec resolution. Journal of Magnetic Resonance Imaging, 27(3), 599–606. 10.1002/jmri.21203 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 3.Kim S-G, & Ogawa S (2012). Biophysical and Physiological Origins of Blood Oxygenation Level-Dependent fMRI Signals. Journal of Cerebral Blood Flow & Metabolism, 32(7), 1188–1206. 10.1038/jcbfm.2012.23 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 4.Wise RG, Ide K, Poulin MJ, & Tracey I (2004). Resting fluctuations in arterial carbon dioxide induce significant low frequency variations in BOLD signal. NeuroImage, 21(4), 1652–1664. 10.1016/j.neuroimage.2003.11.025 [DOI] [PubMed] [Google Scholar]
- 5.Murphy K, Birn RM, & Bandettini PA (2013). Resting-state fMRI confounds and cleanup. NeuroImage, 80, 349–359. 10.1016/j.neuroimage.2013.04.001 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 6.Glover GH, Li T-Q, & Ress D (2000). Image-based method for retrospective correction of physiological motion effects in fMRI: RETROICOR. Magnetic Resonance in Medicine, 44(1), 162–167. 10.1002/1522-2594(200007)44:1<162::AID-MRM23>3.0.CO;2-E [DOI] [PubMed] [Google Scholar]
- 7.Josephs O, & Henson RNA (1999). Event-related functional magnetic resonance imaging: modelling, inference and optimization. Philosophical Transactions of the Royal Society of London. Series B: Biological Sciences, 354(1387), 1215–1228. 10.1098/rstb.1999.0475 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 8.Logothetis NK, Pauls J, Augath M, Trinath T, & Oeltermann A (2001). Neurophysiological investigation of the basis of the fMRI signal. Nature, 412(6843), 150–157. 10.1038/35084005 [DOI] [PubMed] [Google Scholar]
- 9.Tu W, & Zhang N (2022). Neural underpinning of a respiration-associated resting-state fMRI network. ELife, 11. 10.7554/eLife.81555 [DOI] [Google Scholar]
- 10.Gu Y, Han F, Sainburg LE, Schade MM, Buxton OM, Duyn JH, & Liu X (2022). An orderly sequence of autonomic and neural events at transient arousal changes. NeuroImage, 264, 119720. 10.1016/j.neuroimage.2022.119720 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 11.Zelano C, Jiang H, Zhou G, Arora N, Schuele S, Rosenow J, & Gottfried JA (2016). Nasal Respiration Entrains Human Limbic Oscillations and Modulates Cognitive Function. The Journal of Neuroscience, 36(49), 12448–12467. 10.1523/JNEUROSCI.2586-16.2016 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 12.Chen JE, Lewis LD, Chang C, Tian Q, Fultz NE, Ohringer NA, Rosen BR, & Polimeni JR (2020). Resting-state “physiological networks.” NeuroImage, 213, 116707. 10.1016/j.neuroimage.2020.116707 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 13.Bolt T, Nomi JS, Bzdok D, Salas JA, Chang C, Thomas Yeo BT, Uddin LQ, & Keilholz SD (2022). A parsimonious description of global functional brain organization in three spatiotemporal patterns. Nature Neuroscience, 25(8), 1093–1103. 10.1038/s41593-022-01118-1 [DOI] [PubMed] [Google Scholar]
- 14.Jack CR, Barnes J, Bernstein MA, Borowski BJ, Brewer J, Clegg S, Dale AM, Carmichael O, Ching C, DeCarli C, Desikan RS, Fennema-Notestine C, Fjell AM, Fletcher E, Fox NC, Gunter J, Gutman BA, Holland D, Hua X, … Weiner M (2015). Magnetic resonance imaging in Alzheimer’s Disease Neuroimaging Initiative 2. Alzheimer’s & Dementia, 11(7), 740–756. 10.1016/j.jalz.2015.05.002 [DOI] [Google Scholar]
- 15.Bycroft C, Freeman C, Petkova D, Band G, Elliott LT, Sharp K, Motyer A, Vukcevic D, Delaneau O, O’Connell J, Cortes A, Welsh S, Young A, Effingham M, McVean G, Leslie S, Allen N, Donnelly P, & Marchini J (2018). The UK Biobank resource with deep phenotyping and genomic data. Nature, 562(7726), 203–209. 10.1038/s41586-018-0579-z [DOI] [PMC free article] [PubMed] [Google Scholar]
- 16.HCP WU-Minn. (2017). HCP S1200 Release Reference Manual.
- 17.Salas JA, Bayrak RG, Huo Y, & Chang C (2021). Reconstruction of respiratory variation signals from fMRI data. NeuroImage, 225, 117459. 10.1016/j.neuroimage.2020.117459 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 18.Addeh A, Vega F, Medi PR, Williams RJ, Pike GB, & MacDonald ME (2023). Direct machine learning reconstruction of respiratory variation waveforms from resting state fMRI data in a pediatric population. NeuroImage, 269, 119904. 10.1016/j.neuroimage.2023.119904 [DOI] [PubMed] [Google Scholar]
- 19.Bayrak RG, Salas JA, Huo Y, & Chang C (2020). A Deep Pattern Recognition Approach for Inferring Respiratory Volume Fluctuations from fMRI Data (pp. 428–436). 10.1007/978-3-030-59728-3_42 [DOI] [Google Scholar]
- 20.Bayrak RG, Hansen CB, Salas JA, Ahmed N, Lyu I, Huo Y, & Chang C (2021). From Brain to Body: Learning Low-Frequency Respiration and Cardiac Signals from fMRI Dynamics (pp. 553–563). 10.1007/978-3-030-87234-2_52 [DOI] [Google Scholar]
- 21.Kassinopoulos M, & Mitsis GD (2019). Identification of physiological response functions to correct for fluctuations in resting-state fMRI related to heart rate and respiration. NeuroImage, 202, 116150. 10.1016/j.neuroimage.2019.116150 [DOI] [PubMed] [Google Scholar]
- 22.Handwerker DA, Gazzaley A, Inglis BA, & D’Esposito M (2007). Reducing vascular variability of fMRI data across aging populations using a breathholding task. Human Brain Mapping, 28(9), 846–859. 10.1002/hbm.20307 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 23.Kumral D, Schaare HL, Beyer F, Reinelt J, Uhlig M, Liem F, Lampe L, Babayan A, Reiter A, Erbey M, Roebbig J, Loeffler M, Schroeter ML, Husser D, Witte AV, Villringer A, & Gaebler M (2019). The age-dependent relationship between resting heart rate variability and functional brain connectivity. NeuroImage, 185, 521–533. 10.1016/j.neuroimage.2018.10.027 [DOI] [PubMed] [Google Scholar]
- 24.Nomi JS, Bzdok D, Li J, Bolt T, Chang C, Kornfeld S, Goodman ZT, Yeo BTT, Spreng RN, & Uddin LQ (2024). Systematic cross-sectional age-associations in global fMRI signal topography. Imaging Neuroscience, 2, 1–13. 10.1162/imag_a_00101 [DOI] [Google Scholar]
- 25.Vaswani A, Shazeer N, Parmar N, Uszkoreit J, Jones L, Gomez AN, Kaiser L, & Polosukhin I (2017). Attention Is All You Need.
- 26.Child R, Gray S, Radford A, & Sutskever I (2019). Generating Long Sequences with Sparse Transformers.
- 27.Beltagy I, Peters ME, & Cohan A (2020). Longformer: The Long-Document Transformer.
- 28.Bedel HA, Sivgin I, Dalmaz O, Dar SUH, & Çukur T (2023). BolT: Fused window transformers for fMRI time series analysis. Medical Image Analysis, 88, 102841. 10.1016/j.media.2023.102841 [DOI] [PubMed] [Google Scholar]
- 29.Van Essen DC, Smith SM, Barch DM, Behrens TEJ, Yacoub E, & Ugurbil K (2013). The WU-Minn Human Connectome Project: An overview. NeuroImage, 80, 62–79. 10.1016/j.neuroimage.2013.05.041 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 30.Glasser MF, Smith SM, Marcus DS, Andersson JLR, Auerbach EJ, Behrens TEJ, Coalson TS, Harms MP, Jenkinson M, Moeller S, Robinson EC, Sotiropoulos SN, Xu J, Yacoub E, Ugurbil K, & Van Essen DC (2016). The Human Connectome Project’s neuroimaging approach. Nature Neuroscience, 19(9), 1175–1187. 10.1038/nn.4361 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 31.Bookheimer SY, Salat DH, Terpstra M, Ances BM, Barch DM, Buckner RL, Burgess GC, Curtiss SW, Diaz-Santos M, Elam JS, Fischl B, Greve DN, Hagy HA, Harms MP, Hatch OM, Hedden T, Hodge C, Japardi KC, Kuhn TP, … Yacoub E (2019). The Lifespan Human Connectome Project in Aging: An overview. NeuroImage, 185, 335–348. 10.1016/j.neuroimage.2018.10.009 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 32.Harms MP, Somerville LH, Ances BM, Andersson J, Barch DM, Bastiani M, Bookheimer SY, Brown TB, Buckner RL, Burgess GC, Coalson TS, Chappell MA, Dapretto M, Douaud G, Fischl B, Glasser MF, Greve DN, Hodge C, Jamison KW, … Yacoub E (2018). Extending the Human Connectome Project across ages: Imaging protocols for the Lifespan Development and Aging projects. NeuroImage, 183, 972–984. 10.1016/j.neuroimage.2018.09.060 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 33.Glasser MF, Sotiropoulos SN, Wilson JA, Coalson TS, Fischl B, Andersson JL, Xu J, Jbabdi S, Webster M, Polimeni JR, Van Essen DC, & Jenkinson M (2013). The minimal preprocessing pipelines for the Human Connectome Project. NeuroImage, 80, 105–124. 10.1016/j.neuroimage.2013.04.127 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 34.Schaefer A, Kong R, Gordon EM, Laumann TO, Zuo X-N, Holmes AJ, Eickhoff SB, & Yeo BTT (2018). Local-Global Parcellation of the Human Cerebral Cortex from Intrinsic Functional Connectivity MRI. Cerebral Cortex, 28(9), 3095–3114. 10.1093/cercor/bhx179 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 35.Tian Y, Margulies DS, Breakspear M, & Zalesky A (2020). Topographic organization of the human subcortex unveiled with functional connectivity gradients. Nature Neuroscience, 23(11), 1421–1432. 10.1038/s41593-020-00711-6 [DOI] [PubMed] [Google Scholar]
- 36.Edlow BL, Takahashi E, Wu O, Benner T, Dai G, Bu L, Grant PE, Greer DM, Greenberg SM, Kinney HC, & Folkerth RD (2012). Neuroanatomic Connectivity of the Human Ascending Arousal System Critical to Consciousness and Its Disorders. Journal of Neuropathology & Experimental Neurology, 71(6), 531–546. 10.1097/NEN.0b013e3182588293 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 37.Hansen CB, Yang Q, Lyu I, Rheault F, Kerley C, Chandio BQ, Fadnavis S, Williams O, Shafer AT, Resnick SM, Zald DH, Cutting LE, Taylor WD, Boyd B, Garyfallidis E, Anderson AW, Descoteaux M, Landman BA, & Schilling KG (2021). Pandora: 4-D White Matter Bundle Population-Based Atlases Derived from Diffusion MRI Fiber Tractography. Neuroinformatics, 19(3), 447–460. 10.1007/s12021-020-09497-1 [DOI] [PMC free article] [PubMed] [Google Scholar]
