Brain Tumor Classification on MRI in Light of Molecular Markers
This work addresses a specific medical imaging problem for brain tumor diagnosis, with incremental improvements in model design for reliability.
The study tackled the problem of predicting 1p/19q gene co-deletion status in low-grade gliomas from MRI scans, which is critical for treatment planning, by developing a custom convolutional neural network from scratch rather than using pre-trained models. The proposed model achieved an F1-score of 96.37%, precision of 97.46%, and recall of 96.34% on a validation set, outperforming fine-tuned pre-trained networks like InceptionV3, VGG16, and MobileNetV2.
In research findings, co-deletion of the 1p/19q gene is associated with clinical outcomes in low-grade gliomas. The ability to predict 1p19q status is critical for treatment planning and patient follow-up. This study aims to utilize a specially MRI-based convolutional neural network for brain cancer detection. Although public networks such as RestNet and AlexNet can effectively diagnose brain cancers using transfer learning, the model includes quite a few weights that have nothing to do with medical images. As a result, the diagnostic results are unreliable by the transfer learning model. To deal with the problem of trustworthiness, we create the model from the ground up, rather than depending on a pre-trained model. To enable flexibility, we combined convolution stacking with a dropout and full connect operation, it improved performance by reducing overfitting. During model training, we also supplement the given dataset and inject Gaussian noise. We use three--fold cross-validation to train the best selection model. Comparing InceptionV3, VGG16, and MobileNetV2 fine-tuned with pre-trained models, our model produces better results. On an validation set of 125 codeletion vs. 31 not codeletion images, the proposed network achieves 96.37\% percent F1-score, 97.46\% percent precision, and 96.34\% percent recall when classifying 1p/19q codeletion and not codeletion images.