REVIEW 5 major objections 5 minor 1 cited by
DGG-XNet: A Hybrid Deep Learning Framework for Multi-Class Brain Disease Classification with Explainable AI
T0 review · 5 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A VGG16 and DenseNet121 feature fusion reaches 91.33% test accuracy on a three-class brain MRI task, outperforming both single backbones.
desk verdict Routine feature-fusion paper whose 91% accuracy rests on a slice-level random split that may leak patient information into the test set. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is dual-branch feature fusion with global average pooling. Each input image $x$ is passed through VGG16 and DenseNet121; the pooled branch outputs are concatenated into $F = \mathrm{Concat}(\mathrm{GAP}(VGG16(x)), \mathrm{GAP}(DenseNet121(x)))$, and $F$ is transformed by batch-normalized dense layers with ReLU, dropout, and a softmax head. The concat fusion is what allows the final classifier to combine VGG16's spatial hierarchy with DenseNet121's densely reused features before making the three-way decision.
What would settle it
Re-run the exact training protocol but split the data by patient or 3D volume such that every slice from one volume lands in a single partition; if accuracy falls well below 91.33%, or if a nearest-neighbor check shows train/test slices from the same volume, the reported number reflects identity leakage rather than generalizable classification.
Extended reading notes
Core claim
The central discovery is that fusing VGG16 and DenseNet121 at the feature-vector level improves three-class brain MRI classification beyond either backbone alone: DGG-XNet reaches 91.33% test accuracy while VGG16 alone reaches 84.67% and DenseNet121 alone reaches 82.67% on the same balanced 150-image test set. The authors attribute the gain to VGG16's strong hierarchical spatial features complementing DenseNet121's dense connectivity and feature reuse, together with ImageNet-initialized transfer learning, downsampling to 500 images per class, and early stopping.
Load-bearing premise
The load-bearing premise is that the stratified random split of individual 2D MRI slices into training and test sets keeps the test set independent; since slices are drawn from the same 3D volumes without patient-level grouping, slices from the same patient can appear on both sides, which would let the model memorize patients rather than learn the disease.
Editorial extensions
If this is right
- If the reported accuracy holds, feature-fusion hybrids of this kind are a stronger starting point than single CNNs for multi-class neurological screening from 2D MRI slices.
- The same training recipe, including balanced downsampling, ImageNet initialization, and early stopping, yields a model whose Grad-CAM and Integrated Gradients maps point to localized brain structures.
- The comparison table implies that a family of fusion architectures can be swept by swapping backbones while keeping the global-average-pooling, concatenation, and dense-head design fixed.
- The class-wise metrics show the remaining error concentrates on the Alzheimer's class, with precision 0.82 and recall 0.84, while Tumour is classified perfectly at 1.00.
- The paper's stated future directions, including 3D volumetric analysis, added modalities, data augmentation, and domain adaptation, are natural next tests of whether the fusion benefit transfers beyond the current 2D slice setting.
Reading between the lines
- Because the split described in the paper does not group slices by patient or 3D volume, the 91.33% figure could be inflated by same-patient slices appearing in both training and testing; a patient-level evaluation would settle this directly.
- The fusion advantage could be probed by ablating the concatenation against attention-weighted fusion or single-branch global average pooling, to see whether the gain is the fusion itself or simply added model capacity.
- Grad-CAM and Integrated Gradients maps are shown qualitatively; their faithfulness could be quantified with insertion/deletion or pointing-game metrics.
- Because BraTS volumes and the Alzheimer's 2D set differ in acquisition and content, testing DGG-XNet on a third unseen dataset, or with per-scanner cross-validation folds, would show whether the 91.33% transfers across imaging protocols.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes DGG-XNet, a hybrid deep learning model that fuses VGG16 and DenseNet121 feature maps via global average pooling, for three-class brain MRI classification (Tumour, Normal, Alzheimer's). The model is trained on T1-weighted slices from BraTS 2021 and a Kaggle Alzheimer's dataset, balanced to 500 samples per class and split 70/20/10 by stratified sampling. The authors report 91.33% test accuracy, macro precision/recall/F1 around 90%, and compare against eight CNN baselines. Grad-CAM and Integrated Gradients are used to illustrate model explanations.
Significance. If the evaluation were reliable, the paper would offer a useful empirical data point on hybrid feature fusion for multi-class brain MRI classification, with an interpretability component that is valuable for clinical CAD. The architecture choice is reasonable, and the comparison to several baselines addresses a practical question. However, the current manuscript does not establish patient-level generalization because the split is slice-based, the tumor labeling is not per-slice verified, and the headline accuracy is inconsistent with the reported per-class metrics. These issues are central to the paper's main claim.
major comments (5)
- [Section 3.3 / Table 2] The test split is performed at the slice level with stratified random sampling, but the dataset is constructed by extracting multiple 2D axial slices from each BraTS 2021 volume (Section 3.2). Because no patient or volume identifier is used to group slices, slices from the same patient can appear in both training and test sets. Adjacent T1-weighted slices from one volume are highly correlated, so the model can memorize patient-specific intensity patterns; the reported 91.33% accuracy (Table 3) and the comparison to VGG16/DenseNet121 therefore do not establish generalization to new patients. Please re-split at the patient/volume level, state the number of patients in train/validation/test, and re-run all models in Table 3 under this protocol.
- [Section 3.2] BraTS 2021 Task 1 volumes are labeled as a single 'Tumour' class for every extracted 2D slice. In a tumor patient's volume, many axial slices (especially at the top and bottom of the brain) contain no tumor tissue; labeling all slices as Tumour is a patient-level label, not a slice-level diagnosis. Since BraTS 2021 provides segmentation masks, please use them to identify slices that actually contain tumor, or explicitly justify patient-level labeling and show that the selected slices are representative. Without this, the Tumour class definition and the measured accuracy are ambiguous.
- [Section 3.1 / 3.2] The Alzheimer's dataset is described as having four categories (Non-Demented, Very Mild Demented, Mild Demented, Moderate Demented), but the three-class setup uses only 'Alzheimer's' and 'Normal'. The mapping from the original four classes to these two is never stated, and the class counts after downsampling are given only as 500 per class. Please specify which original labels become 'Alzheimer's', whether 'Non-Demented' serves as 'Normal', and report the per-subclass counts. Otherwise it is unclear whether the Normal and Alzheimer's classes come from the same acquisition protocol and whether 'Normal' in the Alzheimer's dataset is comparable to the healthy tissue seen in BraTS.
- [Table 4 / Abstract] The reported metrics are internally inconsistent. On a balanced test set of 50 samples per class, accuracy equals the average of the class recalls, i.e., (1.00 + 0.87 + 0.84)/3 = 90.33%, not 91.33%. The abstract states that precision, recall, and F1-score all exceed 91%, but Table 4 gives a macro F1 of 0.90 and per-class scores of 0.82-1.00. Please correct the numbers and provide the confusion matrix with integer counts so that the accuracy, recalls, and precisions can be cross-checked.
- [Section 4 / Table 3] The claim that DGG-XNet outperforms VGG16, DenseNet121, and other baselines is not controlled. Table 3 lists only accuracy values; the manuscript does not state whether each baseline was trained with the same optimizer, learning rate, batch size, early-stopping criterion, data balancing, and train/validation/test split. Without identical training protocols, the accuracy differences cannot be attributed to the proposed fusion architecture. Please describe the common training protocol and report per-model hyperparameter settings.
minor comments (5)
- [Section 3.6] The citation '[6]' for Explainable AI refers to the ImageNet paper; please cite the original Grad-CAM and Integrated Gradients references at the point of use.
- [Figure 4b] The ROC curves are shown but no AUC values are reported in the text; list the numerical AUC for each class.
- [Section 3.2] The preprocessing description says images are 'resized to 224x224x3 and normalized'; state the normalization scheme (e.g., min-max, z-score) and whether normalization parameters were fitted on the training set only.
- [Equation (11)] The integrated-gradients formula would benefit from standard notation for the integration path, and reference [27] is for IG2 rather than the standard integrated-gradients method described; please cite the appropriate original reference.
- [General] The manuscript does not include a data availability statement or mention whether code will be released; adding these statements would improve reproducibility.
Circularity Check
No circularity: DGG-XNet's accuracy claim is an empirical measurement on a held-out test split, not a derived quantity that reduces to its inputs.
full rationale
The paper proposes a hybrid CNN and reports test accuracy. The central claim is not derived from an equation that is equivalent to its inputs. Equation (1) defines the fused feature vector as a concatenation of the two backbones' GAP outputs; this is the model architecture, and the reported 91.33% accuracy is measured on the test split in Tables 3 and 4, not fitted to produce that number. The model is trained with standard loss and optimizer equations (3)-(4), and the metrics (5)-(8) are evaluation definitions, not circular predictions. The only self-citation (reference [2], Ayon et al. with author Miah) supports general background about disease burden and is not load-bearing for the architecture or the accuracy claim. Possible slice-level train/test leakage is a data-independence concern and a correctness risk, but it does not make the result circular: the reported accuracy would still be an empirical measurement, just one whose generalization claim is weakened. No uniqueness theorem, ansatz smuggled via citation, or renamed-known-result pattern appears. The performance claim is therefore self-contained as an empirical evaluation, with no circular step identified.
Assumptions & free parameters
free parameters (6)
- Adam learning rate =
0.0001
- Early stopping patience =
5 epochs
- Input image size =
224x224x3
- Per-class sample count after downsampling =
500
- Train-validation-test split ratio =
70/20/10
- Fully connected layer configuration =
not reported
assumptions (6)
- standard math Standard deep-learning equations for softmax, cross-entropy, and Adam are correct and applicable.
- domain assumption 2D axial slices are representative of the 3D MRI volume for disease classification.
- ad hoc to paper BraTS 2021 Task 1 volumes can be labeled as Tumour class for each extracted slice.
- domain assumption ImageNet-pretrained features transfer to MRI brain images.
- ad hoc to paper The four Kaggle Alzheimer's classes can be collapsed into Alzheimer's and Normal for this three-class setup.
- domain assumption A stratified random split of slices yields independent train and test sets.
Cite this review
Pith. "Pith review of DGG-XNet: A Hybrid Deep Learning Framework for Multi-Class Brain Disease Classification with Explainable AI." pith.science (2026). https://pith.science/paper/CY2WV5RH
@misc{pith2026250614367,
author = {Pith},
title = {Pith review of: DGG-XNet: A Hybrid Deep Learning Framework for Multi-Class Brain Disease Classification with Explainable AI},
year = {2026},
howpublished = {\url{https://pith.science/paper/CY2WV5RH}},
note = {Machine review of arXiv:2506.14367}
}
read the original abstract
Accurate diagnosis of brain disorders such as Alzheimer's disease and brain tumors remains a critical challenge in medical imaging. Conventional methods based on manual MRI analysis are often inefficient and error-prone. To address this, we propose DGG-XNet, a hybrid deep learning model integrating VGG16 and DenseNet121 to enhance feature extraction and classification. DenseNet121 promotes feature reuse and efficient gradient flow through dense connectivity, while VGG16 contributes strong hierarchical spatial representations. Their fusion enables robust multiclass classification of neurological conditions. Grad-CAM is applied to visualize salient regions, enhancing model transparency. Trained on a combined dataset from BraTS 2021 and Kaggle, DGG-XNet achieved a test accuracy of 91.33\%, with precision, recall, and F1-score all exceeding 91\%. These results highlight DGG-XNet's potential as an effective and interpretable tool for computer-aided diagnosis (CAD) of neurodegenerative and oncological brain disorders.
Figures
Forward citations
Cited by 1 Pith paper
-
Proportional Sensitivity in Generative Adversarial Network (GAN)-Augmented Brain Tumor Classification Using Convolutional Neural Network
As the share of GAN-generated brain MRI images in training data rises, CNN tumor classification accuracy falls, with a small 10% synthetic addition giving the best 95.2% accuracy.
Reference graph
Works this paper leans on
-
[1]
Agarap, A.F.: Deep learning using rectified linear units (relu). ArXiv (2018)
work page 2018
-
[2]
In: Itthipuripat, S., Ascoli, G.A., Li, A., Pat, N., Kuai, H
Ayon, S.S., Hossain, M.E., Miah, M.S.U., Rahman, M.M., Mahmud, M.: Advancing mental health problems with machine learning and genetic algorithms for anxiety classification in bangladeshi university students. In: Itthipuripat, S., Ascoli, G.A., Li, A., Pat, N., Kuai, H. (eds.) Brain Informatics. pp. 338–350. Springer Nature Singapore, Singapore (2025) Titl...
work page 2025
-
[3]
Baid, U., et al.: The rsna-asnr-miccai brats 2021 benchmark on brain tumor seg- mentation and radiogenomic classification. arXiv:2107.02314 (2021)
arXiv 2021
-
[4]
Nature Scientific Data4, 170117 (2017)
Bakas, S., Akbari, H., Sotiras, A., Bilello, M., Rozycki, M., Kirby, J., et al.: Ad- vancing the cancer genome atlas glioma mri collections with expert segmentation labels and radiomic features. Nature Scientific Data4, 170117 (2017)
work page 2017
-
[5]
Frontiers in Neuroinformatics14(2020)
Castellazzi, G., Cuzzoni, M.G., Cotta Ramusino, M., Martinelli, D., Denaro, F., Ricciardi, A., Vitali, P., Anzalone, N., Bernini, S., Palesi, F., Sinforiani, E., Costa, A., Micieli, G., D’Angelo, E., Magenes, G., Gandini Wheeler-Kingshott, C.A.M.: A machine learning approach for the differential diagnosis of alzheimer and vascular dementia fed by mri sele...
work page 2020
-
[6]
In: 2009 IEEE Conference on Computer Vision and Pattern Recognition
Deng, J., Dong, W., Socher, R., Li, L.J., Li, K., Fei-Fei, L.: Imagenet: A large-scale hierarchical image database. In: 2009 IEEE Conference on Computer Vision and Pattern Recognition. pp. 248–255 (2009)
2009
-
[7]
Computers, Materials and Continua70(3), 5005–5019 (2022)
Ghazal, T., Abbas, S., Munir, S., Khan, M., Ahmad, M., Issa, G., Zahra, S., Khan, M., Hasan, M.: Alzheimer disease detection empowered with transfer learning. Computers, Materials and Continua70(3), 5005–5019 (2022)
work page 2022
-
[8]
Ghnemat, R., Khalil, A., Abu Al-Haija, Q.: Ischemic stroke lesion segmentation using mutation model and generative adversarial network. Electronics12(3) (2023)
work page 2023
Show all 27 references
-
[9]
Neuro-Oncology Advances6(1), vdae118 (2024)
Greutter, L., Miller-Michlits, Y., Klotz, S., Reimann, R., Nenning, K.H., Platzek, S., Krause, E., Kiesel, B., Widhalm, G., Langs, G., Baumann, B., Woehrer, A.: Fre- quent alzheimer’s disease neuropathological change in patients with glioblastoma. Neuro-Oncology Advances6(1), ...
2024
-
[10]
Huang, G., Liu, Z., Van Der Maaten, L., Weinberger, K.Q.: Densely connected convolutionalnetworks.In:2017IEEEConferenceonComputerVisionandPattern Recognition (CVPR). pp. 2261–2269 (2017)
2017
-
[11]
Science Advances6(eaba3884) (2020)
Huang, J., et al.: Altered d-glucose in brain parenchyma and cerebrospinal fluid of early alzheimer’s disease detected by dynamic glucose-enhanced mri. Science Advances6(eaba3884) (2020)
2020
-
[12]
Dialogues in Clinical Neuroscience 15(4), 445–454 (2013)
Jahn, H.: Memory loss in alzheimer’s disease. Dialogues in Clinical Neuroscience 15(4), 445–454 (2013)
2013
-
[13]
ArXiv (2014)
Kingma, D.P., Ba, J.: Adam: A method for stochastic optimization. ArXiv (2014)
2014
-
[14]
arXiv preprint arXiv:2009.01592 (2020)
Lerousseau, M., Deutsh, E., Paragios, N.: Multimodal brain tumor classification. arXiv preprint arXiv:2009.01592 (2020)
2020 arXiv
-
[15]
ArXiv (2013)
Lin, M., Chen, Q., Yan, S.: Network in network. ArXiv (2013)
2013
-
[16]
IEEE Transactions on Medical Imaging34(10), 1993–2024 (2015)
Menze, B.H., Jakab, A., Bauer, S., Kalpathy-Cramer, J., Farahani, K., Kirby, J., et al.: The multimodal brain tumor image segmentation benchmark (brats). IEEE Transactions on Medical Imaging34(10), 1993–2024 (2015)
2015
-
[17]
In: 2018 International Conference on Smart Systems and Inventive Technology (ICSSIT)
Narayana, T.L., Reddy, T.S.: An efficient optimization technique to detect brain tumor from mri images. In: 2018 International Conference on Smart Systems and Inventive Technology (ICSSIT). pp. 168–171 (2018)
2018
-
[18]
Journal of Automation, Mobile Robotics and Intelligent Systems14(1) (2020)
Poma, Y., Melin, P., González, C.I., Martínez, G.E.: Optimization of convolu- tional neural networks using the fuzzy gravitational search algorithm. Journal of Automation, Mobile Robotics and Intelligent Systems14(1) (2020)
2020
-
[19]
In: 2022 4th International Conference on Circuits, Control, Communica- tion and Computing (I4C)
Raghuram, S., Bharadwaj, A.S., K, D.S., Khadabadi, M.S., Jayaprakash, A.: Dig- ital implementation of the softmax activation function and the inverse softmax function. In: 2022 4th International Conference on Circuits, Control, Communica- tion and Computing (I4C). pp. 64–67 (2022)
2022
-
[20]
In: 2022 IEEE International Conference on Computer Vision and Pattern Recognition (CVPR)
Rammurthy, D., Mahesh, P.: Whho-based deepcnn for brain tumor detection us- ing mri images. In: 2022 IEEE International Conference on Computer Vision and Pattern Recognition (CVPR). pp. 3259–3272 (2022) 14 S. N. Eity et al
2022
-
[21]
In: 2017 IEEE International Conference on Computer Vision (ICCV)
Selvaraju, R.R., Cogswell, M., Das, A., Vedantam, R., Parikh, D., Batra, D.: Grad- cam: Visual explanations from deep networks via gradient-based localization. In: 2017 IEEE International Conference on Computer Vision (ICCV). pp. 618–626 (2017)
2017
-
[22]
Measurement: Sensors24, 100506 (2022)
Sharma, S., Guleria, K., Tiwari, S., Kumar, S.: A deep learning based convolutional neural network model with vgg16 feature extractor for the detection of alzheimer disease using mri scans. Measurement: Sensors24, 100506 (2022)
2022
-
[23]
In: Proceedings of the International Conference on Learning Representations (ICLR)
Simonyan, K., Zisserman, A.: Very deep convolutional networks for large-scale image recognition. In: Proceedings of the International Conference on Learning Representations (ICLR). San Diego, USA (2015)
2015
-
[24]
World Health Organization: Over 1 in 3 people affected by neurological conditions: The leading cause of illness and disability worldwide (2024)
2024
-
[25]
In: 2019 5th International Conference on Engineering, Applied Sci- ences and Technology (ICEAST)
Zaw, H.T., Maneerat, N., Win, K.Y.: Brain tumor detection based on naïve bayes classification. In: 2019 5th International Conference on Engineering, Applied Sci- ences and Technology (ICEAST). pp. 1–4 (2019)
2019
-
[26]
ArXiv (2018)
Zhang, Z., Sabuncu, M.R.: Generalized cross entropy loss for training deep neural networks with noisy labels. ArXiv (2018)
2018
-
[27]
Zhuo, Y., Ge, Z.: Ig2: Integrated gradient on iterative gradient path for feature at- tribution.IEEETransactionsonPatternAnalysisandMachineIntelligence46(11), 7173–7190 (2024)
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.