├── .gitignore ├── README.md ├── apply_cgmm_beamforming.m ├── apply_mvdr.py ├── beamformer.py ├── cgmm.py ├── mask_visualization.m ├── run_cgmm_beamforming.sh ├── test.py ├── train_cgmm.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/README.md -------------------------------------------------------------------------------- /apply_cgmm_beamforming.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/apply_cgmm_beamforming.m -------------------------------------------------------------------------------- /apply_mvdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/apply_mvdr.py -------------------------------------------------------------------------------- /beamformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/beamformer.py -------------------------------------------------------------------------------- /cgmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/cgmm.py -------------------------------------------------------------------------------- /mask_visualization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/mask_visualization.m -------------------------------------------------------------------------------- /run_cgmm_beamforming.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/run_cgmm_beamforming.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/test.py -------------------------------------------------------------------------------- /train_cgmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/train_cgmm.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcwj/CGMM-MVDR/HEAD/utils.py --------------------------------------------------------------------------------