├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── analysis.py ├── bss_scale ├── __init__.py ├── algorithms.py └── surrogate.py ├── config_dataset.json ├── dereverb_separation.py ├── environment.yml ├── example.py ├── experiment1.py ├── experiment1_config.json ├── experiment2_config.json ├── get_data.py ├── helper.py ├── metrics.py ├── paper_simulation.py ├── process.py └── sim_results ├── 20200507-012736_experiment2_config_102af93240 ├── arguments.json ├── data.json └── parameters.json └── 20200511-112906_experiment1_config_102af93240 ├── arguments.json ├── data.json └── parameters.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vim/ 2 | *__pycache__/ 3 | *.wav 4 | figures/ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/README.md -------------------------------------------------------------------------------- /analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/analysis.py -------------------------------------------------------------------------------- /bss_scale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/bss_scale/__init__.py -------------------------------------------------------------------------------- /bss_scale/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/bss_scale/algorithms.py -------------------------------------------------------------------------------- /bss_scale/surrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/bss_scale/surrogate.py -------------------------------------------------------------------------------- /config_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/config_dataset.json -------------------------------------------------------------------------------- /dereverb_separation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/dereverb_separation.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/environment.yml -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/example.py -------------------------------------------------------------------------------- /experiment1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/experiment1.py -------------------------------------------------------------------------------- /experiment1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/experiment1_config.json -------------------------------------------------------------------------------- /experiment2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/experiment2_config.json -------------------------------------------------------------------------------- /get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/get_data.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/helper.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/metrics.py -------------------------------------------------------------------------------- /paper_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/paper_simulation.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/process.py -------------------------------------------------------------------------------- /sim_results/20200507-012736_experiment2_config_102af93240/arguments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/sim_results/20200507-012736_experiment2_config_102af93240/arguments.json -------------------------------------------------------------------------------- /sim_results/20200507-012736_experiment2_config_102af93240/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/sim_results/20200507-012736_experiment2_config_102af93240/data.json -------------------------------------------------------------------------------- /sim_results/20200507-012736_experiment2_config_102af93240/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/sim_results/20200507-012736_experiment2_config_102af93240/parameters.json -------------------------------------------------------------------------------- /sim_results/20200511-112906_experiment1_config_102af93240/arguments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/sim_results/20200511-112906_experiment1_config_102af93240/arguments.json -------------------------------------------------------------------------------- /sim_results/20200511-112906_experiment1_config_102af93240/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/sim_results/20200511-112906_experiment1_config_102af93240/data.json -------------------------------------------------------------------------------- /sim_results/20200511-112906_experiment1_config_102af93240/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakufaku/2020_interspeech_gmdp/HEAD/sim_results/20200511-112906_experiment1_config_102af93240/parameters.json --------------------------------------------------------------------------------