- Introduction
- Dataset Overview
- Objectives
- References and Research Sources
- Implementation
- Training Setup Explained
The primary goal of this project is to facilitate the diagnosis and treatment of glioblastoma, a severe form of brain cancer. By leveraging radiogenomics and MRI scans, we aim to predict the genetic profile of the tumor, focusing on the presence of MGMT promoter methylation—a key prognostic factor. This project is part of a competition organized by RSNA and MICCAI, making it a timely and impactful endeavor.
Data is sourced from RSNA and MICCAI, two reputable organizations in the medical imaging community. For more details, visit RSNA-MICCAI Brain Tumor Radiogenomic Classification.
- To predict the MGMT promoter methylation status of glioblastoma tumors between values of 0 and 1.
- MGMT
- Is it Possible to Predict MGMT Promoter Methylation from Brain Tumor MRI Scans using Deep Learning Models
- Automatic Prediction of MGMT Status in Glioblastoma via Deep Learning-Based MR Image Analysis
- MRI-Based Deep-Learning Method for Determining Glioma MGMT Promoter Methylation Status
- Improving MGMT methylation status prediction of glioblastoma through optimizing radiomics features using genetic algorithm-based machine learning approach
- Data augmentation
The implementation is structured as follows:
- Training Setup
- Data Retrieval
- Data Preparation
- Model Creation
- Model Training
- Model Evaluation
- Method: Stratified K-Fold
- Configuration: 5 Folds; 1st fold used for validation
- Dimensions: 128x128 pixels, grayscale
- Sequence: 32 sequential images
- Scale: 85% of original image size
- Crop, Rotate, Translate, Blur, Contrast, and Brightness
-
Batch Size: 8
-
Epochs: 32
-
Optimizer: SGD with learning rate 0.001
-
Loss Function: Binary Cross-Entropy
-
Metrics: AUC
- Model: DeepScanModel (3D CNN)