EARNN: Interpretable Brain Disorder Prediction via Regionalized Deep Learning

A novel ensemble approach on regionalized neural networks for brain disorder prediction

2017-04-03
Lei Zheng, Jingyuan Zhang, Bokai Cao, Philip S. Yu, Ann B. Ragin
Summary
Problem
Method
Results
Takeaways
Abstract

EARNN (Ensemble Approach on Regionalized Neural Networks) is a novel two-stage deep learning framework for brain disorder prediction using fMRI data. It leverages 3D Convolutional Neural Networks (CNNs) and a unique stochastic pooling mechanism to extract regional biomarkers, achieving state-of-the-art performance on HIV and ADHD datasets.

TL;DR

Predicting brain disorders like ADHD and HIV from fMRI data is notoriously difficult due to the high dimensionality and non-linear nature of neural connectivity. EARNN (Ensemble Approach on Regionalized Neural Networks) tackles this by decomposing the brain into functional regions, training specialized 3D CNNs for each, and ensembling them via an EM algorithm. This method doesn't just improve accuracy—it tells doctors which parts of the brain are likely damaged.

Problem & Motivation: The "Black Box" of Whole-Brain Analysis

Most current neuroimaging analysis suffers from two extremes:

  1. Hand-crafted features: Methods like SVM or Logistic Regression treat voxels as independent variables, completely ignoring the spatial "structural information" of the brain.
  2. Global Deep Learning: Standard CNNs process the whole brain image uniformly. While they capture non-linear patterns, they ignore the biological reality that different diseases (e.g., Alzheimer's vs. ADHD) target very specific Regions of Interest (ROIs).

The authors' insight was simple yet profound: If diseases are regional, our architecture should be regional.

Methodology: The Architecture of EARNN

The EARNN framework operates in two distinct stages.

Stage 1: The Regionalized CNN (CNNr)

Instead of one giant model, the authors create individual networks, where each network is specialized for a specific brain region .

The secret sauce is the Regionalized Stochastic Pooling. Traditional pooling (Max or Average) just looks for the strongest signal. EARNN’s pooling uses a multinomial distribution where the probability of selecting an activation is weighted by whether that voxel actually belongs to the target region according to a brain atlas.

Architecture of CNNr Figure 1: The architecture of a single regionalized CNN model showing the 3D convolution and the custom pooling layer.

Stage 2: EM-based Ensemble

Not all regions are equally important for every disease. EARNN uses an Expectation-Maximization (EM) algorithm to learn a set of mixing coefficients .

  • E-Step: Estimate the "responsibility" of each regional network for the correct classification of a sample.
  • M-Step: Update the weights to favor the regions that provide the most reliable diagnostic signals.

Experiments & Results: Accuracy Meets Interpretability

The model was tested on two challenging datasets: HIV (Northwestern University) and ADHD-200.

Quantitative SOTA Performance

EARNN-2 (a 2-layer variant) consistently outperformed all baselines. In the ADHD dataset, traditional methods like SVM hovered around 45-54% accuracy (barely better than a coin flip), while EARNN achieved 76.5%.

Experimental Results Comparison Table 1: Performance comparison on the HIV dataset. EARNN shows a clear lead in F1 score and Precision.

Identifying the "Target" of Disease

Perhaps the most significant result is shown in the mixing coefficients. By ranking the highest values, EARNN identified regions like the Temporal Superior Gyrus and Precuneus as high-impact areas for HIV and ADHD respectively—findings that align perfectly with established clinical domain knowledge.

Identified Relevant Brain Regions Table 2: Top brain regions identified by EARNN as relevant to HIV and ADHD.

Critical Analysis & Conclusion

Takeaway

EARNN proves that incorporating anatomical priors (via atlases and regional pooling) is superior to "blind" end-to-end learning for medical imaging. It effectively handles the structural complexity of fMRI while remaining interpretable.

Limitations

While powerful, the model relies on a pre-defined brain atlas. If the atlas is inaccurate or if the disease causes significant structural shifts that mismatch the atlas, the regional pooling might focus on the wrong voxels. Furthermore, the training of separate CNNs can be computationally expensive compared to a single sparse model.

Future Work

The next logical step for this research is moving from static fMRI to Dynamic Functional Connectivity, where the temporal changes in regional influence are modeled over the course of a scan.

Find Similar Papers

Try Our Examples

  • Search for recent studies that use Graph Convolutional Networks (GCNs) combined with ROI-based regional analysis for fMRI-based disease classification.
  • Who first proposed the use of 3D CNNs for medical imaging, and how does EARNN's stochastic pooling differ from original 3D pooling methods?
  • Explore how the EM-based ensemble approach for multi-region integration has been applied in newer multimodal neuroimaging tasks involving both MRI and PET scans.
Contents
EARNN: Interpretable Brain Disorder Prediction via Regionalized Deep Learning
1. TL;DR
2. Problem & Motivation: The "Black Box" of Whole-Brain Analysis
3. Methodology: The Architecture of EARNN
3.1. Stage 1: The Regionalized CNN (CNNr)
3.2. Stage 2: EM-based Ensemble
4. Experiments & Results: Accuracy Meets Interpretability
4.1. Quantitative SOTA Performance
4.2. Identifying the "Target" of Disease
5. Critical Analysis & Conclusion
5.1. Takeaway
5.2. Limitations
5.3. Future Work