├── .gitignore ├── LICENSE ├── README.md ├── egs ├── daps │ ├── config.json │ └── run.py ├── edinburgh_tts │ ├── config.json │ └── run.py └── wsj0-2mix │ ├── chimera │ ├── evaluate.py │ ├── msa │ │ ├── RESULT │ │ ├── config.json │ │ └── run.py │ └── psa │ │ ├── RESULT │ │ ├── config.json │ │ └── run.py │ ├── deep_clustering │ ├── RESULT │ ├── config.json │ ├── evaluate.py │ └── run.py │ ├── phase-net │ ├── config.json │ └── run.py │ └── tasnet │ ├── conv-tasnet │ ├── config.json │ └── run.py │ ├── evaluate.py │ └── lstm-tasnet │ ├── config.json │ └── run.py └── onssen ├── __init__.py ├── data ├── __init__.py ├── daps_enhance.py ├── edinburgh_tts.py ├── feature_utils.py └── wsj0_2mix.py ├── evaluate ├── __init__.py └── sdr.py ├── loss ├── __init__.py ├── loss_chimera.py ├── loss_dc.py ├── loss_e2e.py ├── loss_mask.py ├── loss_phase.py └── loss_util.py ├── nn ├── __init__.py ├── chimera.py ├── deep_clustering.py ├── enhancement.py ├── phase_network.py ├── tasnet.py └── uPIT-LSTM.py └── utils ├── __init__.py ├── basic.py ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/README.md -------------------------------------------------------------------------------- /egs/daps/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/daps/config.json -------------------------------------------------------------------------------- /egs/daps/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/daps/run.py -------------------------------------------------------------------------------- /egs/edinburgh_tts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/edinburgh_tts/config.json -------------------------------------------------------------------------------- /egs/edinburgh_tts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/edinburgh_tts/run.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/chimera/evaluate.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/msa/RESULT: -------------------------------------------------------------------------------- 1 | SI-SDR: 10.33 2 | -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/msa/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/chimera/msa/config.json -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/msa/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/chimera/msa/run.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/psa/RESULT: -------------------------------------------------------------------------------- 1 | SI-SDR: 10.93 2 | -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/psa/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/chimera/psa/config.json -------------------------------------------------------------------------------- /egs/wsj0-2mix/chimera/psa/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/chimera/psa/run.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/deep_clustering/RESULT: -------------------------------------------------------------------------------- 1 | SI-SDR: 8.858 2 | -------------------------------------------------------------------------------- /egs/wsj0-2mix/deep_clustering/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/deep_clustering/config.json -------------------------------------------------------------------------------- /egs/wsj0-2mix/deep_clustering/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/deep_clustering/evaluate.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/deep_clustering/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/deep_clustering/run.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/phase-net/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/phase-net/config.json -------------------------------------------------------------------------------- /egs/wsj0-2mix/phase-net/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs/wsj0-2mix/tasnet/conv-tasnet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/tasnet/conv-tasnet/config.json -------------------------------------------------------------------------------- /egs/wsj0-2mix/tasnet/conv-tasnet/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/tasnet/conv-tasnet/run.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/tasnet/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/egs/wsj0-2mix/tasnet/evaluate.py -------------------------------------------------------------------------------- /egs/wsj0-2mix/tasnet/lstm-tasnet/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs/wsj0-2mix/tasnet/lstm-tasnet/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onssen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/__init__.py -------------------------------------------------------------------------------- /onssen/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/data/__init__.py -------------------------------------------------------------------------------- /onssen/data/daps_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/data/daps_enhance.py -------------------------------------------------------------------------------- /onssen/data/edinburgh_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/data/edinburgh_tts.py -------------------------------------------------------------------------------- /onssen/data/feature_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/data/feature_utils.py -------------------------------------------------------------------------------- /onssen/data/wsj0_2mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/data/wsj0_2mix.py -------------------------------------------------------------------------------- /onssen/evaluate/__init__.py: -------------------------------------------------------------------------------- 1 | from .sdr import batch_SDR_torch 2 | 3 | -------------------------------------------------------------------------------- /onssen/evaluate/sdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/evaluate/sdr.py -------------------------------------------------------------------------------- /onssen/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/__init__.py -------------------------------------------------------------------------------- /onssen/loss/loss_chimera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/loss_chimera.py -------------------------------------------------------------------------------- /onssen/loss/loss_dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/loss_dc.py -------------------------------------------------------------------------------- /onssen/loss/loss_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/loss_e2e.py -------------------------------------------------------------------------------- /onssen/loss/loss_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/loss_mask.py -------------------------------------------------------------------------------- /onssen/loss/loss_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/loss_phase.py -------------------------------------------------------------------------------- /onssen/loss/loss_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/loss/loss_util.py -------------------------------------------------------------------------------- /onssen/nn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/__init__.py -------------------------------------------------------------------------------- /onssen/nn/chimera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/chimera.py -------------------------------------------------------------------------------- /onssen/nn/deep_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/deep_clustering.py -------------------------------------------------------------------------------- /onssen/nn/enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/enhancement.py -------------------------------------------------------------------------------- /onssen/nn/phase_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/phase_network.py -------------------------------------------------------------------------------- /onssen/nn/tasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/tasnet.py -------------------------------------------------------------------------------- /onssen/nn/uPIT-LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/nn/uPIT-LSTM.py -------------------------------------------------------------------------------- /onssen/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/utils/__init__.py -------------------------------------------------------------------------------- /onssen/utils/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/utils/basic.py -------------------------------------------------------------------------------- /onssen/utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/utils/test.py -------------------------------------------------------------------------------- /onssen/utils/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speechLabBcCuny/onssen/HEAD/onssen/utils/train.py --------------------------------------------------------------------------------