Enhancing 3D MRI-Based Necrotic Core Segmentation in Glioblastoma Using Activation Functions in Deep Learning
Abstract
1. Introduction
- A controlled and reproducible evaluation of twelve different activation functions in a residual 3D U-Net architecture.
- A thorough evaluation using overlap and boundary measures, including the Dice Score, IoU, sensitivity, Specificity, and Hausdorff Distance (HD95).
- Quantitative evidence, validated across three random seeds, that the effect of the activation function is region-specific and concentrated in the necrotic core, where smooth or adaptive functions (Swish and PReLU) yield a small but consistent and more stable improvement over ReLU; differences in the enhancing tumour, tumour core and whole tumour—and the apparent single-run underperformance of PReLU—did not generalise across seeds, underscoring the importance of multi-seed evaluation for activation-function comparisons.
- Unlike processing slices individually, the 3D U-Net architecture uses three-dimensional convolution to extract features from the entire volume, leveraging the full spatial context of the input data. Because the 3D U-Net directly extracts hierarchical features from volumetric data, it is found to be more robust and efficient than the 2D U-Net architecture. This approach improves the model’s overall performance significantly [34,35,36].
2. Literature Review
| Author and Date | Method Used | Contribution | Limitation |
|---|---|---|---|
| Menze et al. (2015) [20] | Launched the BraTS (Multimodal Brain Tumour Image Segmentation) benchmark | Established the foundational BraTS multi-contrast dataset, evaluation platform, and demonstrated the superiority of algorithm fusion. | High tumour variability and reliance on single annotations complicated ranking and masked long-term reliability issues. |
| Kamnitsas et al. (2016) [42] | 3D Convolutional Neural Network (CNN) | Presented DeepMedic, a volumetric 3D CNN with residual connections, with enhanced performance using data augmentation. | Performance decreases with mismatch of data in training and testing. Accuracy is poor for the fine tumour structures of necrosis and non-enhancing portions. |
| Kamnitsas et al. (2018) [44] | An ensemble framework combining multiple deep learning architectures (EMMA), including DeepMedic, FCN, and U-Net. | Proposed EMMA, an ensemble of various architectures (DeepMedic, FCN, U-Net), to improve robustness by minimising the individual models’ bias. | Being complex, it imposed heavy computational costs, making it impractical for real-time processing in a clinical setting, without dealing with the issue of interpretability of models. |
| Myronenko. (2018) [45] | Encoder–decoder network architectures enhanced through autoencoder-based regularisation. | Proposed an encoder–decoder network with a Variational Autoencoder (VAE) regularisation term to address overfitting issues. | Dependent on high-quality annotated data and having a high computational cost, real-world application was limited by the ability to address severe tumour/artefact variability. |
| Jiang et al. (2020) [46] | Segmentation Enhancement Using a Cascaded U-Net Architecture | Proposed a novel Two-Stage Cascaded U-Net that refines coarse initial predictions into fine details, establishing SOTA robustness on BraTS 2019. | Dependence on BraTS 2019 data reduced universality, while the complex structure of the cascaded network raised a risk of overfitting. |
| Isensee et al. (2020) [47] | nnU-Net architecture enhanced through the use of batch normalisation. | Proposed self-configuring nnU-Net framework with batch normalisation in place of instance normalisation, achieving SOTA results by adapting it for BraTS 2020. | There was limited experimental verification and fixation on certain metrics (Dice/HD95), making it difficult to generalise or understand the relevance of experiments. |
| Luu and Park (2021) [48] | Enhanced nnU-Net with Group Normalisation | Improved nnU-Net with doubled filter sizes, group normalisation (instead of BatchNorm), and Axial Attention in the decoder achieved SOTA results on BraTS 2021. | Dependence on high-quality MR images is significant, with segmentation error quickly deteriorating with image artefacts or lack of data integrity. |
| Zeineldin et al. (2022) [49] | An ensemble-based methodology that combines several architectures, namely DeepSeg, nnU-Net, and DeepSCAN. | Created an ensemble of multiple frameworks (DeepSeg, nnU-Net, DeepSCAN) that scored the first position with outstanding DSC/HD95, indicating excellent generality for glioma in adults. | The model’s robustness was observed to be less in capturing the complexities unique to paediatric brain tumours with considerable variability. |
| Ferreira et al. (2024) [50] | GAN-based data augmentation and combining models like nnU-Net and Swin UNETR. | Integrated GAN-based synthetic data augmentation with an ensemble of sophisticated models (nnU-Net, Swin UNETR) for enhanced segmentation performance. | The computational complexity with a persistent need for initial annotation of high-quality data inhibits real-time translation for clinical applications. |
2.1. Volumetric and Architectural Foundation (2014–2017)
2.2. Generalisation and Automation (2018–2021)
2.3. Addressing Complexity and Data Scarcity (2022–2023)
- Sub-region Accuracy Disparity: While models typically achieve high overall whole-tumour (WT) Dice scores (0.85+), performance degrades significantly in the two smaller and more clinically significant sub-regions—the ET and TC. This challenge is mostly due to extreme class imbalance, as the relatively small target regions are hard to segment correctly.
- Limited Architectural Flexibility: Traditional U-Net architectures with fixed, non- adaptive components often lack generalisation across the highly heterogeneous, multi-institutional BraTS datasets.
- Inherent Limitations of ReLU: The standard ReLU activation function is widely used in existing models due to its computational simplicity. However, the standard ReLU suffers from the “dying ReLU” problem, where neurons with negative inputs stop updating because the gradient is zero. In the context of MRI data, this hard thresholding irreversibly erases subtle structural variations within hypointense tumour regions.
3. Methodology
3.1. BraTS Datasets
3.1.1. Volumetric Data Structure and Anatomical Planes
3.1.2. Relevance of Slices and Expert Segmentation
- Tumour Localisation: The location of the tumour within the brain volume.
- Structural Metrics: The size of the tumour, shape of the tumour, etc.
- Heterogeneity and Composition: The various structures within the tumour, which include the tumour mass, the necrotic centre, the enhancing tumour, and the existence of oedema.
- Tissue Involvement: The association between the tumour and the brain tissue.
- Multimodal Correlation: The overall understanding of the tumour, which is critical for the differentiation of the tumour.
3.1.3. Preprocessing and Class Handling
3.1.4. 2D Pixels vs. 3D Voxels in Medical Imaging
3.1.5. Rescaling and Normalisation
3.1.6. Region of Interest (ROI) and Ground-Truth Encoding
3.1.7. Dataset Curation and Split
3.1.8. Creating a Custom PyTorch DataLoader
3.2. Building a 3D U-Net Model
Architecture Specification
3.3. Activation Functions
3.3.1. Evaluation of Activation Function Strategy
3.3.2. The Critical Role of Activation Functions
- Inhibits Neuron Death: Setting the gradient for negative inputs to a non-zero, learnable value addresses the “dying ReLU” issue and ensures the network’s capacity to learn remains intact.
- Increases Model Expressiveness: The learnable parameter enables the model to adapt to more complex data distributions, which is crucial for capturing subtle boundaries and the internal heterogeneity of brain tumour sub-regions.
3.4. Experimental Setup and Training Details
3.4.1. Data Partitioning and Augmentation
3.4.2. Hyperparameters and Optimisation
3.4.3. Hardware, Mixed Precision, and Reproducibility
3.5. Training Process
Statistical Reliability of the Results
4. Results
4.1. Segmentation Accuracy: Dice Similarity and Hausdorff Distance
4.2. Qualitative Analysis of Segmentation Boundaries
4.3. Sensitivity and Precision Analysis: The “Aggression” Trade-Off
4.4. Statistical Stability and Outlier Analysis
4.5. Computational Efficiency and Resource Utilisation
5. Discussion
5.1. The Precision–Sensitivity Trade-Off: Scalpel vs. Blunt Instrument
5.2. Necrotic-Core Trade-Offs and Learnable Activations
5.3. Computational Cost and Efficiency Analysis
5.4. Computational Efficiency on Common Hardware
5.5. Performance Context and Architectural Benchmarking
5.6. Reliability of the Key Findings: Multi-Seed and Cross-Validation
5.7. Mechanistic Analysis of Gradient Flow in Hypointense Regions
5.8. Limitations
6. Conclusions
6.1. Swish Is a Stable, Low-Cost Choice for Necrotic-Core Segmentation
6.2. Single-Seed Differences Must Be Interpreted with Care
6.3. Efficiency Remains a Critical Consideration
7. Future Work
Supplementary Materials
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Acknowledgments
Conflicts of Interest
Abbreviations
| AMP | Automatic Mixed Precision |
| BraTS | Brain Tumour Segmentation |
| CBICA | Centre for Biomedical Image Computing and Analytics |
| CNN | Convolutional Neural Network |
| DL | Deep Learning |
| DSC | Dice Similarity Coefficient |
| ED | Oedema |
| ET | Enhancing Tumour |
| FLAIR | Fluid-Attenuated Inversion Recovery |
| FLOPs | Floating Point Operations |
| GPU | Graphics Processing Unit |
| MICCAI | Medical Image Computing and Computer Assisted Intervention |
| ML | Machine Learning |
| MRI | Magnetic Resonance Imaging |
| NCR | Necrotic Core |
| PPV | Positive Predictive Value (Precision) |
| ReLU | Rectified Linear Unit |
| ROI | Region of Interest |
| SOTA | State-of-the-Art |
| T1ce | T1-weighted contrast-enhanced |
| TTA | Test-Time Augmentation |
| VAE | Variational Autoencoder |
| VRAM | Video Random Access Memory |
| WHO | World Health Organisation |
| WT | Whole Tumour |
References
- American Cancer Society. Types of Brain Tumors and Spinal Cord Tumors in Adults. Available online: https://www.cancer.org/cancer/types/brain-spinal-cord-tumors-adults/about/types-of-brain-tumors.html (accessed on 17 August 2025).
- Hanif, F.; Muzaffar, K.; Perveen, K.; Malhi, S.M.; Simjee, S.U. Glioblastoma Multiforme: A Review of its Epidemiology and Pathogenesis through Clinical Presentation and Treatment. Asian Pac. J. Cancer Prev. 2017, 18, 3. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Louis, D.N.; Perry, A.; Wesseling, P.; Brat, D.J.; Cree, I.A.; Figarella-Branger, D.; Hawkins, C.; Ng, H.K.; Pfister, S.M.; Reifenberger, G.; et al. The 2021 WHO classification of tumors of the central nervous system: A summary. Neuro Oncol. 2021, 23, 1231–1251. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Glioblastoma|Treatment and Prognosis|Brain Tumour Research. Available online: https://braintumourresearch.org/pages/types-of-brain-tumours-glioblastoma?srsltid=AfmBOoqBc2DtXCpMfVxzW5UicUeL4uTbt8TcvKC94iJr-sYXktHE8fcG (accessed on 2 March 2026).
- Sabeghi, P.; Zarand, P.; Zargham, S.; Golestany, B.; Shariat, A.; Chang, M.; Yang, E.; Rajagopalan, P.; Phung, D.C.; Gholamrezanezhad, A. Advances in Neuro-Oncological Imaging: An Update on Diagnostic Approach to Brain Tumors. Cancers 2024, 16, 576. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Bakas, S.; Zeng, K.; Sotiras, A.; Rathore, S.; Akbari, H.; Gaonkar, B.; Rozycki, M.; Pati, S.; Davatzikos, C. GLISTRboost: Combining multimodal MRI segmentation, registration, and biophysical tumor growth modeling with gradient boosting machines for glioma segmentation. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2016; Volume 9556, pp. 144–155. [Google Scholar]
- Saleh, M.M.; Salih, M.E.; Ahmed, M.A.A.; Hussein, A.M. From Traditional Methods to 3D U-Net: A Comprehensive Review of Brain Tumour Segmentation Techniques. J. Biomed. Sci. Eng. 2025, 18, 1–32. [Google Scholar] [CrossRef]
- Khilkhal, R.; Ismael, M. Brain Tumor Segmentation Utilizing Thresholding and K-Means Clustering. In Proceedings of the Al-Muthanna 2nd International Conference on Engineering Science and Technology (MICEST 2022); IEEE: New York, NY, USA, 2022; pp. 43–48. [Google Scholar]
- Hasan, S.M.K.; Ahmad, M. Two-step verification of brain tumor segmentation using watershed-matching algorithm. Brain Inform. 2018, 5, 8. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Verma, O.P.; Hanmandlu, M.; Susan, S.; Kulkarni, M.; Jain, P.K. A simple single seeded region growing algorithm for color image segmentation using adaptive thresholding. In Proceedings of the 2011 International Conference on Communication Systems and Network Technologies (CSNT 2011); IEEE: New York, NY, USA, 2011; pp. 500–503. [Google Scholar]
- Aslam, A.; Khan, E.; Beg, M.M.S. Improved Edge Detection Algorithm for Brain Tumor Segmentation. Procedia Comput. Sci. 2015, 58, 430–437. [Google Scholar] [CrossRef] [Scilit]
- Abdel-Maksoud, E.; Elmogy, M.; Al-Awadi, R. Brain tumor segmentation based on a hybrid clustering technique. Egypt. Inform. J. 2015, 16, 71–81. [Google Scholar] [CrossRef] [Scilit]
- Krizhevsky, A.; Sutskever, I.; Hinton, G.E. ImageNet Classification with Deep Convolutional Neural Networks. Adv. Neural Inf. Process. Syst. 2012, 60, 84–90. [Google Scholar] [CrossRef] [Scilit]
- Simonyan, K. Very deep convolutional networks for large-scale image recognition. arXiv 2014, arXiv:1409.1556. [Google Scholar]
- Szegedy, C.; Liu, W.; Jia, Y.; Sermanet, P.; Reed, S.; Anguelov, D.; Erhan, D.; Vanhoucke, V.; Rabinovich, A. Going deeper with convolutions. In Proceedings of the 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: New York, NY, USA, 2015; pp. 1–9. [Google Scholar]
- Chollet, F. Xception: Deep learning with depthwise separable convolutions. In Proceedings of the 30th IEEE Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: New York, NY, USA, 2017; pp. 1800–1807. [Google Scholar]
- Ronneberger, O.; Fischer, P.; Brox, T. U-Net: Convolutional Networks for Biomedical Image Segmentation. arXiv 2015, arXiv:1505.04597. [Google Scholar]
- He, K.; Zhang, X.; Ren, S.; Sun, J. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: New York, NY, USA, 2016; pp. 770–778. [Google Scholar]
- Huang, G.; Liu, Z.; Van Der Maaten, L.; Weinberger, K.Q. Densely connected convolutional networks. In Proceedings of the 30th IEEE Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: New York, NY, USA, 2017; pp. 2261–2269. [Google Scholar]
- Menze, B.H.; Jakab, A.; Bauer, S.; Kalpathy-Cramer, J.; Farahani, K.; Kirby, J.; Burren, Y.; Porz, N.; Slotboom, J.; Wiest, R.; et al. The Multimodal Brain Tumor Image Segmentation Benchmark (BRATS). IEEE Trans. Med. Imaging 2015, 34, 1993–2024. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Kermanidis, K.L.; Maragoudakis, M.; Krichen, M. Convolutional Neural Networks: A Survey. Computers 2023, 12, 151. [Google Scholar] [CrossRef] [Scilit]
- Ramachandran, P.; Zoph, B.; Le, Q.V. Searching for activation functions. arXiv 2017, arXiv:1710.05941. [Google Scholar]
- Agarap, A.F. Deep Learning using Rectified Linear Units (ReLU). arXiv 2018, arXiv:1803.08375. [Google Scholar]
- Xu, J.; Li, Z.; Du, B.; Zhang, M.; Liu, J. Reluplex made more practical: Leaky ReLU. In Proceedings of the IEEE Symposium on Computers and Communications (ISCC); IEEE: New York, NY, USA, 2020. [Google Scholar]
- He, K.; Zhang, X.; Ren, S.; Sun, J. Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification. Biochem. Biophys. Res. Commun. 2018, 498, 254–261. [Google Scholar]
- Basirat, M.; Roth, P.M. The quest for the golden activation function. arXiv 2018, arXiv:1808.00783. [Google Scholar]
- Clevert, D.A.; Unterthiner, T.; Hochreiter, S. Fast and Accurate Deep Network Learning by Exponential Linear Units (ELUs). In Proceedings of the 4th International Conference on Learning Representations (ICLR 2016), San Juan, Puerto Rico, 2–4 May 2015. [Google Scholar]
- Hendrycks, D.; Gimpel, K. Gaussian Error Linear Units (GELUs). arXiv 2016, arXiv:1606.08415. [Google Scholar]
- Misra, D. Mish: A Self Regularized Non-Monotonic Activation Function. Available online: https://github.com/digantamisra98/Mish (accessed on 18 July 2025).
- Liu, X.; Di, X. TanhExp: A Smooth Activation Function with High Convergence Speed for Lightweight Neural Networks. IET Comput. Vis. 2020, 15, 136–150. [Google Scholar]
- Zhu, H.; Zeng, H.; Liu, J.; Zhang, X. Logish: A new nonlinear nonmonotonic activation function for convolutional neural network. Neurocomputing 2021, 458, 490–499. [Google Scholar] [CrossRef] [Scilit]
- Wang, X.; Ren, H.; Wang, A. Smish: A Novel Activation Function for Deep Learning Methods. Electronics 2022, 11, 540. [Google Scholar] [CrossRef] [Scilit]
- Dubey, S.R.; Singh, S.K.; Chaudhuri, B.B. Activation functions in deep learning: A comprehensive survey and benchmark. Neurocomputing 2022, 503, 92–108. [Google Scholar] [CrossRef] [Scilit]
- Tran, M.; Vo-Ho, V.K.; Le, N.T.H. 3DConvCaps: 3DUnet with Convolutional Capsule Encoder for Medical Image Segmentation. In Proceedings of the International Conference on Pattern Recognition (ICPR); IEEE: New York, NY, USA, 2022; pp. 4392–4398. [Google Scholar]
- Zhang, Y.; Liao, Q.; Ding, L.; Zhang, J. Bridging 2D and 3D segmentation networks for computation-efficient volumetric medical image segmentation: An empirical study of 2.5D solutions. Comput. Med. Imaging Graph. 2022, 99, 102088. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Yu, Q.; Xia, Y.; Xie, L.; Fishman, E.K.; Yuille, A.L. Thickened 2D Networks for Efficient 3D Medical Image Segmentation. arXiv 2019, arXiv:1904.01150. [Google Scholar]
- Fernando, K.R.M.; Tsokos, C.P. Deep and statistical learning in biomedical imaging: State of the art in 3D MRI brain tumor segmentation. Inf. Fusion 2023, 92, 450–465. [Google Scholar] [CrossRef] [Scilit]
- Ullah, F.; Ansari, S.U.; Hanif, M.; Ayari, M.A.; Chowdhury, M.E.H.; Khandakar, A.A.; Khan, M.S. Brain MR Image Enhancement for Tumor Segmentation Using 3D U-Net. Sensors 2021, 21, 7528. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Feng, X.; Tustison, N.J.; Patel, S.H.; Meyer, C.H. Brain Tumor Segmentation Using an Ensemble of 3D U-Nets and Overall Survival Prediction Using Radiomic Features. Front. Comput. Neurosci. 2020, 14, 25. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Ballestar, L.M.; Vilaplana, V. MRI brain tumor segmentation and uncertainty estimation using 3D-UNet architectures. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2020; Volume 12658, pp. 376–390. [Google Scholar]
- Wang, F.; Jiang, R.; Zheng, L.; Meng, C.; Biswal, B. 3D U-Net Based Brain Tumor Segmentation and Survival Days Prediction. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2020; Volume 11992, pp. 131–141. [Google Scholar]
- Kamnitsas, K.; Ferrante, E.; Parisot, S.; Ledig, C.; Nori, A.V.; Criminisi, A.; Rueckert, D.; Glocker, B. DeepMedic for brain tumor segmentation. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2016; Volume 10154, pp. 138–149. [Google Scholar]
- Salih, M.M.; Salih, M.E.; Ahmed, M.A.A. Enhancement of U-Net Performance in MRI Brain Tumour Segmentation Using HardELiSH Activation Function. In Proceedings of the 2019 International Conference on Computer, Control, Electrical, and Electronics Engineering (ICCCEEE), Khartoum, Sudan, 21–23 September 2019; pp. 1–5. [Google Scholar] [CrossRef] [Scilit]
- Kamnitsas, K.; Bai, W.; Ferrante, E.; McDonagh, S.; Sinclair, M.; Pawlowski, N.; Rajchl, M.; Lee, M.; Kainz, B.; Rueckert, D.; et al. Ensembles of multiple models and architectures for robust brain tumour segmentation. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Springer: Cham, Switzerland, 2018; pp. 450–462. [Google Scholar]
- Myronenko, A. 3D MRI brain tumor segmentation using autoencoder regularization. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2018; Volume 11384, pp. 311–320. [Google Scholar]
- Jiang, Z.; Ding, C.; Liu, M.; Tao, D. Two-Stage Cascaded U-Net: 1st Place Solution to BraTS Challenge 2019 Segmentation Task. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2020; Volume 11992, pp. 231–241. [Google Scholar]
- Isensee, F.; Jäger, P.F.; Full, P.M.; Vollmuth, P.; Maier-Hein, K.H. nnU-Net for Brain Tumor Segmentation. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2020; Volume 12659, pp. 118–132. [Google Scholar]
- Luu, H.M.; Park, S.H. Extending nn-UNet for brain tumor segmentation. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2021; Volume 12963, pp. 173–186. [Google Scholar]
- Zeineldin, R.A.; Karar, M.E.; Burgert, O.; Mathis-Ullrich, F. Multimodal CNN Networks for Brain Tumor Segmentation in MRI: A BraTS 2022 Challenge Solution. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2022; Volume 13769, pp. 127–137. [Google Scholar]
- Ferreira, A.; Solak, N.; Li, J.; Dammann, P.; Kleesiek, J.; Alves, V.; Egger, J. How we won BraTS 2023 Adult Glioma challenge? Just faking it! Enhanced Synthetic Data Augmentation and Model Ensemble for brain tumour segmentation. arXiv 2024, arXiv:2402.17317. [Google Scholar]
- Hatamizadeh, A.; Nath, V.; Tang, Y.; Yang, D.; Roth, H.R.; Xu, D. Swin UNETR: Swin Transformers for Semantic Segmentation of Brain Tumors in MRI Images. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries (BrainLes 2021); Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2022; Volume 12962, pp. 272–284. [Google Scholar] [CrossRef] [Scilit]
- Wang, W.; Chen, C.; Ding, M.; Yu, H.; Zha, S.; Li, J. TransBTS: Multimodal Brain Tumor Segmentation Using Transformer. In Medical Image Computing and Computer Assisted Intervention—MICCAI 2021; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2021; Volume 12901, pp. 109–119. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Hatamizadeh, A.; Tang, Y.; Nath, V.; Yang, D.; Myronenko, A.; Landman, B.; Roth, H.R.; Xu, D. UNETR: Transformers for 3D Medical Image Segmentation. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV), Waikoloa, HI, USA, 3–8 January 2022; pp. 1748–1758. [Google Scholar]
- Saleh, M.M.; Biswal, B.B. From U-Net to Swin-Unet Transformers: The Next-Generation Advances in Brain Tumor Segmentation with Deep Learning. J. Biomed. Sci. Eng. 2025, 18, 328–350. [Google Scholar] [CrossRef]
- Thada, V.; Jaglan, V. Comparison of jaccard, dice, cosine similarity coefficient to find best fitness value for web retrieved documents using genetic algorithm. Int. J. Innov. Eng. Technol. 2013, 2, 202–205. [Google Scholar]
- Taha, A.A.; Hanbury, A. Metrics for evaluating 3D medical image segmentation: Analysis, selection, and tool. BMC Med. Imaging 2015, 15, 29. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Aydin, O.U.; Taha, A.A.; Hilbert, A.; Khalil, A.A.; Galinovic, I.; Fiebach, J.B.; Frey, D.; Madai, V.I. On the usage of average Hausdorff distance for segmentation performance assessment: Hidden error when used for ranking. Eur. Radiol. Exp. 2021, 5, 4. [Google Scholar] [CrossRef] [Scilit] [PubMed]
- Ghaffari, M.; Sowmya, A.; Oliver, R. Automated Brain Tumour Segmentation Using Cascaded 3D Densely-Connected U-Net. In Brainlesion: Glioma, Multiple Sclerosis, Stroke and Traumatic Brain Injuries; Lecture Notes in Computer Science; Springer International Publishing: Cham, Switzerland, 2021; Volume 12658, pp. 481–491. [Google Scholar]
- Rezatofighi, H.; Tsoi, N.; Gwak, J.; Sadeghian, A.; Reid, I.; Savarese, S. Generalized Intersection over Union: A Metric and a Loss for Bounding Box Regression. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 15–20 June 2019; pp. 658–666. [Google Scholar]
- Oktay, O.; Schlemper, J.; Le Folgoc, L.; Lee, M.; Heinrich, M.; Misawa, K.; Mori, K.; McDonagh, S.; Hammerla, N.Y.; Kainz, B.; et al. Attention U-Net: Learning Where to Look for the Pancreas. arXiv 2018, arXiv:1804.03999. [Google Scholar]













