audtorch


Nameaudtorch JSON
Version 0.6.4 PyPI version JSON
download
home_pagehttps://github.com/audeering/audtorch
SummaryDeep learning with PyTorch and audio
upload_time2020-11-02 12:51:18
maintainer
docs_urlNone
authorAndreas Triantafyllopoulos, Stephan Huber, Johannes Wagner, Hagen Wierstorf
requires_python
licenseMIT License
keywords audio torch
VCS
bugtrack_url
requirements None
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ========
audtorch
========

|tests| |coverage| |docs| |python-versions| |license|

Deep learning with PyTorch_ and audio.

Have a look at the installation_ and usage_ instructions as a starting point.

If you are interested in PyTorch_ and audio you should also check out the
efforts to integrate more audio directly into PyTorch_:

* `pytorch/audio`_
* `keunwoochoi/torchaudio-contrib`_

.. _installation: https://audeering.github.io/audtorch/install.html
.. _keunwoochoi/torchaudio-contrib: https://github.com/keunwoochoi/torchaudio-contrib
.. _PyTorch: https://pytorch.org
.. _pytorch/audio: https://github.com/pytorch/audio
.. _usage: https://audeering.github.io/audtorch/usage.html

.. |tests| image:: https://github.com/audeering/audtorch/workflows/Test/badge.svg
    :target: https://github.com/audeering/audtorch/actions?query=workflow%3ATest
    :alt: Test status
.. |coverage| image:: https://codecov.io/gh/audeering/audtorch/branch/master/graph/badge.svg?token=PUA9P2UJW1
    :target: https://codecov.io/gh/audeering/audtorch/
    :alt: code coverage
.. |docs| image:: https://img.shields.io/pypi/v/audtorch?label=docs
    :target: https://audeering.github.io/audtorch/
    :alt: audtorch's documentation
.. |python-versions| image:: https://img.shields.io/pypi/pyversions/audtorch.svg
    :target: https://pypi.org/project/audtorch/
    :alt: audtorch's supported Python versions
.. |license| image:: https://img.shields.io/badge/license-MIT-green.svg
    :target: https://github.com/audeering/audtorch/blob/master/LICENSE
    :alt: audtorch's MIT license

Changelog
=========

