├── .gitignore ├── Makefile ├── README.md ├── dataset_generation ├── README.md ├── gen_disco │ ├── convolve_signals.py │ └── mix_convolved_signals.py ├── gen_meetit │ ├── README.md │ └── convolve_signals.py ├── generate_disco.sh ├── generate_meetit.sh └── pre_generation │ ├── README.md │ ├── clean_audio_info.py │ ├── config.yaml │ ├── download_freesound_queries.py │ ├── download_librispeech.sh │ ├── download_noises_from_zenodo.sh │ ├── ids_per_category.csv │ └── utils.py ├── disco_theque ├── README.md ├── __init__.py ├── dataset_utils │ ├── __init__.py │ ├── post_generator.py │ ├── room_setups.py │ └── signal_setups.py ├── dnn │ ├── data │ │ ├── __init__.py │ │ ├── datasets.py │ │ └── lists_to_load.py │ ├── engine │ │ ├── __init__.py │ │ ├── callbacks.py │ │ ├── losses.py │ │ └── train.py │ ├── models │ │ ├── __init__.py │ │ ├── crnn.py │ │ └── nn_structures.py │ └── utils.py ├── math_utils.py ├── metrics.py ├── misc_utils.py ├── se_utils │ └── internal_formulas.py ├── sigproc_utils.py └── speech_enhancement │ ├── __init__.py │ ├── get_z_signals.py │ ├── tango.py │ └── utils.py ├── doc ├── Makefile └── source │ ├── conf.py │ └── index.rst ├── exp └── ex1 │ ├── loop_tango.sh │ └── oar_train.sh ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── context.py └── test_math_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/README.md -------------------------------------------------------------------------------- /dataset_generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/README.md -------------------------------------------------------------------------------- /dataset_generation/gen_disco/convolve_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/gen_disco/convolve_signals.py -------------------------------------------------------------------------------- /dataset_generation/gen_disco/mix_convolved_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/gen_disco/mix_convolved_signals.py -------------------------------------------------------------------------------- /dataset_generation/gen_meetit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/gen_meetit/README.md -------------------------------------------------------------------------------- /dataset_generation/gen_meetit/convolve_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/gen_meetit/convolve_signals.py -------------------------------------------------------------------------------- /dataset_generation/generate_disco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/generate_disco.sh -------------------------------------------------------------------------------- /dataset_generation/generate_meetit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/generate_meetit.sh -------------------------------------------------------------------------------- /dataset_generation/pre_generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/README.md -------------------------------------------------------------------------------- /dataset_generation/pre_generation/clean_audio_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/clean_audio_info.py -------------------------------------------------------------------------------- /dataset_generation/pre_generation/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/config.yaml -------------------------------------------------------------------------------- /dataset_generation/pre_generation/download_freesound_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/download_freesound_queries.py -------------------------------------------------------------------------------- /dataset_generation/pre_generation/download_librispeech.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/download_librispeech.sh -------------------------------------------------------------------------------- /dataset_generation/pre_generation/download_noises_from_zenodo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/download_noises_from_zenodo.sh -------------------------------------------------------------------------------- /dataset_generation/pre_generation/ids_per_category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/ids_per_category.csv -------------------------------------------------------------------------------- /dataset_generation/pre_generation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/dataset_generation/pre_generation/utils.py -------------------------------------------------------------------------------- /disco_theque/README.md: -------------------------------------------------------------------------------- 1 | ## disco_theque 2 | Library of useful scripts, functions and classes 3 | -------------------------------------------------------------------------------- /disco_theque/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disco_theque/dataset_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disco_theque/dataset_utils/post_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dataset_utils/post_generator.py -------------------------------------------------------------------------------- /disco_theque/dataset_utils/room_setups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dataset_utils/room_setups.py -------------------------------------------------------------------------------- /disco_theque/dataset_utils/signal_setups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dataset_utils/signal_setups.py -------------------------------------------------------------------------------- /disco_theque/dnn/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disco_theque/dnn/data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/data/datasets.py -------------------------------------------------------------------------------- /disco_theque/dnn/data/lists_to_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/data/lists_to_load.py -------------------------------------------------------------------------------- /disco_theque/dnn/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disco_theque/dnn/engine/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/engine/callbacks.py -------------------------------------------------------------------------------- /disco_theque/dnn/engine/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/engine/losses.py -------------------------------------------------------------------------------- /disco_theque/dnn/engine/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/engine/train.py -------------------------------------------------------------------------------- /disco_theque/dnn/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disco_theque/dnn/models/crnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/models/crnn.py -------------------------------------------------------------------------------- /disco_theque/dnn/models/nn_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/models/nn_structures.py -------------------------------------------------------------------------------- /disco_theque/dnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/dnn/utils.py -------------------------------------------------------------------------------- /disco_theque/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/math_utils.py -------------------------------------------------------------------------------- /disco_theque/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/metrics.py -------------------------------------------------------------------------------- /disco_theque/misc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/misc_utils.py -------------------------------------------------------------------------------- /disco_theque/se_utils/internal_formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/se_utils/internal_formulas.py -------------------------------------------------------------------------------- /disco_theque/sigproc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/sigproc_utils.py -------------------------------------------------------------------------------- /disco_theque/speech_enhancement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disco_theque/speech_enhancement/get_z_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/speech_enhancement/get_z_signals.py -------------------------------------------------------------------------------- /disco_theque/speech_enhancement/tango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/speech_enhancement/tango.py -------------------------------------------------------------------------------- /disco_theque/speech_enhancement/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/disco_theque/speech_enhancement/utils.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /exp/ex1/loop_tango.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/exp/ex1/loop_tango.sh -------------------------------------------------------------------------------- /exp/ex1/oar_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/exp/ex1/oar_train.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/setup.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/test_math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfurnon/disco/HEAD/tests/test_math_utils.py --------------------------------------------------------------------------------