pymia


Namepymia JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://pymia.readthedocs.io/
SummaryA Python package for data handling and evaluation in deep learning-based medical image analysis.
upload_time2024-09-26 15:26:55
maintainerNone
docs_urlNone
authorFabian Balsiger and Alain Jungo
requires_python>=3.6
licenseApache 2.0
keywords medical image analysis deep learning data handling evaluation metrics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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">

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) for installation instructions - 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 in the directory [./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},
    }

            

Raw data

            {
    "_id": null,
    "home_page": "https://pymia.readthedocs.io/",
    "name": "pymia",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "medical image analysis, deep learning, data handling, evaluation, metrics",
    "author": "Fabian Balsiger and Alain Jungo",
    "author_email": "fabian.balsiger@insel.ch",
    "download_url": "https://files.pythonhosted.org/packages/c5/50/faeff5f635542271be2fc402874811d32cbbf0eeb7d038bfb549eb26969c/pymia-0.3.3.tar.gz",
    "platform": null,
    "description": "pymia\n=====\n\n<a href=\"https://pymia.readthedocs.io/en/latest/?badge=latest\">\n   <img src=\"https://readthedocs.org/projects/pymia/badge/?version=latest\" alt=\"Documentation status\">\n</a>\n\npymia is an open-source Python (py) package for deep learning-based medical image analysis (mia).\nThe package addresses two main parts of deep learning pipelines: data handling and evaluation.\nThe package itself is independent of the deep learning framework used but can easily be integrated into TensorFlow and PyTorch pipelines.\nTherefore, pymia is highly flexible, allows for fast prototyping, and reduces the burden of implementing data handling and evaluation.\n\nMain Features\n-------------\nThe 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)).\nThe 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.\nThe output of the neural network is then assembled back to the original format before extraction, if necessary.\nThe evaluation package provides both evaluation routines as well as metrics to assess predictions against references.\nEvaluation can be used both for stand-alone result calculation and reporting, and for monitoring of the training progress.\nFurther, pymia provides some basic image filtering and manipulation functionality ([`pymia.filtering` package](https://pymia.readthedocs.io/en/latest/pymia.filtering.html)).\nWe recommend following our [examples](https://pymia.readthedocs.io/en/latest/examples.html).\n\nThe following figure depicts pymia in the deep learning environment. The data package allows to create a dataset from raw data. \nExtraction 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. \nThe prediction of the neural network can, if necessary, be assembled back to the format before extraction. \nThe 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).\n\n<img src=\"https://raw.githubusercontent.com/rundherum/pymia/master/docs/images/fig-overview.png\" alt=\"The pymia package in the deep learning environment\">\n\nGetting Started\n---------------\n\nIf you are new to pymia, here are a few guides to get you up to speed right away:\n\n - [Installation](https://pymia.readthedocs.io/en/latest/installation.html) for installation instructions - or simply run `pip install pymia`\n - [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 in the directory [./examples](https://github.com/rundherum/pymia/tree/master/examples/).\n - [Do you want to contribute?](https://pymia.readthedocs.io/en/latest/contribution.html)\n - [Change history](https://pymia.readthedocs.io/en/latest/history.html)\n - [Acknowledgments](https://pymia.readthedocs.io/en/latest/acknowledgment.html)\n\nCitation\n--------\nIf you use pymia for your research, please acknowledge it accordingly by citing our paper:\n\n[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)\n\nBibTeX entry:\n\n    @article{Jungo2021a,\n    author = {Jungo, Alain and Scheidegger, Olivier and Reyes, Mauricio and Balsiger, Fabian},\n    doi = {10.1016/j.cmpb.2020.105796},\n    issn = {01692607},\n    journal = {Computer Methods and Programs in Biomedicine},\n    pages = {105796},\n    title = {{pymia: A Python package for data handling and evaluation in deep learning-based medical image analysis}},\n    volume = {198},\n    year = {2021},\n    }\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "A Python package for data handling and evaluation in deep learning-based medical image analysis.",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://pymia.readthedocs.io/"
    },
    "split_keywords": [
        "medical image analysis",
        " deep learning",
        " data handling",
        " evaluation",
        " metrics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82b1556c9ce05b0d233b47488919287a6ad2301f9e05a6acec68e460b16cc64a",
                "md5": "5304700048863555b4834cc9d0ed017e",
                "sha256": "0b2d5d8224b12332cc0179c1335d3ef5439231e3445e07afee2f041e5ab8128a"
            },
            "downloads": -1,
            "filename": "pymia-0.3.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5304700048863555b4834cc9d0ed017e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 73457,
            "upload_time": "2024-09-26T15:26:53",
            "upload_time_iso_8601": "2024-09-26T15:26:53.717493Z",
            "url": "https://files.pythonhosted.org/packages/82/b1/556c9ce05b0d233b47488919287a6ad2301f9e05a6acec68e460b16cc64a/pymia-0.3.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c550faeff5f635542271be2fc402874811d32cbbf0eeb7d038bfb549eb26969c",
                "md5": "79d8fe7c1cb7a106bf43106a50b05702",
                "sha256": "70d59be5c12aeebbf5c783519ec3ec350cc2956b528bcbe24e622f16464b4582"
            },
            "downloads": -1,
            "filename": "pymia-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "79d8fe7c1cb7a106bf43106a50b05702",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 59599,
            "upload_time": "2024-09-26T15:26:55",
            "upload_time_iso_8601": "2024-09-26T15:26:55.640067Z",
            "url": "https://files.pythonhosted.org/packages/c5/50/faeff5f635542271be2fc402874811d32cbbf0eeb7d038bfb549eb26969c/pymia-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-26 15:26:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pymia"
}
        
Elapsed time: 0.73774s