ChelovekHe / DLTK

Deep Learning Toolkit for Medical Image Analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deep Learning Toolkit (DLTK)

DLTK is a neural networks toolkit written in python, on top of Tensorflow. Its modular architecture is closely inspired by sonnet and it was developed to enable fast prototyping and ensure reproducibility in image analysis applications, with a particular focus on medical imaging. Its goal is to provide the community with state of the art methods and models and to accelerate research in this exciting field.

Installation

  1. Install CUDA with cuDNN and add the path to ~/.bashrc:
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:MY_CUDA_PATH/lib64; export LD_LIBRARY_PATH
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:MY_CUDA_PATHextras/CUPTI/lib64; export LD_LIBRARY_PATH
PATH=$PATH:MY_CUDA_PATH/bin; export PATH
CUDA_HOME=MY_CUDA_PATH; export CUDA_HOME
  1. Setup a virtual environment and activate it:
virtualenv venv_tf1.1
source venv_tf1.1/bin/activate
  1. Install all DLTK dependencies (including tensorflow) via pip:
cd $DLTK_SRC
pip install -e .

Start playing

  1. Start a notebook server with
jupyter notebook --ip=* --port $MY_PORT
  1. navigate to examples and run a tutorial.ipynb notebook

Road map

Over the course of the next months we will add more content to DLTK. This road map outlines the immediate plans for what you will be seeing in DLTK soon:

  • Core:

    • Losses: Dice loss, frequency reweighted losses, adversial training
    • Normalisation: layer norm, weight norm
  • Models:

    • deepmedic
    • densenet
    • VGG
    • Super-resolution nets
  • Other:

    • Augmentation via elastic deformations
    • Sampling with fixed class frequencies
    • Stand-alone deploy scripts

Core team

@mrajchl @pawni @sk1712 @mauinz

License

See license.md

Acknowledgements

We would like to thank NVIDIA GPU Computing for providing us with hardware for our research.

About

Deep Learning Toolkit for Medical Image Analysis

License:Apache License 2.0


Languages

Language:Python 92.9%Language:Makefile 6.5%Language:Batchfile 0.7%