All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog`_,
and this project adheres to `Semantic Versioning`_.


Version 0.6.4 (2020-11-02)
--------------------------

* Fixed: link to documentation on Github pages in Python package


Version 0.6.3 (2020-10-30)
--------------------------

* Added: use copy-button Sphinx plugin
* Added: links to usage and installation to README
* Changed: use sphinx-audeering-theme
* Changed: update all documentation links to Github pages


Version 0.6.2 (2020-10-30)
--------------------------

* Fixed: install missing pandoc for publishing documentation


Version 0.6.1 (2020-10-30)
--------------------------

* Fixed: only install doc dependency for automatic release


Version 0.6.0 (2020-10-30)
--------------------------

* Added: code coverage
* Added: automatic publishing using Github Actions
* Changed: use Github Actions for testing
* Changed: host documentation as Github pages
* Fixed: use newest librosa version

Version 0.5.2 (2020-03-03)
--------------------------

* Fixed: disable automatic execution of notebook


Version 0.5.1 (2020-03-03)
--------------------------

* Fixed: execute jupyter notebook on readthedocs
* Fixed: release date of 5.0.0 in CHANGELOG


Version 0.5.0 (2020-03-03)
--------------------------

* Added: `RandomConvolutionalMix` transform
* Added: `EmoDB` data set
* Added: introduction tutorial
* Added: Python 3.8 support
* Added: ``column_end`` + ``column_start`` to ``CsvDataset`` and
  ``PandasDataset``
* Added: random convolutional mix transform
* Changed: default filename column in data sets is now ``file``
* Changed: force keyword only arguments
* Fixed: ``stft`` functional example
* Fixed: import of ``librosa``
* Removed: Python 3.5 support


Version 0.4.2 (2019-11-04)
--------------------------

* Fixed: critical bug of missing files in wheel package (#60)


Version 0.4.1 (2019-10-25)
--------------------------

* Fixed: default axis values for Masking transforms (#59)


Version 0.4.0 (2019-10-21)
--------------------------

* Added: masking transforms in time and frequency domain


Version 0.3.2 (2019-10-04)
--------------------------

* Fixed: long description in ``setup.cfg``


Version 0.3.1 (2019-10-04)
--------------------------

* Changed: define package in ``setup.cfg``


Version 0.3.0 (2019-09-13)
--------------------------

* Added: ``datasets.SpeechCommands`` (#49)
* Removed: ``LogSpectrogram`` (#52)


Version 0.2.1 (2019-08-01)
--------------------------

* Changed: Remove os.system call for moving files (#43)
* Fixed: Remove broken logos from issue templates (#31)
* Fixed: Wrong ``Spectrogram`` output shape in documentation (#40)
* Fixed: Broken data set loading for relative paths (#33)


Version 0.2.0 (2019-06-28)
--------------------------

* Added: ``Standardize``, ``Log`` (#29)
* Changed: Switch to `Keep a Changelog`_ format (#34)
* Deprecated: ``LogSpectrogram`` (#29)
* Fixed: ``normalize`` axis (#28)


Version 0.1.1 (2019-05-23)
--------------------------

* Fixed: Broken API documentation on readthedocs


Version 0.1.0 (2019-05-22)
--------------------------

* Added: Public release


.. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/
.. _Semantic Versioning: https://semver.org/spec/v2.0.0.html



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/audeering/audtorch",
    "name": "audtorch",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "audio,torch",
    "author": "Andreas Triantafyllopoulos, Stephan Huber, Johannes Wagner, Hagen Wierstorf",
    "author_email": "atriant@audeering.com",
    "download_url": "https://files.pythonhosted.org/packages/b9/8a/dea3e57bfd50dbc28586bb6c6980fe4d4dffcf41ed459023c9e1078aa506/audtorch-0.6.4.tar.gz",
    "platform": "any",
    "description": "========\naudtorch\n========\n\n|tests| |coverage| |docs| |python-versions| |license|\n\nDeep learning with PyTorch_ and audio.\n\nHave a look at the installation_ and usage_ instructions as a starting point.\n\nIf you are interested in PyTorch_ and audio you should also check out the\nefforts to integrate more audio directly into PyTorch_:\n\n* `pytorch/audio`_\n* `keunwoochoi/torchaudio-contrib`_\n\n.. _installation: https://audeering.github.io/audtorch/install.html\n.. _keunwoochoi/torchaudio-contrib: https://github.com/keunwoochoi/torchaudio-contrib\n.. _PyTorch: https://pytorch.org\n.. _pytorch/audio: https://github.com/pytorch/audio\n.. _usage: https://audeering.github.io/audtorch/usage.html\n\n.. |tests| image:: https://github.com/audeering/audtorch/workflows/Test/badge.svg\n    :target: https://github.com/audeering/audtorch/actions?query=workflow%3ATest\n    :alt: Test status\n.. |coverage| image:: https://codecov.io/gh/audeering/audtorch/branch/master/graph/badge.svg?token=PUA9P2UJW1\n    :target: https://codecov.io/gh/audeering/audtorch/\n    :alt: code coverage\n.. |docs| image:: https://img.shields.io/pypi/v/audtorch?label=docs\n \u00a0 \u00a0:target: https://audeering.github.io/audtorch/\n \u00a0 \u00a0:alt: audtorch's documentation\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/audtorch.svg\n    :target: https://pypi.org/project/audtorch/\n    :alt: audtorch's supported Python versions\n.. |license| image:: https://img.shields.io/badge/license-MIT-green.svg\n    :target: https://github.com/audeering/audtorch/blob/master/LICENSE\n    :alt: audtorch's MIT license\n\nChangelog\n=========\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on `Keep a Changelog`_,\nand this project adheres to `Semantic Versioning`_.\n\n\nVersion 0.6.4 (2020-11-02)\n--------------------------\n\n* Fixed: link to documentation on Github pages in Python package\n\n\nVersion 0.6.3 (2020-10-30)\n--------------------------\n\n* Added: use copy-button Sphinx plugin\n* Added: links to usage and installation to README\n* Changed: use sphinx-audeering-theme\n* Changed: update all documentation links to Github pages\n\n\nVersion 0.6.2 (2020-10-30)\n--------------------------\n\n* Fixed: install missing pandoc for publishing documentation\n\n\nVersion 0.6.1 (2020-10-30)\n--------------------------\n\n* Fixed: only install doc dependency for automatic release\n\n\nVersion 0.6.0 (2020-10-30)\n--------------------------\n\n* Added: code coverage\n* Added: automatic publishing using Github Actions\n* Changed: use Github Actions for testing\n* Changed: host documentation as Github pages\n* Fixed: use newest librosa version\n\nVersion 0.5.2 (2020-03-03)\n--------------------------\n\n* Fixed: disable automatic execution of notebook\n\n\nVersion 0.5.1 (2020-03-03)\n--------------------------\n\n* Fixed: execute jupyter notebook on readthedocs\n* Fixed: release date of 5.0.0 in CHANGELOG\n\n\nVersion 0.5.0 (2020-03-03)\n--------------------------\n\n* Added: `RandomConvolutionalMix` transform\n* Added: `EmoDB` data set\n* Added: introduction tutorial\n* Added: Python 3.8 support\n* Added: ``column_end`` + ``column_start`` to ``CsvDataset`` and\n  ``PandasDataset``\n* Added: random convolutional mix transform\n* Changed: default filename column in data sets is now ``file``\n* Changed: force keyword only arguments\n* Fixed: ``stft`` functional example\n* Fixed: import of ``librosa``\n* Removed: Python 3.5 support\n\n\nVersion 0.4.2 (2019-11-04)\n--------------------------\n\n* Fixed: critical bug of missing files in wheel package (#60)\n\n\nVersion 0.4.1 (2019-10-25)\n--------------------------\n\n* Fixed: default axis values for Masking transforms (#59)\n\n\nVersion 0.4.0 (2019-10-21)\n--------------------------\n\n* Added: masking transforms in time and frequency domain\n\n\nVersion 0.3.2 (2019-10-04)\n--------------------------\n\n* Fixed: long description in ``setup.cfg``\n\n\nVersion 0.3.1 (2019-10-04)\n--------------------------\n\n* Changed: define package in ``setup.cfg``\n\n\nVersion 0.3.0 (2019-09-13)\n--------------------------\n\n* Added: ``datasets.SpeechCommands`` (#49)\n* Removed: ``LogSpectrogram`` (#52)\n\n\nVersion 0.2.1 (2019-08-01)\n--------------------------\n\n* Changed: Remove os.system call for moving files (#43)\n* Fixed: Remove broken logos from issue templates (#31)\n* Fixed: Wrong ``Spectrogram`` output shape in documentation (#40)\n* Fixed: Broken data set loading for relative paths (#33)\n\n\nVersion 0.2.0 (2019-06-28)\n--------------------------\n\n* Added: ``Standardize``, ``Log`` (#29)\n* Changed: Switch to `Keep a Changelog`_ format (#34)\n* Deprecated: ``LogSpectrogram`` (#29)\n* Fixed: ``normalize`` axis (#28)\n\n\nVersion 0.1.1 (2019-05-23)\n--------------------------\n\n* Fixed: Broken API documentation on readthedocs\n\n\nVersion 0.1.0 (2019-05-22)\n--------------------------\n\n* Added: Public release\n\n\n.. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/\n.. _Semantic Versioning: https://semver.org/spec/v2.0.0.html\n\n\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Deep learning with PyTorch and audio",
    "version": "0.6.4",
    "split_keywords": [
        "audio",
        "torch"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d67f7415c452188d11e973cf6ca70afbed9f566bf36c4a779491f4a6f600bb01",
                "md5": "87a8f3d3c6f1980b0845b08dd9d4ecce",
                "sha256": "5506f8d4b8ee4354a1099cf3705cd005eb80540eed5a3665d038829c04dad9f2"
            },
            "downloads": -1,
            "filename": "audtorch-0.6.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "87a8f3d3c6f1980b0845b08dd9d4ecce",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 54732,
            "upload_time": "2020-11-02T12:51:16",
            "upload_time_iso_8601": "2020-11-02T12:51:16.703914Z",
            "url": "https://files.pythonhosted.org/packages/d6/7f/7415c452188d11e973cf6ca70afbed9f566bf36c4a779491f4a6f600bb01/audtorch-0.6.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b98adea3e57bfd50dbc28586bb6c6980fe4d4dffcf41ed459023c9e1078aa506",
                "md5": "89675ec93184cfe2f3a4dab40fd56432",
                "sha256": "e7705d07ae631cb6778cf8048cfaec0853026774049611520dd2d0cdbd62e3f6"
            },
            "downloads": -1,
            "filename": "audtorch-0.6.4.tar.gz",
            "has_sig": false,
            "md5_digest": "89675ec93184cfe2f3a4dab40fd56432",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 175689,
            "upload_time": "2020-11-02T12:51:18",
            "upload_time_iso_8601": "2020-11-02T12:51:18.181359Z",
            "url": "https://files.pythonhosted.org/packages/b9/8a/dea3e57bfd50dbc28586bb6c6980fe4d4dffcf41ed459023c9e1078aa506/audtorch-0.6.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-11-02 12:51:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "audeering",
    "github_project": "audtorch",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": null,
            "specs": []
        }
    ],
    "lcname": "audtorch"
}
        
Elapsed time: 0.04232s