Skip to content

unyqhz/DLTK

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deep Learning Toolkit (DLTK)

Gitter

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.

Documentation

DLTK API and user guides can be found here

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 93.3%
  • Makefile 6.1%
  • Batchfile 0.6%