Metadata-Version: 2.1
Name: asteroid
Version: 0.1.5
Summary: PyTorch-based audio source separation toolkit
Home-page: https://github.com/mpariente/asteroid
Author: Manuel Pariente
Author-email: manuel.pariente@loria.fr
License: MIT
Description: <div align="center">
        <img src="docs/source/_static/images/asteroid_logo_dark.png" width="50%">
        
        **The PyTorch-based audio source separation toolkit for researchers.**
         
        [![PyPI Status](https://badge.fury.io/py/asteroid.svg)](https://badge.fury.io/py/asteroid)
        [![PyPI Status](https://pepy.tech/badge/asteroid)](https://pepy.tech/project/asteroid)
        [![Slack][slack-badge]][slack-invite]
        
        [![Build Status][travis-badge]][travis]
        [![codecov][codecov-badge]][codecov]
        </div>
        
        --------------------------------------------------------------------------------
        
        
        Asteroid is a Pytorch-based audio source separation toolkit 
        that enables fast experimentation on common datasets. 
        It comes with a source code thats supports a large range 
        of datasets and architectures, and a set of
         recipes to reproduce some important papers.
        
        
        ### You use Asteroid or you want to? 
        Please, if you have found a bug, [open an issue][issue], 
        if you solved it, [open a pull request][pr] !  
        Same goes for new features, tell us what you want or help us building it !  
        Don't hesitate to [join the slack][slack-invite] 
        and ask questions / suggest new features there as well !  
        Asteroid is intended to be a __community-based project__ 
        so hop on and help us !
        ## Contents
        - [Installation](#installation)
        - [Tutorials](#tutorials)
        - [Running a recipe](#running-a-recipe)
        - [Available recipes](#available-recipes)
        - [Supported datasets](#supported-datasets)
        - [Calls for contributions](#contributing)
        - [Citing us](#citing)
        
        ## Installation
        ([↑up to contents](#contents))  
        In order to install Asteroid, clone the repo and install it using 
        pip or python :
        ```bash
        git clone https://github.com/mpariente/asteroid
        cd asteroid
        # Install install-required deps
        pip install numpy Cython
        # Install with pip in editable mode
        pip install -e .
        # Or, install with python in dev mode
        # python setup.py develop
        ```
        Asteroid is also on PyPI, you can install the latest release 
        with
        ```bash
        pip install numpy Cython
        pip install asteroid
        ```
        
        ## Tutorials
        ([↑up to contents](#contents))  
        Here is a list of notebooks showing example usage of Asteroid's features.
        - [Permutation invariant training wrapper `PITLossWrapper`][pitwrapper_nb]
        - [Filterbank API][fb_nb]
        
        
        ## Running a recipe
        ([↑up to contents](#contents))  
        Running the recipes requires additional packages in most cases, 
        we recommend running :
        ```bash
        # from asteroid/
        pip install -r requirements.txt
        ```
        Then choose the recipe you want to run and run it !
        ```bash
        cd egs/wham/ConvTasNet
        . ./run.sh
        ```
        More information in [egs/README.md](./egs).
        
        ## Available recipes 
        ([↑up to contents](#contents))  
        * [x] [ConvTasnet](./egs/wham/ConvTasNet) ([Luo et al.](https://arxiv.org/abs/1809.07454))
        * [x] [Tasnet](./egs/whamr/TasNet) ([Luo et al.](https://arxiv.org/abs/1711.00541))
        * [x] [Deep clustering](./egs/wsj0-mix/DeepClustering) ([Hershey et al.](https://arxiv.org/abs/1508.04306) and [Isik et al.](https://arxiv.org/abs/1607.02173))
        * [x] [Chimera ++](./egs/wsj0-mix/DeepClustering) ([Luo et al.](https://arxiv.org/abs/1611.06265) and [Wang et al.](https://ieeexplore.ieee.org/document/8462507))
        * [x] [DualPathRNN](./egs/wham/DPRNN) ([Luo et al.](https://arxiv.org/abs/1910.06379))
        * [x] [Two step learning](./egs/wham/TwoStep)([Tzinis et al.](https://arxiv.org/abs/1910.09804))
        * [ ] Open-Unmix (coming) ([Stöter et al.](https://sigsep.github.io/open-unmix/))
        * [ ] Wavesplit (coming) ([Zeghidour et al.](https://arxiv.org/abs/2002.08933))
        
        ## Supported datasets
        ([↑up to contents](#contents))  
        * [x] [WSJ0-2mix](./egs/wsj0-mix) / WSJ03mix ([Hershey et al.](https://arxiv.org/abs/1508.04306))
        * [x] [WHAM](./egs/wham) ([Wichern et al.](https://arxiv.org/abs/1907.01160))
        * [x] [WHAMR](./egs/whamr) ([Maciejewski et al.](https://arxiv.org/abs/1910.10279))
        * [x] [Microsoft DNS Challenge](./egs/dns_challenge) ([Chandan et al.](https://arxiv.org/abs/2001.08662))
        * [x] [SMS_WSJ](./egs/sms_wsj) ([Drude et al.](https://arxiv.org/abs/1910.13934))
        * [ ] MUSDB18 (Coming) ([Raffi et al.](https://hal.inria.fr/hal-02190845)) 
        * [ ] FUSS (Coming) ([Wisdom et al.](https://zenodo.org/record/3694384#.XmUAM-lw3g4))
        
        ## Contributing
        ([↑up to contents](#contents))  
        We are always looking to expand our coverage of the source separation 
        and speech enhancement research, the following is a list of 
        things we're missing. 
        You want to contribute? This is a great place to start !
        * Wavesplit ([Zeghidour and Grangier](https://arxiv.org/abs/2002.08933))
        * FurcaNeXt ([Shi et al.](https://arxiv.org/abs/1902.04891))
        * DeepCASA ([Liu and Want](https://arxiv.org/abs/1904.11148))
        * VCTK Test sets from [Kadioglu et al.](https://arxiv.org/pdf/2002.08688.pdf)
        * Interrupted and cascaded PIT ([Yang et al.](https://arxiv.org/abs/1910.12706))
        * ~Consistency contraints ([Wisdom et al.](https://ieeexplore.ieee.org/abstract/document/8682783))~
        * ~Backpropagable STOI and PESQ.~
        * Parametrized filterbanks from [Tukuljac et al.](https://openreview.net/forum?id=HyewT1BKvr)
        * ~End-to-End MISI ([Wang et al.](https://arxiv.org/abs/1804.10204))~
        
        
        Don't forget to read our [contributing guidelines](./CONTRIBUTING.md).
        
        You can also open an issue or make a PR to add something we missed in this list.
        
        ## TensorBoard visualization
        The default logger is TensorBoard in all the recipes. From the recipe folder, 
        you can run the following to visualize the logs of all your runs. You can 
        also compare different systems on the same dataset by running a similar command
        from the dataset directiories.
        ```bash
        # Launch tensorboard (default port is 6006)
        tensorboard --logdir exp/ --port tf_port
        ```
        If your launching tensorboard remotely, you should open an ssh tunnel
        ```bash
        # Open port-forwarding connection. Add -Nf option not to open remote. 
        ssh -L local_port:localhost:tf_port user@ip
        ```
        Then open `http://localhost:local_port/`. If both ports are the same, you can 
        click on the tensorboard URL given on the remote, it's just more practical.
        
        
        ## Guiding principles
        ([↑up to contents](#contents))  
        * __Modularity.__ Building blocks are thought and designed to be seamlessly
        plugged together. Filterbanks, encoders, maskers, decoders and losses are 
        all common building blocks that can be combined in a 
        flexible way to create new systems.  
        * __Extensibility.__ Extending Asteroid with new features is simple.
        Add a new filterbank, separator architecture, dataset or even recipe very 
        easily.
        * __Reproducibility.__ Recipes provide an easy way to reproduce 
        results with data preparation, system design, training and evaluation in a 
        single script. This is an essential tool for the community !
        
        ## Citing Asteroid
        ([↑up to contents](#contents))  
        If you loved using Asteroid and you want to cite us, use this :
        ```BibTex
        @article{Pariente2020Asteroid,
            title={Asteroid: the {PyTorch}-based audio source separation toolkit for researchers},
            author={Manuel Pariente and Samuele Cornell and Joris Cosentino and Sunit Sivasankaran and 
                    Efthymios Tzinis and Jens Heitkaemper and Michel Olvera and Fabian-Robert Stöter and 
                    Mathieu Hu and Juan M. Martín-Doñas and David Ditter and Ariel Frank and Antoine Deleforge 
                    and Emmanuel Vincent},
            year={2020},
            journal={arXiv preprint arXiv:2005.04132},
            primaryClass={eess.AS}
        }
        ```
        
        [comment]: <> (Badge)
        [travis]: https://travis-ci.com/mpariente/asteroid
        [travis-badge]: https://travis-ci.com/mpariente/asteroid.svg?branch=master
        [codecov-badge]: https://codecov.io/gh/mpariente/asteroid/branch/master/graph/badge.svg
        [codecov]: https://codecov.io/gh/mpariente/asteroid
        [slack-badge]: https://img.shields.io/badge/slack-chat-green.svg?logo=slack
        [slack-invite]: https://join.slack.com/t/asteroid-dev/shared_invite/zt-cn9y85t3-QNHXKD1Et7qoyzu1Ji5bcA
        
        [comment]: <> (Notebooks)
        [fb_nb]: https://github.com/mpariente/asteroid/blob/master/examples/Filterbank.ipynb
        [pitwrapper_nb]: https://github.com/mpariente/asteroid/blob/master/examples/PITLossWrapper.ipynb
        
        [comment]: <> (Others)
        [issue]: https://github.com/mpariente/asteroid/issues/new
        [pr]: https://github.com/mpariente/asteroid/compare
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: visualize
Provides-Extra: tests
Provides-Extra: stoi
