Skip to content

Commit

Permalink
refactor(README): separate GitHub README.md from Sphinx index.rst for…
Browse files Browse the repository at this point in the history
… better readability
  • Loading branch information
fabianbalsiger committed Oct 11, 2021
1 parent 9fca62c commit f56df5a
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 23 deletions.
58 changes: 58 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
pymia
=====

<a href="https://pymia.readthedocs.io/en/latest/?badge=latest">
<img src="https://readthedocs.org/projects/pymia/badge/?version=latest" alt="Documentation status">
</a>

pymia is an open-source Python (py) package for deep learning-based medical image analysis (mia).
The package addresses two main parts of deep learning pipelines: data handling and evaluation.
The package itself is independent of the deep learning framework used but can easily be integrated into TensorFlow and PyTorch pipelines.
Therefore, pymia is highly flexible, allows for fast prototyping, and reduces the burden of implementing data handling and evaluation.

Main Features
-------------
The main features of pymia are data handling ([`pymia.data` package](https://pymia.readthedocs.io/en/latest/pymia.data.html)) and evaluation ([`pymia.evaluation` package](https://pymia.readthedocs.io/en/latest/pymia.evaluation.html)).
The data package is used to extract data (images, labels, demography, etc.) from a dataset in the desired format (2-D, 3-D; full- or patch-wise) for feeding to a neural network.
The output of the neural network is then assembled back to the original format before extraction, if necessary.
The evaluation package provides both evaluation routines as well as metrics to assess predictions against references.
Evaluation can be used both for stand-alone result calculation and reporting, and for monitoring of the training progress.
Further, pymia provides some basic image filtering and manipulation functionality ([`pymia.filtering` package](https://pymia.readthedocs.io/en/latest/pymia.filtering.html)).
We recommend following our [examples](https://pymia.readthedocs.io/en/latest/examples.html).

The following figure depicts pymia in the deep learning environment. The data package allows to create a dataset from raw data.
Extraction of the data from this dataset is possible in nearly every desired format (2-D, 3-D; full- or patch-wise) for feeding to a neural network.
The prediction of the neural network can, if necessary, be assembled back to the format before extraction.
The evaluation package allows to evaluate predictions against references using a vast amount of metrics. It can be used stand-alone (solid) or for performance monitoring during training (dashed).

<img src="https://raw.githubusercontent.com/rundherum/pymia/master/docs/images/fig-overview.png" alt="The pymia package in the deep learning environment" width="75%">

Getting Started
---------------

If you are new to pymia, here are a few guides to get you up to speed right away:

- [Installation](https://pymia.readthedocs.io/en/latest/installation.html): helps you installing pymia - or simply run `pip install pymia`
- [Examples](https://pymia.readthedocs.io/en/latest/examples.html) give you an overview of pymia's intended use. Jupyter notebooks and Python scripts are available at [./examples](https://github.com/rundherum/pymia/tree/master/examples/).
- [Do you want to contribute?](https://pymia.readthedocs.io/en/latest/contribution.html)
- [Change history](https://pymia.readthedocs.io/en/latest/history.html)
- [Acknowledgments](https://pymia.readthedocs.io/en/latest/acknowledgment.html)

Citation
--------
If you use pymia for your research, please acknowledge it accordingly by citing our paper:

[Jungo, A., Scheidegger, O., Reyes, M., & Balsiger, F. (2021). pymia: A Python package for data handling and evaluation in deep learning-based medical image analysis. Computer Methods and Programs in Biomedicine, 198, 105796.](https://doi.org/10.1016/j.cmpb.2020.105796)

BibTeX entry:

@article{Jungo2021a,
author = {Jungo, Alain and Scheidegger, Olivier and Reyes, Mauricio and Balsiger, Fabian},
doi = {10.1016/j.cmpb.2020.105796},
issn = {01692607},
journal = {Computer Methods and Programs in Biomedicine},
pages = {105796},
title = {{pymia: A Python package for data handling and evaluation in deep learning-based medical image analysis}},
volume = {198},
year = {2021},
}
12 changes: 0 additions & 12 deletions README.rst

This file was deleted.

23 changes: 13 additions & 10 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.. include:: ../README.rst
pymia is an open-source Python (py) package for deep learning-based medical image analysis (mia).
The package addresses two main parts of deep learning pipelines: data handling and evaluation.
The package itself is independent of the deep learning framework used but can easily be integrated into TensorFlow and PyTorch pipelines.
Therefore, pymia is highly flexible, allows for fast prototyping, and reduces the burden of implementing data handling and evaluation.

Main Features
=============
Expand Down Expand Up @@ -46,24 +49,24 @@ If you are new to pymia, here are a few guides to get you up to speed right away

Citation
========
If you use pymia for your research, please acknowledge it accordingly by citing:
If you use pymia for your research, please acknowledge it accordingly by citing our paper:

.. code-block:: none
Jungo, A., Scheidegger, O., Reyes, M., & Balsiger, F. (2020). pymia: A Python package for data handling and evaluation in deep learning-based medical image analysis. ArXiv preprint 2010.03639.
`Jungo, A., Scheidegger, O., Reyes, M., & Balsiger, F. (2021). pymia: A Python package for data handling and evaluation in deep learning-based medical image analysis. Computer Methods and Programs in Biomedicine, 198, 105796 <https://doi.org/10.1016/j.cmpb.2020.105796>`_


BibTeX entry:

.. code-block:: none
@article{Jungo2020a,
archivePrefix = {arXiv},
arxivId = {2010.03639},
@article{Jungo2021a,
author = {Jungo, Alain and Scheidegger, Olivier and Reyes, Mauricio and Balsiger, Fabian},
journal = {arXiv preprint},
doi = {10.1016/j.cmpb.2020.105796},
issn = {01692607},
journal = {Computer Methods and Programs in Biomedicine},
pages = {105796},
title = {{pymia: A Python package for data handling and evaluation in deep learning-based medical image analysis}},
year = {2020}
volume = {198},
year = {2021},
}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open(os.path.join(directory, 'pymia', '__version__.py'), 'r', encoding='utf-8') as f:
exec(f.read(), about)

with open(os.path.join('README.rst'), 'r', encoding='utf-8') as f:
with open(os.path.join('README.md'), 'r', encoding='utf-8') as f:
readme = f.read()

REQUIRED_PACKAGES = [
Expand Down

0 comments on commit f56df5a

Please sign in to comment.