Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Integration:  dvc git
a85970d7eb
set origin as default remote
1 year ago
9d6df19da0
version raw data with dvc, modify dvc config file to auto staging
1 year ago
a1d9a26283
move project
1 year ago
a1d9a26283
move project
1 year ago
a1d9a26283
move project
1 year ago
a1d9a26283
move project
1 year ago
472c161135
dvc init
1 year ago
01c93e7096
Initial commit
1 year ago
01c93e7096
Initial commit
1 year ago
945a068f3b
Update 'README.md'
1 year ago
Storage Buckets
Data Pipeline
Legend
DVC Managed File
Git Managed File
Metric
Stage File
External File

README.md

You have to be logged in to leave a comment. Sign In

Semantic Segmentation for Brain MRI Scans

Open In Colab

![](a1d9a26283/readme_images/ex1.gif)

Intro

BraTS 2018 utilizes multi-institutional pre-operative MRI scans and focuses on the segmentation of intrinsically heterogeneous (in appearance, shape, and histology) brain tumors, namely gliomas. Furthermore, to pinpoint the clinical relevance of this segmentation task, BraTS’18 also focuses on the prediction of patient overall survival, via integrative analyses of radiomic features and machine learning algorithms

Dataset

  • The dataset is divided into 2 types of cancer - HGG (High-grade gliomas) and LGG (Low-grade gliomas). For every type of cancer, we will have 3D MRI scans (voxel) of patients that were acquired with different clinical protocols and various scanners from multiple (n=19) institutions. For every patient with four filters:

    • Native (T1).
    • Post-contrast T1-weighted (T1Gd).
    • T2-weighted (T2).
    • T2 Fluid Attenuated Inversion Recovery (FLAIR).

    Each filter is an MRI scan that acts as a feature. and

  • The segmented MRI scenes have been segmented manually, by one to four raters, following the same annotation protocol, and their annotations were approved by experienced neuro-radiologists. The segmented data have been labeled using 3 different pixels:

    • GD-enhancing tumor (ET — label 4)
    • Peritumoral edema (ED — label 2)
    • Necrotic and non-enhancing tumor core (NCR/NET — label 1)
  • Image type: NIfTI files (.nii.gz)

  • Dataset tree:

    data/
    ├── Training
    │   ├── HGG
    │   │   ├── Brats18_2013_10_1
    │   │   │   ├── Brats18_2013_10_1_flair.nii
    │   │   │   ├── Brats18_2013_10_1_seg.nii
    │   │   │   ├── Brats18_2013_10_1_t1.nii
    │   │   │   ├── Brats18_2013_10_1_t1ce.nii
    │   │   │   └── Brats18_2013_10_1_t2.nii
    │   │   ├── Brats18_2013_11_1
    │   │   │   ├── Brats18_2013_11_1_flair.nii
    │   │   │   ├── Brats18_2013_11_1_seg.nii
    │   │   │   ├── Brats18_2013_11_1_t1.nii
    │   │   │   ├── Brats18_2013_11_1_t1ce.nii
    │   │   │   └── Brats18_2013_11_1_t2.nii
    │   │   ├── ...
    │   ├── LGG
    │   │   ├── Brats18_2013_0_1
    │   │   │   ├── Brats18_2013_0_1_flair.nii
    │   │   │   ├── Brats18_2013_0_1_seg.nii
    │   │   │   ├── Brats18_2013_0_1_t1.nii
    │   │   │   ├── Brats18_2013_0_1_t1ce.nii
    │   │   │   └── Brats18_2013_0_1_t2.nii
    │   │   ├── Brats18_2013_15_1
    │   │   │   ├── Brats18_2013_15_1_flair.nii
    │   │   │   ├── Brats18_2013_15_1_seg.nii
    │   │   │   ├── Brats18_2013_15_1_t1.nii
    │   │   │   ├── Brats18_2013_15_1_t1ce.nii
    │   │   │   └── Brats18_2013_15_1_t2.nii
    │   │   ├── ...
    │   └── survival_data.csv
    └── Validation
        ├── Brats18_CBICA_AAM_1
        │   ├── Brats18_CBICA_AAM_1_flair.nii
        │   ├── Brats18_CBICA_AAM_1_t1.nii
        │   ├── Brats18_CBICA_AAM_1_t1ce.nii
        │   └── Brats18_CBICA_AAM_1_t2.nii
        ├── Brats18_CBICA_ABT_1
        │   ├── Brats18_CBICA_ABT_1_flair.nii
        │   ├── Brats18_CBICA_ABT_1_t1.nii
        │   ├── Brats18_CBICA_ABT_1_t1ce.nii
        │   └── Brats18_CBICA_ABT_1_t2.nii
        ├── ...
        └── survival_evaluation.csv
    
    355 directories, 1691 files
    
    

Models

  • We will use a 3D U-net model from the winning paper with the following architecture:

  • The model was implemented with Keras and TensorFlow V 1.* by Suyog Jadhav

Additional Information ℹ️

Tip!

Press p or to see the previous file or, n or to see the next file

About

3D MRI brain tumor segmentation using autoencoder regularization

Collaborators 1

Comments

Loading...