├── LICENSE ├── README.md ├── data ├── tr_cmvn.npz ├── uniq_target_ref_dur.txt ├── wsj0_2mix │ ├── cv │ │ ├── aux.scp │ │ ├── mix.scp │ │ └── ref.scp │ ├── tr │ │ ├── aux.scp │ │ ├── mix.scp │ │ └── ref.scp │ └── tt │ │ ├── aux.scp │ │ ├── mix.scp │ │ └── ref.scp └── wsj0_2mix_extr_tr.spk ├── decode.sh ├── nnet ├── __pycache__ │ ├── conf.cpython-36.pyc │ ├── conf.cpython-38.pyc │ ├── conv_tas_net.cpython-36.pyc │ ├── conv_tas_net.cpython-38.pyc │ ├── conv_tas_net_decode.cpython-36.pyc │ ├── conv_tas_net_decode.cpython-38.pyc │ └── sincnet.cpython-36.pyc ├── compute_si_snr.py ├── conf.py ├── conv_tas_net.py ├── conv_tas_net_decode.py ├── libs │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── audio.cpython-36.pyc │ │ ├── audio.cpython-38.pyc │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── kaldi_io.cpython-36.pyc │ │ ├── kaldi_io.cpython-38.pyc │ │ ├── trainer.cpython-36.pyc │ │ ├── trainer.cpython-38.pyc │ │ ├── utils.cpython-36.pyc │ │ └── utils.cpython-38.pyc │ ├── audio.py │ ├── dataset.py │ ├── kaldi_io.py │ ├── metric.py │ ├── trainer.py │ └── utils.py ├── separate.py └── train.py ├── pretrain_model └── link.txt ├── requirements.txt └── train.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SpEx_Plus 2 | -------------------------------------------------------------------------------- /data/tr_cmvn.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/tr_cmvn.npz -------------------------------------------------------------------------------- /data/uniq_target_ref_dur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/uniq_target_ref_dur.txt -------------------------------------------------------------------------------- /data/wsj0_2mix/cv/aux.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/cv/aux.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/cv/mix.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/cv/mix.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/cv/ref.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/cv/ref.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/tr/aux.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/tr/aux.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/tr/mix.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/tr/mix.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/tr/ref.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/tr/ref.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/tt/aux.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/tt/aux.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/tt/mix.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/tt/mix.scp -------------------------------------------------------------------------------- /data/wsj0_2mix/tt/ref.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix/tt/ref.scp -------------------------------------------------------------------------------- /data/wsj0_2mix_extr_tr.spk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/data/wsj0_2mix_extr_tr.spk -------------------------------------------------------------------------------- /decode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/decode.sh -------------------------------------------------------------------------------- /nnet/__pycache__/conf.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/conf.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/__pycache__/conf.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/conf.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/__pycache__/conv_tas_net.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/conv_tas_net.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/__pycache__/conv_tas_net.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/conv_tas_net.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/__pycache__/conv_tas_net_decode.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/conv_tas_net_decode.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/__pycache__/conv_tas_net_decode.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/conv_tas_net_decode.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/__pycache__/sincnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/__pycache__/sincnet.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/compute_si_snr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/compute_si_snr.py -------------------------------------------------------------------------------- /nnet/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/conf.py -------------------------------------------------------------------------------- /nnet/conv_tas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/conv_tas_net.py -------------------------------------------------------------------------------- /nnet/conv_tas_net_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/conv_tas_net_decode.py -------------------------------------------------------------------------------- /nnet/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nnet/libs/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/audio.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/audio.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/audio.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/audio.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/kaldi_io.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/kaldi_io.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/kaldi_io.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/kaldi_io.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/trainer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/trainer.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/trainer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/trainer.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /nnet/libs/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /nnet/libs/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/audio.py -------------------------------------------------------------------------------- /nnet/libs/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/dataset.py -------------------------------------------------------------------------------- /nnet/libs/kaldi_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/kaldi_io.py -------------------------------------------------------------------------------- /nnet/libs/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/metric.py -------------------------------------------------------------------------------- /nnet/libs/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/trainer.py -------------------------------------------------------------------------------- /nnet/libs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/libs/utils.py -------------------------------------------------------------------------------- /nnet/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/separate.py -------------------------------------------------------------------------------- /nnet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/nnet/train.py -------------------------------------------------------------------------------- /pretrain_model/link.txt: -------------------------------------------------------------------------------- 1 | Link:https://pan.baidu.com/s/1Yts3r9_-yX5ydI8s1sFtlQ 2 | Password:q5e3 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemengtju/SpEx_Plus/HEAD/train.sh --------------------------------------------------------------------------------