Metadata-Version: 2.1
Name: delira
Version: 0.3.0
Summary: UNKNOWN
Home-page: https://git.lfb.rwth-aachen.de/Radiology/Delira/
License: BSD 2-Clause License

Copyright (c) 2018, Justus Schock, Christoph Haarburger
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Description: [![PyPI version](https://badge.fury.io/py/delira.svg)](https://badge.fury.io/py/delira) [![Build Status](https://travis-ci.com/justusschock/delira.svg?branch=master)](https://travis-ci.com/justusschock/delira) [![Documentation Status](https://readthedocs.org/projects/delira/badge/?version=master)](https://delira.readthedocs.io/en/master/?badge=master) [![codecov](https://codecov.io/gh/justusschock/delira/branch/master/graph/badge.svg)](https://codecov.io/gh/justusschock/delira)
        ![LICENSE](https://img.shields.io/github/license/justusschock/delira.svg)
        
        ![logo](docs/_static/logo/delira.svg "delira - Deep Learning in Radiology")
        
        # Delira - Deep Learning in Radiology
        Authors: [Justus Schock, Oliver Rippel, Christoph Haarburger](AUTHORS.rst)
        
        ## Introduction
        Delira was developed as a deep learning framework for medical images such as CT or MRI. Currently, it works on arbitrary data (based on [NumPy](http://www.numpy.org/)). 
        
        Based on [batchgenerators](https://github.com/MIC-DKFZ/batchgenerators) and [trixi](https://github.com/MIC-DKFZ/trixi) it provides a framework for
        * Dataset loading
        * Dataset sampling
        * Augmentation (multi-threaded) including 3D images with any number of channels
        * A generic trainer class that implements the training process for all [backends](#choose-backend)
        * Already implemented [models](delira/models) used in medical image processing and exemplaric implementations of most used models in general (like Resnet)
        * Web-based monitoring using [Visdom](https://github.com/facebookresearch/visdom)
        * Model save and load functions
        
        Delira supports classification and regression problems as well as generative adversarial networks and segmentation tasks.
        
        ## Installation
        
        ### Choose Backend
        
        Currently the only available backends are [PyTorch](https://pytorch.org) and [TensorFlow](https://tensorflow.org)(or no backend at all). If you want to add another backend, please open an issue (it should not be hard at all) and we will guide you during the process of doing so.
        
        | Backend                        | Binary Installation         | Source Installation                                                                         | Notes                                                                                                                                                 |
        |--------------------------------|-----------------------------|---------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
        | None                           | `pip install delira`        | `pip install git+https://github.com/justusschock/delira.git`                                | Training not possible if backend is not installed separately                                                                                          |
        | [`torch`](https://pytorch.org) | `pip install delira[torch]` | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[torch]` | `delira` with `torch` backend supports mixed-precision training via [NVIDIA/apex](https://github.com/NVIDIA/apex.git) (must be installed separately). | 
        | [`tf`](https://www.tensorflow.org/) | - | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[tf]` | the `tf` backend is still very experimental and lacks some [features](https://github.com/justusschock/delira/issues/47) |
        | Full                           | `pip install delira[full]`  | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[full]`  | All backends will be installed.                                                                                                                   |
        
        ### Docker
        The easiest way to use `delira` is via docker (with the [nvidia-runtime](https://github.com/NVIDIA/nvidia-docker) for GPU-support) and using the [Dockerfile](docker/Dockerfile) or the [prebuild-images](https://cloud.docker.com/u/justusschock/repository/docker/justusschock/delira).
        
        ## Getting Started
        The best way to learn how to use is to have a look at the [tutorial notebook](notebooks/tutorial_delira.ipynb).
        Example implementations for classification problems, segmentation approaches and GANs are also provided in the [notebooks](notebooks) folder.
        
        ## Contributing
        If you find a bug or have an idea for an improvement, please have a look at our [contribution guideline](CONTRIBUTING.md).
        
Platform: UNKNOWN
Requires-Python: >3.5
Provides-Extra: full
Provides-Extra: tf
Provides-Extra: torch
