maryann-gitonga commited on
Commit
6135e74
1 Parent(s): 7cbcaf4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -2
README.md CHANGED
@@ -2,7 +2,6 @@
2
  tags:
3
  - semantic segmentation
4
  - brain tumor segmentation
5
- license: mit
6
  library_name: TensorFlow
7
  datasets:
8
  - https://www.kaggle.com/datasets/dschettler8845/brats-2021-task1
@@ -10,4 +9,19 @@ metrics:
10
  - Dice Coefficient
11
  - Tversky Loss
12
  pipeline_tag: image-segmentation
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  tags:
3
  - semantic segmentation
4
  - brain tumor segmentation
 
5
  library_name: TensorFlow
6
  datasets:
7
  - https://www.kaggle.com/datasets/dschettler8845/brats-2021-task1
 
9
  - Dice Coefficient
10
  - Tversky Loss
11
  pipeline_tag: image-segmentation
12
+ ---
13
+ # 3D Attention-based UNet for Multi-modal Brain Tumor Segmentation
14
+
15
+ ## Model Description
16
+ This model uses the UNet architecture, which employs a contracting path to down-sample image dimensions and an expanding path to up-sample while retaining spatial information through skip connections.
17
+ 3D attention gates are introduced to generate 3D channel and spatial attention by utilizing 3D inter-channel and inter-spatial feature relationships.
18
+ The input is a combined scan of 3 modalities (T1CE, T2 and T2-FLAIR) with the dimensions: 3 x L x W x no. of slices.
19
+ The model attained a Dice Coefficient score of 0.9562 and a Tversky Loss of 0.0438
20
+
21
+ ## Dataset Description
22
+ The BRaTs (Brain Tumor Segmentation) 2021 Dataset, consisting of 1400 multi-parametric MRI (mpMRI) scans with expert neuro-radiologists' ground truth annotations, was used for this project.
23
+ The dataset provides mpMRI scans in NIfTI format and includes native (T1), post-contrast T1-weighted (T1CE), T2-weighted (T2), and T2 Fluid Attenuated Inversion Recovery (T2-FLAIR) volumes, along with manually annotated GD-enhancing tumor, peritumoral edematous/invaded tissue, necrotic tumor core, and normal tissue.
24
+ Checkout the dataset [here](https://www.kaggle.com/datasets/dschettler8845/brats-2021-task1).
25
+
26
+ ## Model Notebook
27
+ Find the notebook containing the model code on [my Github](https://github.com/MaryannGitonga/Brain-Tumor-Segmentation-Using-3D-Attention-Based-UNet).