| Block Level | Operation/Layer Type | Input Channels | Output Channels | Kernel Size | Stride | Activation |
|---|---|---|---|---|---|---|
| Input | 3D MRI Modalities (T1, T1ce, T2, FLAIR) | 4 | 4 | - | - | - |
| Encoder 1 | Residual Block (Conv BN Act) 2 | 4 | 32 | 1 | Variable | |
| Max Pooling 3D | 32 | 32 | 2 | - | ||
| Encoder 2 | Residual Block (Conv BN Act) 2 | 32 | 64 | 1 | Variable | |
| Max Pooling 3D | 64 | 64 | 2 | - | ||
| Encoder 3 | Residual Block (Conv BN Act) 2 | 64 | 128 | 1 | Variable | |
| Max Pooling 3D | 128 | 128 | 2 | - | ||
| Encoder 4 | Residual Block (Conv BN Act) 2 | 128 | 256 | 1 | Variable | |
| Max Pooling 3D | 256 | 256 | 2 | - | ||
| Bottleneck | Residual Block (Conv BN Act) 2 | 256 | 512 | 1 | Variable | |
| Decoder 4 | Transposed Conv 3D (Upsample) | 512 | 256 | 2 | - | |
| Concatenation with Encoder 4 | 512 | 512 | - | - | - | |
| Residual Block (Conv BN Act) 2 | 512 | 256 | 1 | Variable | ||
| Decoder 3 | Transposed Conv 3D (Upsample) | 256 | 128 | 2 | - | |
| Concatenation with Encoder 3 | 256 | 256 | - | - | - | |
| Residual Block (Conv BN Act) 2 | 256 | 128 | 1 | Variable | ||
| Decoder 2 | Transposed Conv 3D (Upsample) | 128 | 64 | 2 | - | |
| Concatenation with Encoder 2 | 128 | 128 | - | - | - | |
| Residual Block (Conv BN Act) 2 | 128 | 64 | 1 | Variable | ||
| Decoder 1 | Transposed Conv 3D (Upsample) | 64 | 32 | 2 | - | |
| Concatenation with Encoder 1 | 64 | 64 | - | - | - | |
| Residual Block (Conv BN Act) 2 | 64 | 32 | 1 | Variable | ||
| Output | Convolution 3D (Logits) | 32 | 4 | 1 | Linear |
| Activation Function | Mathematical Formula | Characteristics |
|---|---|---|
| ReLU [23] | where is the input of the neuron | Computational efficiency; induces sparsity; prone to “dying ReLU” problem. |
| Leaky ReLU [24] | where | Addresses the dying ReLU problem by permitting a small, non-zero gradient for negative input values. |
| PReLU [25] | Similar to Leaky ReLU, but α is a learnable parameter during training. | |
| ELU [27] | Smoother than ReLU; pushes mean activations closer to zero; robust to noise. | |
| GELU [28] | Probabilistic; weights inputs by their percentile; smoother curvature than ReLU. | |
| Swish [22] | Non-monotonic; smooth; self-gated; often outperforms ReLU in deep networks. | |
| Mish [29] | Self-regularised; non-monotonic; smooth; preserves small negative information. | |
| EliSH [26] | Combines the benefits of ELU and Swish; handles negative values smoothly. | |
| HardEliSH [26] | A computationally faster, piecewise-linear approximation of ELiSH. | |
| TanhExp [30] | Exhibits characteristics of hyperbolic tangent and exponential functions. It helps in improving gradient flow by avoiding issues of vanishing gradients in deep nets. | |
| Logish [31] | Has a smooth sigmoid-like curve, which produces output in a given range, thus increasing the non-linearity of the model. It improves the gradient flow by preventing the output from saturating to extremes. | |
| Smish [32] | Has a smooth, non-linear form, which incorporates the properties of both the Swish and sigmoid functions, providing unbounded positive output. |
| Metrics | Mathematical Formula | Characteristics |
|---|---|---|
| Accuracy | Overall pixel-wise correctness; can be misleading with class imbalance. | |
| Precision | Reliability of positive predictions; crucial when false positives are costly. | |
| Recall (Sensitivity) | Ability to detect all positive cases; crucial when false negatives are costly. | |
| Dice Similarity Coefficient (F1-Score) | Robust overlap measure balancing precision/recall; widely used for imbalanced segmentation. | |
| Specificity | Correct identification of negative cases; important for confidently ruling out disease. | |
| Jaccard Index | Intersection over Union; robust measure of overall segmentation overlap and localisation. | |
| Hausdorff Distance | Maximum boundary discrepancy; critical for assessing precise edge delineation. | |
| Mean IoU | Average segmentation quality across all classes; balances class performance. |
| Activation | ET | TC | WT | NCR | ED |
|---|---|---|---|---|---|
| Logish | 0.805 ± 0.089 [0.783, 0.824] | 0.866 ± 0.110 [0.839, 0.889] | 0.877 ± 0.091 * [0.854, 0.896] | 0.670 ± 0.236 ** [0.613, 0.721] | 0.791 ± 0.131 * [0.760, 0.819] |
| Smish | 0.801 ± 0.101 [0.777, 0.823] | 0.860 ± 0.118 [0.832, 0.886] | 0.871 ± 0.102 [0.846, 0.892] | 0.661 ± 0.237 [0.606, 0.713] | 0.785 ± 0.139 [0.751, 0.816] |
| TanhExp | 0.811 ± 0.077 * [0.794, 0.828] | 0.864 ± 0.118 [0.836, 0.888] | 0.879 ± 0.084 ** [0.859, 0.897] | 0.665 ± 0.244 * [0.607, 0.717] | 0.791 ± 0.127 ** [0.761, 0.819] |
| ReLU | 0.805 ± 0.083 [0.786, 0.824] | 0.871 ± 0.097 [0.849, 0.891] | 0.871 ± 0.090 [0.850, 0.891] | 0.663 ± 0.230 [0.609, 0.714] | 0.782 ± 0.137 [0.749, 0.812] |
| Leaky ReLU | 0.809 ± 0.085 [0.789, 0.827] | 0.866 ± 0.104 [0.840, 0.888] | 0.877 ± 0.084 ** [0.858, 0.896] | 0.659 ± 0.255 [0.600, 0.716] | 0.790 ± 0.134 ** [0.759, 0.819] |
| PReLU | 0.794 ± 0.116 [0.766, 0.818] | 0.846 ± 0.145 ** [0.811, 0.877] | 0.866 ± 0.110 [0.837, 0.888] | 0.664 ± 0.248 * [0.606, 0.719] | 0.775 ± 0.149 [0.740, 0.807] |
| ELU | 0.808 ± 0.087 * [0.787, 0.828] | 0.867 ± 0.109 [0.841, 0.891] | 0.874 ± 0.093 [0.851, 0.893] | 0.671 ± 0.237 ** [0.615, 0.724] | 0.786 ± 0.132 [0.754, 0.815] |
| GELU | 0.797 ± 0.096 [0.773, 0.817] | 0.854 ± 0.117 ** [0.826, 0.879] | 0.874 ± 0.085 [0.854, 0.892] | 0.670 ± 0.241 * [0.612, 0.723] | 0.787 ± 0.132 [0.756, 0.815] |
| Swish | 0.812 ± 0.092 ** [0.790, 0.832] | 0.864 ± 0.119 [0.835, 0.890] | 0.871 ± 0.098 [0.847, 0.891] | 0.676 ± 0.244 ** [0.618, 0.728] | 0.784 ± 0.135 [0.753, 0.814] |
| Mish | 0.805 ± 0.109 ** [0.780, 0.829] | 0.862 ± 0.127 [0.832, 0.890] | 0.877 ± 0.083 ** [0.857, 0.895] | 0.661 ± 0.258 * [0.600, 0.718] | 0.789 ± 0.128 * [0.760, 0.817] |
| EliSH | 0.800 ± 0.132 * [0.767, 0.827] | 0.855 ± 0.156 [0.818, 0.888] | 0.869 ± 0.115 [0.841, 0.893] | 0.660 ± 0.260 [0.598, 0.719] | 0.783 ± 0.142 [0.748, 0.814] |
| HardEliSH | 0.804 ± 0.081 [0.785, 0.822] | 0.865 ± 0.102 [0.841, 0.886] | 0.873 ± 0.080 [0.854, 0.890] | 0.670 ± 0.235 [0.616, 0.722] | 0.784 ± 0.129 [0.754, 0.813] |
| Activation | ET | TC | WT | NCR |
|---|---|---|---|---|
| EliSH | 2.269 ± 4.672 [1.43, 3.53] | 2.857 ± 5.601 [1.74, 4.25] | 2.338 ± 3.782 [1.62, 3.34] | 10.478 ± 43.489 [4.36, 21.47] |
| ELU | 2.011 ± 3.274 [1.41, 2.87] | 2.439 ± 4.244 [1.58, 3.52] | 2.392 ± 4.067 [1.60, 3.42] | 5.650 ± 6.592 [4.24, 7.25] |
| GELU | 1.941 ± 2.155 [1.51, 2.48] | 2.655 ± 4.540 [1.75, 3.83] | 2.627 ± 6.303 [1.54, 4.37] | 5.794 ± 6.475 [4.43, 7.33] |
| HardEliSH | 1.875 ± 2.634 [1.36, 2.55] | 2.529 ± 4.818 [1.59, 3.76] | 2.093 ± 2.493 [1.58, 2.70] | 5.691 ± 6.569 ** [4.31, 7.29] |
| Leaky ReLU | 1.794 ± 2.349 [1.33, 2.40] | 2.615 ± 4.108 [1.78, 3.63] | 2.843 ± 7.986 * [1.54, 5.00] | 6.450 ± 7.501 ** [4.89, 8.26] |
| Logish | 2.079 ± 2.814 [1.52, 2.79] | 2.331 ± 3.323 [1.63, 3.14] | 2.207 ± 3.376 [1.52, 3.04] | 5.604 ± 5.989 * [4.36, 7.11] |
| Mish | 2.256 ± 4.029 [1.48, 3.26] | 3.040 ± 5.293 [1.95, 4.34] | 2.259 ± 2.993 * [1.64, 2.97] | 5.940 ± 6.632 [4.57, 7.51] |
| PReLU | 2.532 ± 4.560 [1.62, 3.64] | 3.225 ± 5.329 ** [2.11, 4.57] | 2.618 ± 4.294 [1.76, 3.67] | 5.882 ± 6.922 [4.44, 7.52] |
| ReLU | 1.933 ± 2.522 [1.44, 2.57] | 2.278 ± 3.348 [1.60, 3.09] | 2.497 ± 3.568 [1.77, 3.39] | 5.315 ± 6.404 [3.96, 6.89] |
| Smish | 2.173 ± 3.547 [1.49, 3.10] | 2.508 ± 4.070 [1.69, 3.53] | 2.395 ± 3.526 [1.68, 3.30] | 5.549 ± 5.906 [4.30, 6.96] |
| Swish | 2.130 ± 3.496 [1.46, 3.02] | 2.858 ± 5.327 [1.76, 4.19] | 2.539 ± 3.757 [1.77, 3.45] | 6.039 ± 7.181 [4.52, 7.76] |
| TanhExp | 2.256 ± 3.791 [1.50, 3.26] | 2.948 ± 5.780 [1.80, 4.42] | 2.101 ± 2.828 * [1.53, 2.80] | 5.749 ± 6.668 [4.32, 7.39] |
| Activation | ET | TC | WT | NCR | ED |
|---|---|---|---|---|---|
| EliSH | 0.832 ± 0.158 ** [0.792, 0.865] | 0.848 ± 0.162 ** [0.807, 0.882] | 0.875 ± 0.148 [0.839, 0.906] | 0.632 ± 0.256 [0.571, 0.687] | 0.808 ± 0.167 * [0.768, 0.845] |
| ELU | 0.823 ± 0.131 ** [0.792, 0.852] | 0.849 ± 0.117 ** [0.821, 0.875] | 0.865 ± 0.134 ** [0.833, 0.893] | 0.647 ± 0.239 [0.588, 0.698] | 0.794 ± 0.165 [0.755, 0.831] |
| GELU | 0.790 ± 0.136 ** [0.758, 0.820] | 0.810 ± 0.134 ** [0.778, 0.840] | 0.876 ± 0.117 ** [0.847, 0.900] | 0.621 ± 0.245 ** [0.562, 0.676] | 0.821 ± 0.151 ** [0.785, 0.854] |
| HardEliSH | 0.824 ± 0.115 ** [0.796, 0.850] | 0.831 ± 0.119 ** [0.804, 0.858] | 0.895 ± 0.107 ** [0.869, 0.918] | 0.602 ± 0.244 ** [0.547, 0.657] | 0.841 ± 0.140 ** [0.808, 0.872] |
| Leaky ReLU | 0.840 ± 0.107 ** [0.816, 0.864] | 0.847 ± 0.106 ** [0.823, 0.871] | 0.887 ± 0.111 [0.859, 0.910] | 0.611 ± 0.231 ** [0.558, 0.663] | 0.827 ± 0.147 ** [0.793, 0.859] |
| Logish | 0.829 ± 0.126 ** [0.799, 0.858] | 0.849 ± 0.119 ** [0.821, 0.874] | 0.869 ± 0.127 ** [0.839, 0.897] | 0.633 ± 0.237 ** [0.578, 0.686] | 0.801 ± 0.159 * [0.762, 0.835] |
| Mish | 0.837 ± 0.141 ** [0.803, 0.867] | 0.863 ± 0.101 ** [0.840, 0.885] | 0.881 ± 0.114 [0.853, 0.904] | 0.645 ± 0.234 * [0.589, 0.698] | 0.810 ± 0.152 * [0.774, 0.844] |
| PReLU | 0.789 ± 0.151 ** [0.754, 0.822] | 0.822 ± 0.144 ** [0.787, 0.853] | 0.848 ± 0.145 ** [0.813, 0.879] | 0.651 ± 0.248 [0.592, 0.706] | 0.776 ± 0.178 ** [0.734, 0.817] |
| ReLU | 0.857 ± 0.107 [0.832, 0.880] | 0.882 ± 0.097 [0.859, 0.903] | 0.884 ± 0.121 [0.854, 0.909] | 0.651 ± 0.237 [0.595, 0.703] | 0.804 ± 0.160 [0.766, 0.840] |
| Smish | 0.817 ± 0.136 ** [0.784, 0.845] | 0.843 ± 0.137 ** [0.811, 0.872] | 0.861 ± 0.137 ** [0.829, 0.890] | 0.641 ± 0.241 [0.584, 0.694] | 0.792 ± 0.164 ** [0.752, 0.827] |
| Swish | 0.818 ± 0.134 ** [0.785, 0.846] | 0.840 ± 0.124 ** [0.811, 0.866] | 0.866 ± 0.139 ** [0.833, 0.895] | 0.645 ± 0.236 [0.588, 0.699] | 0.800 ± 0.170 [0.759, 0.837] |
| TanhExp | 0.848 ± 0.096 * [0.826, 0.869] | 0.859 ± 0.100 ** [0.836, 0.881] | 0.879 ± 0.117 ** [0.850, 0.904] | 0.633 ± 0.235 ** [0.578, 0.685] | 0.807 ± 0.152 [0.771, 0.840] |
| Activation | ET | TC | WT | NCR | ED |
|---|---|---|---|---|---|
| EliSH | 0.801 ± 0.107 ** [0.776, 0.825] | 0.893 ± 0.137 ** [0.859, 0.922] | 0.888 ± 0.086 ** [0.867, 0.907] | 0.775 ± 0.248 ** [0.716, 0.828] | 0.794 ± 0.142 [0.761, 0.825] |
| ELU | 0.814 ± 0.099 ** [0.790, 0.836] | 0.903 ± 0.122 ** [0.872, 0.928] | 0.903 ± 0.076 ** [0.884, 0.918] | 0.781 ± 0.223 ** [0.730, 0.829] | 0.809 ± 0.136 ** [0.778, 0.839] |
| GELU | 0.828 ± 0.102 ** [0.803, 0.850] | 0.923 ± 0.115 ** [0.895, 0.946] | 0.888 ± 0.087 ** [0.867, 0.906] | 0.803 ± 0.235 ** [0.745, 0.853] | 0.778 ± 0.149 * [0.741, 0.810] |
| HardEliSH | 0.804 ± 0.108 ** [0.779, 0.828] | 0.918 ± 0.115 ** [0.889, 0.942] | 0.867 ± 0.099 ** [0.843, 0.888] | 0.835 ± 0.205 ** [0.786, 0.879] | 0.760 ± 0.154 ** [0.724, 0.793] |
| Leaky ReLU | 0.797 ± 0.116 ** [0.770, 0.823] | 0.903 ± 0.136 ** [0.871, 0.932] | 0.882 ± 0.092 ** [0.861, 0.903] | 0.808 ± 0.266 ** [0.745, 0.866] | 0.778 ± 0.154 ** [0.741, 0.812] |
| Logish | 0.802 ± 0.108 ** [0.775, 0.826] | 0.903 ± 0.125 ** [0.872, 0.928] | 0.903 ± 0.081 ** [0.883, 0.920] | 0.798 ± 0.215 ** [0.745, 0.844] | 0.810 ± 0.135 ** [0.778, 0.839] |
| Mish | 0.803 ± 0.112 ** [0.777, 0.826] | 0.882 ± 0.160 ** [0.843, 0.915] | 0.887 ± 0.090 ** [0.866, 0.907] | 0.767 ± 0.272 ** [0.704, 0.827] | 0.795 ± 0.142 [0.762, 0.826] |
| PReLU | 0.828 ± 0.109 ** [0.802, 0.851] | 0.898 ± 0.160 ** [0.860, 0.931] | 0.906 ± 0.080 ** [0.887, 0.924] | 0.779 ± 0.227 ** [0.724, 0.827] | 0.807 ± 0.141 ** [0.774, 0.839] |
| ReLU | 0.777 ± 0.115 [0.751, 0.802] | 0.875 ± 0.122 [0.844, 0.900] | 0.877 ± 0.096 [0.855, 0.897] | 0.747 ± 0.224 [0.693, 0.796] | 0.788 ± 0.152 [0.752, 0.822] |
| Smish | 0.808 ± 0.108 ** [0.783, 0.833] | 0.897 ± 0.116 ** [0.869, 0.921] | 0.902 ± 0.084 ** [0.882, 0.920] | 0.763 ± 0.235 * [0.708, 0.815] | 0.810 ± 0.141 ** [0.776, 0.841] |
| Swish | 0.827 ± 0.096 ** [0.806, 0.848] | 0.906 ± 0.134 ** [0.873, 0.934] | 0.896 ± 0.080 ** [0.877, 0.914] | 0.784 ± 0.247 ** [0.725, 0.836] | 0.800 ± 0.132 [0.770, 0.831] |
| TanhExp | 0.794 ± 0.111 ** [0.767, 0.817] | 0.887 ± 0.147 ** [0.850, 0.917] | 0.894 ± 0.082 ** [0.874, 0.912] | 0.791 ± 0.239 ** [0.734, 0.842] | 0.800 ± 0.135 * [0.768, 0.830] |
| Metric | ReLU (Baseline) | Swish (Proposed) | Overhead/ Difference |
|---|---|---|---|
| Trainable Parameters | 22.93 M | 22.93 M | +0 (No change) |
| GFLOPs (Forward Pass) | 491.28 | 491.28 | +0 (Negligible) |
| Peak VRAM (Train, Batch = 2) | 5.80 GB | 6.96 GB | + 1.16 GB |
| Training Time (per Epoch) | 25.34 s | 25.57 s | + 0.23 s (~1%) |
| Inference Time (per Volume) | ~28 ms | ~28 ms | comparable |
| Architecture | Study | BraTS Edition | Dice WT | Dice TC | Dice ET |
|---|---|---|---|---|---|
| 3D Residual U-Net (baseline, ReLU) | This study | 2020 | 0.871 | 0.871 | 0.805 |
| 3D Residual U-Net (proposed, Swish) | This study | 2020 | 0.871 | 0.864 | 0.812 |
| nnU-Net (challenge winner) | Isensee et al. [47] | 2020 | 0.890 | 0.851 | 0.820 |
| TransBTS | Wang et al. [52] | 2020 † | 0.901 | 0.817 | 0.787 |
| Attention U-Net | Oktay et al. [60] ‡ | 2019 | 0.888 | 0.772 | 0.760 |
| Swin UNETR | Hatamizadeh et al. [51] | 2021 | 0.926 | 0.885 | 0.858 |
| Activation | ET | TC | WT | NCR | ED |
|---|---|---|---|---|---|
| ReLU | 0.808 ± 0.004 | 0.865 ± 0.007 | 0.875 ± 0.002 | 0.661 ± 0.012 | 0.787 ± 0.005 |
| Swish | 0.801 ± 0.011 | 0.861 ± 0.008 | 0.875 ± 0.005 | 0.677 ± 0.003 | 0.789 ± 0.006 |
| PReLU | 0.800 ± 0.007 | 0.862 ± 0.007 | 0.875 ± 0.003 | 0.678 ± 0.004 | 0.789 ± 0.003 |
| TanhExp | 0.810 ± 0.004 | 0.865 ± 0.004 | 0.876 ± 0.006 | 0.666 ± 0.004 | 0.787 ± 0.007 |
| Activation | ET | TC | WT | NCR | ED |
|---|---|---|---|---|---|
| ReLU | 0.754 ± 0.037 | 0.827 ± 0.027 | 0.903 ± 0.015 | 0.655 ± 0.034 | 0.778 ± 0.026 |
| Swish | 0.755 ± 0.036 | 0.832 ± 0.028 | 0.903 ± 0.015 | 0.663 ± 0.035 | 0.778 ± 0.022 |
| PReLU | 0.760 ± 0.031 | 0.826 ± 0.022 | 0.902 ± 0.014 | 0.652 ± 0.031 | 0.778 ± 0.025 |
| TanhExp | 0.757 ± 0.036 | 0.831 ± 0.022 | 0.902 ± 0.018 | 0.660 ± 0.027 | 0.780 ± 0.024 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2026 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license.
Share and Cite
Saleh, M.M.; Hussein, E.M.; Salih, M.E.; Ahmed, M.A.A. Enhancing 3D MRI-Based Necrotic Core Segmentation in Glioblastoma Using Activation Functions in Deep Learning. Informatics 2026, 13, 118. https://doi.org/10.3390/informatics13070118
Saleh MM, Hussein EM, Salih ME, Ahmed MAA. Enhancing 3D MRI-Based Necrotic Core Segmentation in Glioblastoma Using Activation Functions in Deep Learning. Informatics. 2026; 13(7):118. https://doi.org/10.3390/informatics13070118
Chicago/Turabian StyleSaleh, Mushtaq Mahyoob, Eltahir Mohamed Hussein, Musab Elkheir Salih, and Mohamed A. A. Ahmed. 2026. "Enhancing 3D MRI-Based Necrotic Core Segmentation in Glioblastoma Using Activation Functions in Deep Learning" Informatics 13, no. 7: 118. https://doi.org/10.3390/informatics13070118
APA StyleSaleh, M. M., Hussein, E. M., Salih, M. E., & Ahmed, M. A. A. (2026). Enhancing 3D MRI-Based Necrotic Core Segmentation in Glioblastoma Using Activation Functions in Deep Learning. Informatics, 13(7), 118. https://doi.org/10.3390/informatics13070118

