├── .gitignore ├── README.md ├── compute_cmvn.py ├── conf └── 1.config.yaml ├── dataset.py ├── dcnet.py ├── requirements.txt ├── scripts ├── run_demo.sh ├── sdr_eval.sh ├── sdr_eval_2spk.m ├── spk2gender └── train.sh ├── separate.py ├── train_dcnet.py ├── trainer.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.wav 2 | *.mat 3 | egs.py 4 | __pycache__/ 5 | data/ 6 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/README.md -------------------------------------------------------------------------------- /compute_cmvn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/compute_cmvn.py -------------------------------------------------------------------------------- /conf/1.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/conf/1.config.yaml -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/dataset.py -------------------------------------------------------------------------------- /dcnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/dcnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/scripts/run_demo.sh -------------------------------------------------------------------------------- /scripts/sdr_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/scripts/sdr_eval.sh -------------------------------------------------------------------------------- /scripts/sdr_eval_2spk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/scripts/sdr_eval_2spk.m -------------------------------------------------------------------------------- /scripts/spk2gender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/scripts/spk2gender -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/separate.py -------------------------------------------------------------------------------- /train_dcnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/train_dcnet.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/trainer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/deep-clustering/HEAD/utils.py --------------------------------------------------------------------------------