Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zsdonghao/u-net-brain-tumor
U-Net Brain Tumor Segmentation
https://github.com/zsdonghao/u-net-brain-tumor
medical-imaging tensorflow tensorlayer unet
Last synced: 4 days ago
JSON representation
U-Net Brain Tumor Segmentation
- Host: GitHub
- URL: https://github.com/zsdonghao/u-net-brain-tumor
- Owner: zsdonghao
- Created: 2017-06-05T16:17:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-17T21:55:15.000Z (about 5 years ago)
- Last Synced: 2024-10-22T16:04:11.975Z (12 days ago)
- Topics: medical-imaging, tensorflow, tensorlayer, unet
- Language: Python
- Homepage: https://github.com/zsdonghao/tensorlayer
- Size: 1 MB
- Stars: 502
- Watchers: 32
- Forks: 180
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-tensorlayer - U-Net Brain Tumor Segmentation
- awesome-tensorflow - U-Net - For Brain Tumor Segmentation (Models/Projects)
- awesome_medical - u-net-brain-tumor
- awesome-tensorflow - U-Net - For Brain Tumor Segmentation (Models/Projects)
- fucking-awesome-tensorflow - U-Net - For Brain Tumor Segmentation (Models/Projects)
README
# U-Net Brain Tumor Segmentation
🚀:Feb 2019 the data processing implementation in this repo is not the fastest way (code need update, contribution is welcome), you can use TensorFlow dataset API instead.
This repo show you how to train a U-Net for brain tumor segmentation. By default, you need to download the training set of [BRATS 2017](http://braintumorsegmentation.org) dataset, which have 210 HGG and 75 LGG volumes, and put the data folder along with all scripts.
```bash
data
-- Brats17TrainingData
-- train_dev_all
model.py
train.py
...
```### About the data
Note that according to the license, user have to apply the dataset from BRAST, please do **NOT** contact me for the dataset. Many thanks.
Fig 1: Brain Image* Each volume have 4 scanning images: FLAIR、T1、T1c and T2.
* Each volume have 4 segmentation labels:```
Label 0: background
Label 1: necrotic and non-enhancing tumor
Label 2: edema
Label 4: enhancing tumor
```The `prepare_data_with_valid.py` split the training set into 2 folds for training and validating. By default, it will use only half of the data for the sake of training speed, if you want to use all data, just change `DATA_SIZE = 'half'` to `all`.
### About the method
- Network and Loss: In this experiment, as we use [dice loss](http://tensorlayer.readthedocs.io/en/latest/modules/cost.html#dice-coefficient) to train a network, one network only predict one labels (Label 1,2 or 4). We evaluate the performance using [hard dice](http://tensorlayer.readthedocs.io/en/latest/modules/cost.html#hard-dice-coefficient) and [IOU](http://tensorlayer.readthedocs.io/en/latest/modules/cost.html#iou-coefficient).
- Data augmenation: Includes random left and right flip, rotation, shifting, shearing, zooming and the most important one -- [Elastic trasnformation](http://tensorlayer.readthedocs.io/en/latest/modules/prepro.html#elastic-transform), see ["Automatic Brain Tumor Detection and Segmentation Using U-Net Based Fully Convolutional Networks"](https://arxiv.org/pdf/1705.03820.pdf) for details.
Fig 2: Data augmentation### Start training
We train HGG and LGG together, as one network only have one task, set the `task` to `all`, `necrotic`, `edema` or `enhance`, "all" means learn to segment all tumors.
```
python train.py --task=all
```Note that, if the loss stick on 1 at the beginning, it means the network doesn't converge to near-perfect accuracy, please try restart it.
### Citation
If you find this project useful, we would be grateful if you cite the TensorLayer paper:```
@article{tensorlayer2017,
author = {Dong, Hao and Supratak, Akara and Mai, Luo and Liu, Fangde and Oehmichen, Axel and Yu, Simiao and Guo, Yike},
journal = {ACM Multimedia},
title = {{TensorLayer: A Versatile Library for Efficient Deep Learning Development}},
url = {http://tensorlayer.org},
year = {2017}
}
```