Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 3.11 KB

README.md

File metadata and controls

65 lines (51 loc) · 3.11 KB

| CNN | CV | Brain | Prediction

Kaggle

Table of Contents

  1. Introduction
  2. Dataset Overview
  3. Objectives
  4. References and Research Sources
  5. Implementation
  6. Training Setup Explained

1. Introduction

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.

2. Dataset Overview

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.

3. Objectives

  • To predict the MGMT promoter methylation status of glioblastoma tumors between values of 0 and 1.

4. References and Research Sources

6. Implementation

The implementation is structured as follows:

  • Training Setup
  • Data Retrieval
  • Data Preparation
  • Model Creation
  • Model Training
  • Model Evaluation

6. Training Setup Explained

Cross-Validation

  • Method: Stratified K-Fold
  • Configuration: 5 Folds; 1st fold used for validation

Processing

  • Dimensions: 128x128 pixels, grayscale
  • Sequence: 32 sequential images
  • Scale: 85% of original image size

Augmentation

  • Crop, Rotate, Translate, Blur, Contrast, and Brightness

Train

  • Batch Size: 8

  • Epochs: 32

  • Optimizer: SGD with learning rate 0.001

  • Loss Function: Binary Cross-Entropy

  • Metrics: AUC

Model Architecture

  • Model: DeepScanModel (3D CNN)
model