Giter VIP home page Giter VIP logo

3dunetcnn's Introduction

3D U-Net Convolution Neural Network with Keras

Tumor Segmentation Example

Background

The code was written to be trained using the BRATS 2020 data set for brain tumors, but it can be easily modified to be used in other 3D applications.

Tutorial using BRATS Data

Training

  1. Download the BraTS 2020 data after registering by following the steps outlined on the BraTS 2020 competition page. Place the unzipped training and validation data folders named "MICCAI_BraTS2020_TrainingData" and "MICCAI_BraTS2020_ValidationData" in the brats/data folder.
  2. Install Python 3 and dependencies:
  1. cd into the 3DUnetCNN repository.

  2. Add the repository directory to the PYTONPATH system variable:

$ export PYTHONPATH=${PWD}:$PYTHONPATH
  1. cd into the brats folder.

  2. Run the training:

$ python train.py
  1. Now that the model is trained, predict the BraTS validation data:
$ python predict.py

The predicted segmentations will be in the "BraTS2020_Validation_predictions".

If you run out of memory during training: try setting config['patch_shape`] = (64, 64, 64) for starters. Also, read the "Configuration" notes at the bottom of this page.

Write prediction images from the hold-out set of the training data

In the training above, part of the data was held out for validation purposes. To write the predicted label maps to file:

$ python predict.py

The predictions will be written in the prediction folder along with the input data and ground truth labels for comparison.

Configuration

Changing the configuration dictionary in the train.py scripts, makes it easy to test out different model and training configurations. I would recommend trying it out then modifying the parameters until you have satisfactory results. If you are running out of memory, try training using (64, 64, 64) shaped patches. Reducing the "batch_size" and "validation_batch_size" parameters will also reduce the amount of memory required for training as smaller batch sizes feed smaller chunks of data to the CNN. If the batch size is reduced down to 1 and it still you are still running out of memory, you could also try changing the patch size to (32, 32, 32). Keep in mind, though, that a smaller patch sizes may not perform as well as larger patch sizes.

Using this code on other 3D datasets

If you want to train a 3D UNet on a different set of data, you can copy either the train.py script and modify it to read in your data rather than the preprocessed BRATS data that they are currently setup to train on.

Pre-trained Model

The following Keras model were trained on the BRATS 2020 data:

BraTS20 Validation Set Scores:

Dice Enhancing Tumor Dice Whole Tumor Dice Tumor Core
0.65446 0.86171 0.75757

3dunetcnn's People

Contributors

alkamid avatar ellisdg avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.