├── .gitignore ├── HGCN.py ├── README.md ├── conv_stft.py ├── drawer.py ├── harmonic_integral ├── __init__.py ├── harmonic_integrate_matrix.npy ├── harmonic_loc.npy └── make_integral_matrix.py ├── speech_energy_detector_label ├── 512+128.npy ├── __init__.py ├── mean_threshold.py ├── mu.npy └── sigma.npy └── wavs ├── fileid10_BAC009S0657W0284.wav └── fileid10_cleanBAC009S0657W0284_noiseuI44_PzWnCA_snr5_level-19.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/.gitignore -------------------------------------------------------------------------------- /HGCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/HGCN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/README.md -------------------------------------------------------------------------------- /conv_stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/conv_stft.py -------------------------------------------------------------------------------- /drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/drawer.py -------------------------------------------------------------------------------- /harmonic_integral/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | # Author:WangTianRui 3 | # Date :2022-01-07 09:46 -------------------------------------------------------------------------------- /harmonic_integral/harmonic_integrate_matrix.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/harmonic_integral/harmonic_integrate_matrix.npy -------------------------------------------------------------------------------- /harmonic_integral/harmonic_loc.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/harmonic_integral/harmonic_loc.npy -------------------------------------------------------------------------------- /harmonic_integral/make_integral_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/harmonic_integral/make_integral_matrix.py -------------------------------------------------------------------------------- /speech_energy_detector_label/512+128.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/speech_energy_detector_label/512+128.npy -------------------------------------------------------------------------------- /speech_energy_detector_label/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | # Author:WangTianRui 3 | # Date :2022-01-07 10:20 -------------------------------------------------------------------------------- /speech_energy_detector_label/mean_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/speech_energy_detector_label/mean_threshold.py -------------------------------------------------------------------------------- /speech_energy_detector_label/mu.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/speech_energy_detector_label/mu.npy -------------------------------------------------------------------------------- /speech_energy_detector_label/sigma.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/speech_energy_detector_label/sigma.npy -------------------------------------------------------------------------------- /wavs/fileid10_BAC009S0657W0284.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/wavs/fileid10_BAC009S0657W0284.wav -------------------------------------------------------------------------------- /wavs/fileid10_cleanBAC009S0657W0284_noiseuI44_PzWnCA_snr5_level-19.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangtianrui/HGCN/HEAD/wavs/fileid10_cleanBAC009S0657W0284_noiseuI44_PzWnCA_snr5_level-19.wav --------------------------------------------------------------------------------